aboutsummaryrefslogtreecommitdiffstats
path: root/pages/editor/item
diff options
context:
space:
mode:
Diffstat (limited to 'pages/editor/item')
-rw-r--r--pages/editor/item/[id].vue51
1 files changed, 51 insertions, 0 deletions
diff --git a/pages/editor/item/[id].vue b/pages/editor/item/[id].vue
new file mode 100644
index 0000000..c2456be
--- /dev/null
+++ b/pages/editor/item/[id].vue
@@ -0,0 +1,51 @@
+<script setup lang="ts">
+import { useSessionStore } from '@/stores/session';
+
+definePageMeta({
+ layout: 'editor'
+})
+
+const sessionStore = useSessionStore();
+const route = useRoute();
+
+const itemId = route.params.id as string;
+
+const item = sessionStore.getItemById(itemId);
+</script>
+
+<template>
+ <PageHeader>
+ <span id="path">
+ <font-awesome-icon class="icon" :icon="['fas', 'cube']" />
+ <span class="title">{{ itemId }} </span>
+ </span>
+ <span id="controls" class="control-group">
+ <Button type="solid" :disabled="true" :icon="['fas', 'fa-save']" :label="'Save'"></Button>
+ </span>
+ </PageHeader>
+
+ <div id="options-container">
+ </div>
+</template>
+
+<style scoped>
+#pane-container {
+ width: 100%;
+ flex-grow: 1;
+ height: calc(100vh - 73px);
+ max-height: calc(100vh - 73px);
+}
+
+#options-container {
+ width: 100%;
+ display: flex;
+ gap: 1rem;
+ padding: 1rem;
+ overflow: auto;
+ max-height: calc(100% - 55px);
+}
+
+header {
+ border-bottom: 1px solid var(--color-border);
+}
+</style> \ No newline at end of file