fix entries not toggling hidden class
does not play well with promises it seems
This commit is contained in:
parent
8267ab8e82
commit
6e4e41ab88
3 changed files with 20 additions and 12 deletions
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 }'
|
||||||
)
|
)
|
||||||
|
|
|
@ -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[]) => {
|
||||||
if (tagsToggled.length < 1) {
|
await Promise.all((entriesRefs as any).value.map(async (val: any) => {
|
||||||
Object.keys(entries.value).forEach(async entryId => {
|
const el = val.$el as HTMLElement
|
||||||
(await entries.value[entryId]).isHidden = false
|
const entry = await entries.value[el.id]
|
||||||
})
|
|
||||||
} else {
|
if (tagsToggled.length < 1) {
|
||||||
Object.keys(entries.value).forEach(async entryId => {
|
entry.isHidden = false
|
||||||
(await entries.value[entryId]).isHidden = !(await entries.value[entryId]).tags?.some(own => tagsToggled.includes(own))
|
} else {
|
||||||
})
|
entry.isHidden = !entry.tags?.some(own => tagsToggled.includes(own))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (entry?.isHidden) {
|
||||||
|
el.classList.add('hidden')
|
||||||
|
} else {
|
||||||
|
el.classList.remove('hidden')
|
||||||
|
}
|
||||||
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue