create filter panel shared component
This commit is contained in:
parent
38170b39bc
commit
64fb80235e
2 changed files with 77 additions and 36 deletions
66
projects/frontend/src/components/shared/filter-panel.vue
Normal file
66
projects/frontend/src/components/shared/filter-panel.vue
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
tagsByCategory: { [category: string]: Record<string, string> }
|
||||||
|
}>()
|
||||||
|
|
||||||
|
const emits = defineEmits<{
|
||||||
|
(e: 'toggledTagsChanged', value: string[]): void
|
||||||
|
}>()
|
||||||
|
|
||||||
|
let tagsToggled: string[] = []
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handler for a tag being selected;
|
||||||
|
* updates the visibility state of the current entries
|
||||||
|
* @param event the event context which invoked this handler
|
||||||
|
* @param tagId: the id of the tag
|
||||||
|
*/
|
||||||
|
const onToggleTag = (event: Event, tagId: string) => {
|
||||||
|
if ((event.target as HTMLInputElement).checked) {
|
||||||
|
tagsToggled.push(tagId)
|
||||||
|
} else {
|
||||||
|
const index = tagsToggled.indexOf(tagId)
|
||||||
|
if (index > -1) {
|
||||||
|
tagsToggled.splice(index, 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
emits('toggledTagsChanged', tagsToggled)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resets the `tagsToggled` array
|
||||||
|
*/
|
||||||
|
const resetTags = () => {
|
||||||
|
tagsToggled = []
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template lang="pug">
|
||||||
|
.filters
|
||||||
|
h2 Filters
|
||||||
|
.category(
|
||||||
|
v-for='(tags, category) in tagsByCategory'
|
||||||
|
:id='category'
|
||||||
|
)
|
||||||
|
h3(
|
||||||
|
v-if='category !== "NoCategory"'
|
||||||
|
) {{ category }}
|
||||||
|
.input.labeled-checkbox(
|
||||||
|
v-for='(tagDisplayName, tagId) in tags'
|
||||||
|
:id='tagId'
|
||||||
|
)
|
||||||
|
label(
|
||||||
|
:for='`${tagId}-toggle`'
|
||||||
|
) {{ tagDisplayName }}
|
||||||
|
input(
|
||||||
|
type='checkbox'
|
||||||
|
:name='`${tagId}-toggle`'
|
||||||
|
:id='`${tagId}-toggle`'
|
||||||
|
@input='onToggleTag($event, tagId)'
|
||||||
|
)
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="sass">
|
||||||
|
|
||||||
|
</style>
|
|
@ -12,6 +12,7 @@ import { fetchAndParseYaml, storage } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
|
import FilterPanel from 'src/components/shared/filter-panel.vue'
|
||||||
import GalleryTile from './gallery-tile.vue'
|
import GalleryTile from './gallery-tile.vue'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,10 +45,10 @@ const globalConfig = routeStore._globals
|
||||||
const storageId = `${globalConfig.id}`
|
const storageId = `${globalConfig.id}`
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
let config: GalleryList = null!
|
let config: GalleryList = null!
|
||||||
let tagsToggled: string[] = []
|
|
||||||
|
|
||||||
const ready = ref(false)
|
const ready = ref(false)
|
||||||
const galleryReady = ref(false)
|
const galleryReady = ref(false)
|
||||||
|
const filterPanelRef = ref(null as typeof FilterPanel | null)
|
||||||
const entries = ref({} as GalleryDisplayedEntries)
|
const entries = ref({} as GalleryDisplayedEntries)
|
||||||
const variants = ref(validateVariantPath(props.variants))
|
const variants = ref(validateVariantPath(props.variants))
|
||||||
const hasWarnings = ref(false)
|
const hasWarnings = ref(false)
|
||||||
|
@ -148,19 +149,9 @@ const onHideWarningsToggled = (event: Event) => {
|
||||||
/**
|
/**
|
||||||
* Handler for a tag being selected;
|
* Handler for a tag being selected;
|
||||||
* updates the visibility state of the current entries
|
* updates the visibility state of the current entries
|
||||||
* @param event the event context which invoked this handler
|
* @param tagsToggled: the tags currently toggled in the filter panel
|
||||||
* @param tagId: the id of the tag
|
|
||||||
*/
|
*/
|
||||||
const onToggleTag = (event: Event, tagId: string) => {
|
const onToggledTagsChanged = (tagsToggled: string[]) => {
|
||||||
if ((event.target as HTMLInputElement).checked) {
|
|
||||||
tagsToggled.push(tagId)
|
|
||||||
} else {
|
|
||||||
const index = tagsToggled.indexOf(tagId)
|
|
||||||
if (index > -1) {
|
|
||||||
tagsToggled.splice(index, 1)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tagsToggled.length < 1) {
|
if (tagsToggled.length < 1) {
|
||||||
Object.keys(entries.value).forEach(entryId => {
|
Object.keys(entries.value).forEach(entryId => {
|
||||||
entries.value[entryId].hidden = false
|
entries.value[entryId].hidden = false
|
||||||
|
@ -177,10 +168,12 @@ const onToggleTag = (event: Event, tagId: string) => {
|
||||||
* and the `tagsToggled` array
|
* and the `tagsToggled` array
|
||||||
*/
|
*/
|
||||||
const resetTags = () => {
|
const resetTags = () => {
|
||||||
|
if (!!filterPanelRef.value) {
|
||||||
|
filterPanelRef.value.resetTags()
|
||||||
|
}
|
||||||
Object.keys(entries.value).forEach(entryId => {
|
Object.keys(entries.value).forEach(entryId => {
|
||||||
entries.value[entryId].hidden = false
|
entries.value[entryId].hidden = false
|
||||||
})
|
})
|
||||||
tagsToggled = []
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
|
@ -218,30 +211,12 @@ onMounted(async () => {
|
||||||
@input='onHideWarningsToggled($event)'
|
@input='onHideWarningsToggled($event)'
|
||||||
)
|
)
|
||||||
Transition
|
Transition
|
||||||
.filters(
|
FilterPanel(
|
||||||
v-if='galleryReady && !!tagsByCategory'
|
v-if='galleryReady && !!tagsByCategory'
|
||||||
|
:ref='filterPanelRef'
|
||||||
|
:tagsByCategory='tagsByCategory'
|
||||||
|
@toggledTagsChanged='onToggledTagsChanged($event)'
|
||||||
)
|
)
|
||||||
h2 Filters
|
|
||||||
.category(
|
|
||||||
v-for='(tags, category) in tagsByCategory'
|
|
||||||
:id='category'
|
|
||||||
)
|
|
||||||
h3(
|
|
||||||
v-if='category !== "NoCategory"'
|
|
||||||
) {{ category }}
|
|
||||||
.input.labeled-checkbox(
|
|
||||||
v-for='(tagDisplayName, tagId) in tags'
|
|
||||||
:id='tagId'
|
|
||||||
)
|
|
||||||
label(
|
|
||||||
:for='`${tagId}-toggle`'
|
|
||||||
) {{ tagDisplayName }}
|
|
||||||
input(
|
|
||||||
type='checkbox'
|
|
||||||
:name='`${tagId}-toggle`'
|
|
||||||
:id='`${tagId}-toggle`'
|
|
||||||
@input='onToggleTag($event, tagId)'
|
|
||||||
)
|
|
||||||
Transition
|
Transition
|
||||||
.gallery(
|
.gallery(
|
||||||
v-if='galleryReady'
|
v-if='galleryReady'
|
||||||
|
|
Loading…
Add table
Reference in a new issue