aboutsummaryrefslogtreecommitdiffstats
path: root/components/Editor/EditorSidebar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/Editor/EditorSidebar.vue')
-rw-r--r--components/Editor/EditorSidebar.vue28
1 files changed, 0 insertions, 28 deletions
diff --git a/components/Editor/EditorSidebar.vue b/components/Editor/EditorSidebar.vue
deleted file mode 100644
index c9539fa..0000000
--- a/components/Editor/EditorSidebar.vue
+++ /dev/null
@@ -1,28 +0,0 @@
-<script setup lang="ts">
-import { useSessionStore } from '@/stores/session';
-import { storeToRefs } from 'pinia';
-import EditorSidebarCategory from '@/components/Editor/EditorSidebarCategory.vue';
-import EditorSidebarQuest from '@/components/Editor/EditorSidebarQuest.vue';
-
-const sessionStore = useSessionStore();
-
-const { session } = storeToRefs(sessionStore);
-</script>
-
-<template>
- <div id="sidebar-container">
- <EditorSidebarCategory v-for="category in session.categories" :key="category.id" :category="category" />
- <EditorSidebarQuest v-for="quest in session.quests.filter((q) => (!session.categories.some((c) => c.id === q.options.category)))" :key="quest.id" :quest="quest" />
- </div>
-</template>
-
-<style scoped>
-#sidebar-container {
- width: 20rem;
- border-right: 1px solid var(--color-border);
- height: calc(100vh - 73px);
- max-height: calc(100vh - 73px);
- background-color: var(--color-background);
- user-select: none;
-}
-</style> \ No newline at end of file