diff --git a/projects/frontend/src/components/shared/filter-panel.vue b/projects/frontend/src/components/shared/filter-panel.vue
index aedd9e4..4ca326b 100644
--- a/projects/frontend/src/components/shared/filter-panel.vue
+++ b/projects/frontend/src/components/shared/filter-panel.vue
@@ -1,13 +1,32 @@
-.filters
- h2 Filters
+.filter-panel
+ h2 Filter By Tags
.category(
v-for='(tags, category) in tagsByCategory'
:id='category'
diff --git a/projects/frontend/src/views/gallery/gallery-list.vue b/projects/frontend/src/views/gallery/gallery-list.vue
index 729e4dd..8c68969 100644
--- a/projects/frontend/src/views/gallery/gallery-list.vue
+++ b/projects/frontend/src/views/gallery/gallery-list.vue
@@ -55,28 +55,6 @@ const hasWarnings = ref(false)
const hideWarnings = defineModel('showWarnings', { type: Boolean })
const tagsByCategory = ref({} as { [category: string]: Record })
-/**
- * Handles updating the displayed tags in the list
- */
-const onLoadTags = () => {
- if (!!config.tags) {
- tagsByCategory.value = { 'NoCategory': {}}
- Object.keys(config.tags).forEach(id => {
- const tag = config.tags![id]
- if (!!tag.category) {
- if (!tagsByCategory.value[tag.category]) {
- tagsByCategory.value[tag.category] = {}
- }
- tagsByCategory.value[tag.category][id] = tag.displayName || id
- } else {
- tagsByCategory.value['NoCategory'][id] = tag.displayName || id
- }
- })
- } else {
- tagsByCategory.value = null as any
- }
-}
-
/**
* Handles updating the displayed entries in the list
*/
@@ -181,7 +159,6 @@ onMounted(async () => {
config = await fetchAndParseYaml(routeConfig.config)
document.title = routeConfig.title
hideWarnings.value = storage.read(`${storageId}::hideWarnings`) || false
- onLoadTags()
onDisplayEntries()
ready.value = true
})
@@ -212,9 +189,9 @@ onMounted(async () => {
)
Transition
FilterPanel(
- v-if='galleryReady && !!tagsByCategory'
+ v-if='galleryReady && !!config.tags'
:ref='filterPanelRef'
- :tagsByCategory='tagsByCategory'
+ :tags='config.tags'
@toggledTagsChanged='onToggledTagsChanged($event)'
)
Transition