use key-value pairs for titles/ids

This commit is contained in:
lightling 2024-03-18 00:52:49 -04:00
parent 0badceef74
commit 628b97266f
4 changed files with 23 additions and 18 deletions

View file

@ -5,23 +5,24 @@ import type { GalleryEntry } from 'src/types/galleries/galleryList'
defineProps<{ defineProps<{
entry: GalleryEntry, entry: GalleryEntry,
id: string,
}>() }>()
defineEmits<{ defineEmits<{
(e: 'click', value: { event: Event, entry: GalleryEntry }): void (e: 'click', value: { event: Event, id: string }): void
}>() }>()
</script> </script>
<template lang="pug"> <template lang="pug">
.gallery-embed( .gallery-embed(
@click='$emit("click", { event: $event, entry })' @click='$emit("click", { event: $event, id })'
) )
.image-wrapper .image-wrapper
img( img(
:src='entry.thumbnailUrl || entry.url' :src='entry.thumbnailUrl || entry.url'
:alt='entry.description || entry.title' :alt='entry.description || id'
) )
p {{ entry.title }} p {{ id }}
</template> </template>
<style scoped lang="sass"> <style scoped lang="sass">

View file

@ -31,7 +31,7 @@ export const createRoutes = (): RouteRecordRaw[] => {
props: route => ({ id: route.query.id }), props: route => ({ id: route.query.id }),
}) })
} else if (routes[route].template === 'gallery-list') { } else if (routes[route].template === 'gallery-list') {
toPush.props = route => ({ variants: (route.query.v as string || '').split(',') }) toPush.props = route => ({ variants: (route.query.v as string || '').split(';') })
} }
routeRecord.push(toPush) routeRecord.push(toPush)

View file

@ -5,9 +5,11 @@ export type GalleryEntry = {
thumbnailUrl: string thumbnailUrl: string
title: string title: string
url?: string url?: string
variants?: GalleryEntry[] variants?: GalleryEntries
} }
export type GalleryEntries = { [idOrTitle: string]: GalleryEntry }
export type GalleryList = { export type GalleryList = {
entries: GalleryEntry[] entries: GalleryEntries
} }

View file

@ -2,7 +2,7 @@
import { onMounted, ref } from 'vue' import { onMounted, ref } from 'vue'
import { type RouteRecordRaw, useRouter } from 'vue-router' import { type RouteRecordRaw, useRouter } from 'vue-router'
import type { GalleryEntry, GalleryList } from 'src/types/galleries/galleryList' import type { GalleryEntries, GalleryEntry, GalleryList } from 'src/types/galleries/galleryList'
import { type GalleryListDefinition } from 'content/routes.js' import { type GalleryListDefinition } from 'content/routes.js'
import { fetchAndParseYaml } from 'src/utilities/fetch' import { fetchAndParseYaml } from 'src/utilities/fetch'
import { getCurrentRoute } from 'src/utilities/vuetils' import { getCurrentRoute } from 'src/utilities/vuetils'
@ -24,42 +24,43 @@ const currentRoute = getCurrentRoute()
const routeStore = useRouteStore() const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path] as GalleryListDefinition & RouteRecordRaw const routeConfig = routeStore._routes[currentRoute.path] as GalleryListDefinition & RouteRecordRaw
const router = useRouter() const router = useRouter()
const entries = ref([] as GalleryEntry[]) const entries = ref({} as GalleryEntries)
const variants = ref(validateVariants(props.variants)) const variants = ref(validateVariants(props.variants))
const onDisplayEntries = () => { const onDisplayEntries = () => {
let currentEntries = config.value.entries let currentEntries = config.value.entries
if (!!variants.value) { if (!!variants.value) {
variants.value.forEach((variant) => { variants.value.forEach((variant) => {
currentEntries = currentEntries.find(other => other.id === variant)!.variants! currentEntries = currentEntries[variant]!.variants!
}) })
} }
entries.value = currentEntries entries.value = currentEntries
} }
const onTileClicked = (clickEvent: { event: Event, entry: GalleryEntry }) => { const onTileClicked = (clickEvent: { event: Event, id: string }) => {
const { event, entry } = clickEvent const { event, id } = clickEvent
const entry = entries.value[id]
event.preventDefault() event.preventDefault()
if (!!entry.variants) { if (!!entry.variants) {
const newPath = !!variants.value const newPath = !!variants.value
? `${(variants.value || []).join(',')},${entry.id}` ? `${(variants.value || []).join(';')};${id}`
: entry.id : id
router.push({ name: routeConfig.name, query: { v: newPath }}) router.push({ name: routeConfig.name, query: { v: newPath }})
variants.value = newPath.split(',') variants.value = newPath.split(';')
onDisplayEntries() onDisplayEntries()
} }
} }
const onNavigateBack = (e: Event) => { const onNavigateBack = (e: Event) => {
e.preventDefault() e.preventDefault()
let newPath: string | null = variants.value!.slice(0, variants.value!.length - 1).join(',') let newPath: string | null = variants.value!.slice(0, variants.value!.length - 1).join(';')
if (newPath === '') { if (newPath === '') {
router.push({ name: routeConfig.name}) router.push({ name: routeConfig.name})
variants.value = null variants.value = null
} else { } else {
router.push({ name: routeConfig.name, query: { v: newPath }}) router.push({ name: routeConfig.name, query: { v: newPath }})
variants.value = validateVariants(newPath?.split(',')) variants.value = validateVariants(newPath?.split(';'))
} }
onDisplayEntries() onDisplayEntries()
} }
@ -82,8 +83,9 @@ onMounted(async () => {
@click='onNavigateBack($event)' @click='onNavigateBack($event)'
) Back ) Back
GalleryTile( GalleryTile(
v-for='(entry) in entries' v-for='(entry, id) in entries'
:entry='entry' :entry='entry'
:id='id'
@click='onTileClicked($event)' @click='onTileClicked($event)'
) )
</template> </template>