advent22/ui/src/components/DoorMapEditor.vue

40 lines
1.1 KiB
Vue
Raw Normal View History

2023-01-17 18:25:56 +00:00
<template>
2023-01-19 00:22:01 +00:00
<div class="box">
<p class="title is-4">Türchen bearbeiten</p>
2023-02-02 12:50:12 +00:00
<BulmaBreadcrumbs :steps="steps" v-model="current_step" />
2023-01-19 00:22:01 +00:00
2023-02-02 14:12:44 +00:00
<DoorPlacer v-if="current_step === 0" v-model:doors="doors" />
<!-- <DoorChooser v-if="current_step === 1" v-model:rectangles="rectangles" /> -->
2023-01-20 00:42:47 +00:00
<p v-if="current_step === 2">Bar</p>
2023-01-17 18:25:56 +00:00
</div>
</template>
<script lang="ts">
import { Vue, Options } from "vue-class-component";
2023-02-01 16:53:24 +00:00
import { Door } from "./door_map/calendar";
2023-01-23 23:37:23 +00:00
import { Rectangle } from "./rects/rectangles";
2023-01-17 18:25:56 +00:00
2023-02-02 12:50:12 +00:00
import BulmaBreadcrumbs, { Step } from "./BulmaBreadcrumbs.vue";
2023-01-24 00:14:50 +00:00
import DoorPlacer from "./door_map/DoorPlacer.vue";
import DoorChooser from "./door_map/DoorChooser.vue";
2023-01-17 18:25:56 +00:00
@Options({
components: {
2023-02-02 12:50:12 +00:00
BulmaBreadcrumbs,
2023-01-19 17:59:18 +00:00
DoorPlacer,
2023-01-24 00:14:50 +00:00
DoorChooser,
2023-01-17 18:25:56 +00:00
},
})
2023-01-24 23:19:25 +00:00
export default class extends Vue {
2023-01-20 00:42:47 +00:00
private readonly steps: Step[] = [
{ label: "Platzieren", icon: "fa-solid fa-crosshairs" },
{ label: "Ordnen", icon: "fa-solid fa-list-ol" },
{ label: "Überprüfen", icon: "fa-solid fa-check" },
];
2023-01-19 17:54:46 +00:00
private current_step = 0;
2023-02-01 16:53:24 +00:00
private doors: Door[] = [];
2023-01-23 23:37:23 +00:00
private rectangles: Rectangle[] = [];
2023-01-17 18:25:56 +00:00
}
</script>