From 643b7d1bee22c626025c41504ee1931a8a34809b Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 20 Mar 2024 23:09:54 -0400 Subject: [PATCH] add "fields" to gallery entry, split inherit props --- src/types/galleries/galleryList.ts | 13 ++++++++----- src/utilities/galleries.ts | 7 +++++-- src/views/gallery-view.vue | 7 +++++++ 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/src/types/galleries/galleryList.ts b/src/types/galleries/galleryList.ts index 3916468..6bc8d6f 100644 --- a/src/types/galleries/galleryList.ts +++ b/src/types/galleries/galleryList.ts @@ -1,12 +1,15 @@ -export type GalleryEntry = { - id: string +export type GalleryEntryInheritedProperties = { description?: string - thumbnailPosition?: `${'left' | 'center' | 'right'} ${'top' | 'center' | 'bottom'}` - thumbnailUrl: string + fields?: Record title: string | null | undefined + warning?: string +} + +export type GalleryEntry = GalleryEntryInheritedProperties & { + id: string + thumbnailUrl: string url?: string variants?: GalleryEntries - warning?: string } export type GalleryEntries = { [idOrTitle: string]: GalleryEntry } diff --git a/src/utilities/galleries.ts b/src/utilities/galleries.ts index 232c739..5d48967 100644 --- a/src/utilities/galleries.ts +++ b/src/utilities/galleries.ts @@ -1,4 +1,4 @@ -import type { GalleryEntry } from 'src/types/galleries/galleryList' +import type { GalleryEntry, GalleryEntryInheritedProperties } from 'src/types/galleries/galleryList' import { deepCopy } from './dom' export const getTitleFromEntryOrId = (entry: GalleryEntry, id: string) => ( @@ -18,7 +18,7 @@ export const amendVariantsWithDefaults = (entry: GalleryEntry) => { return variants } -export const _amendVariantWithDefaults = (parent: GalleryEntry, variant: GalleryEntry) => { +export const _amendVariantWithDefaults = (parent: GalleryEntryInheritedProperties, variant: GalleryEntryInheritedProperties) => { if (variant.title === undefined && (!!parent.title || parent.title === null || parent.title === '')) { variant.title = parent.title } @@ -28,6 +28,9 @@ export const _amendVariantWithDefaults = (parent: GalleryEntry, variant: Gallery if (variant.warning === undefined && !!parent.warning) { variant.warning = parent.warning } + if (!variant.fields && !!parent.fields) { + variant.fields = parent.fields + } return variant } diff --git a/src/views/gallery-view.vue b/src/views/gallery-view.vue index c634860..0c0ee02 100644 --- a/src/views/gallery-view.vue +++ b/src/views/gallery-view.vue @@ -49,6 +49,13 @@ onMounted(async () => { ) .view-content p {{ title }} + .info + .info-entry( + v-for='(field, key) in entry.fields' + :class='key' + ) + dl {{ key }} + dt {{ field }} EmbedableContent( :content='entry.description' )