From 25cfec981e23f8e2c172dc4e6c24a100abd45f3e Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 21 Mar 2024 21:42:34 -0400 Subject: [PATCH] reset tags in gallery-list upon navigation --- src/views/gallery/gallery-list.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/views/gallery/gallery-list.vue b/src/views/gallery/gallery-list.vue index e5e654b..617c82c 100644 --- a/src/views/gallery/gallery-list.vue +++ b/src/views/gallery/gallery-list.vue @@ -30,7 +30,7 @@ const globalConfig = routeStore._globals const storageId = `${globalConfig.id}` const router = useRouter() let config: GalleryList = null! -const tagsToggled: string[] = [] +let tagsToggled: string[] = [] const ready = ref(false) const galleryReady = ref(false) @@ -62,6 +62,7 @@ const onLoadTags = () => { * Handles updating the displayed entries in the list */ const onDisplayEntries = () => { + resetTags() galleryReady.value = false let currentEntries = config.entries if (!!variants.value) { @@ -153,6 +154,17 @@ const onToggleTag = (event: Event, tagId: string) => { } } +/** + * Resets the `hidden` state of entries + * and the `tagsToggled` array + */ +const resetTags = () => { + Object.keys(entries.value).forEach(entryId => { + entries.value[entryId].hidden = false + }) + tagsToggled = [] +} + onMounted(async () => { ready.value = false config = await fetchAndParseYaml(routeConfig.config)