fix entries not toggling hidden class

does not play well with promises it seems
This commit is contained in:
lightling 2024-10-17 18:09:09 -04:00
parent 8267ab8e82
commit 6e4e41ab88
3 changed files with 20 additions and 12 deletions

View file

@ -45,7 +45,6 @@ const onToggleTag = (event: Event, tagId: string) => {
tagsToggled.splice(index, 1) tagsToggled.splice(index, 1)
} }
} }
console.log(tagsToggled)
emits('toggledTagsChanged', tagsToggled) emits('toggledTagsChanged', tagsToggled)
} }

View file

@ -38,7 +38,9 @@ onMounted(async () => {
<template lang="pug"> <template lang="pug">
include /src/templates/link.pug include /src/templates/link.pug
.gallery-embed .gallery-embed(
:id='id'
)
.thumbnail-wrapper( .thumbnail-wrapper(
:class='{ warning: !!warning && !hideWarnings }' :class='{ warning: !!warning && !hideWarnings }'
) )

View file

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed, onMounted, useTemplateRef, ref, toRaw } from 'vue' import { computed, onMounted, useTemplateRef, ref } from 'vue'
import type { import type {
ConfigfulRouteDefinition, ConfigfulRouteDefinition,
ListWithWarnings, ListWithWarnings,
@ -61,15 +61,22 @@ const className = computed(() => {
* @param tagsToggled the tags currently toggled in the filter panel * @param tagsToggled the tags currently toggled in the filter panel
*/ */
const onToggledTagsChanged = async (tagsToggled: string[]) => { const onToggledTagsChanged = async (tagsToggled: string[]) => {
await Promise.all((entriesRefs as any).value.map(async (val: any) => {
const el = val.$el as HTMLElement
const entry = await entries.value[el.id]
if (tagsToggled.length < 1) { if (tagsToggled.length < 1) {
Object.keys(entries.value).forEach(async entryId => { entry.isHidden = false
(await entries.value[entryId]).isHidden = false
})
} else { } else {
Object.keys(entries.value).forEach(async entryId => { entry.isHidden = !entry.tags?.some(own => tagsToggled.includes(own))
(await entries.value[entryId]).isHidden = !(await entries.value[entryId]).tags?.some(own => tagsToggled.includes(own))
})
} }
if (entry?.isHidden) {
el.classList.add('hidden')
} else {
el.classList.remove('hidden')
}
}))
} }
/** /**