diff --git a/libs/types/src/content/templates/gallery-list.d.ts b/libs/types/src/content/templates/gallery-list.d.ts index f51e1b6..1c77eb9 100644 --- a/libs/types/src/content/templates/gallery-list.d.ts +++ b/libs/types/src/content/templates/gallery-list.d.ts @@ -6,17 +6,55 @@ import type { MediaEntry } from './shared' export type GalleryEntryFormat = | 'image' -/** - * This describes additional information about a gallery entry - * to display when listing the entry on the gallery-list page. - */ -export type GalleryEntry = { + /** + * Defines properties shared among the different versions of a {@link GalleryEntry} + */ +export type GalleryEntrySharedProperties = { /** * The kind of media the entry is */ format: GalleryEntryFormat +} & MediaEntry + +/** + * This describes additional information about a gallery entry which does not contain any variants. + * It contains a URL to the media that the entry represents. + */ +export type GalleryEntryWithoutVariants = { /** - * URL to the markdown document of the gallery entry + * URL to the entry */ url: string -} & MediaEntry +} & GalleryEntrySharedProperties + +/** + * This describes additional information about a gallery entry which contains variants. + * It contains a collection of ids which map to a gallery entry without variants. + */ +export type GalleryEntryWithVariants = { + /** + * The id of the entry from the {@link GalleryEntry variants} collection to display when the page first loads. + * If this is not defined, the first entry will be chosen instead. + */ + defaultVariant?: string + /** + * Variants are a collection of alternate media to display for the entry. + * This changes based on the {@link GalleryEntryFormat format} of the entry: + * - For music, this is treated like a tracklist for an album, + * with the {@link GalleryEntry.defaultVariant default} or selected variant being treated as the current track in the player + * - For all other media, this is put into a carousel, + * where the {@link GalleryEntry.defaultVariant default} or selected variant is displayed in the main viewer + */ + variants: Record +} & GalleryEntrySharedProperties + +/** + * This describes the overall structure of a gallery entry + * to display when listing the entry on the gallery-list page. + * Note that a {@link GalleryEntryWithVariants} will take priority + * over a {@link GalleryEntryWithoutVariants} + * if the parsed config results in one with fields from both types. + */ +export type GalleryEntry = + | GalleryEntryWithoutVariants + | GalleryEntryWithVariants diff --git a/projects/frontend/src/templates/link.pug b/projects/frontend/src/templates/link.pug new file mode 100644 index 0000000..305850f --- /dev/null +++ b/projects/frontend/src/templates/link.pug @@ -0,0 +1,11 @@ +mixin link + router-link.router-link.link( + v-if='isInternal' + :to='{ path: viewPath, query: { id: id } }' + ) + block + a.link( + v-else + :href='href' + ) + block diff --git a/projects/frontend/src/views/blog/blog-list.vue b/projects/frontend/src/views/blog/blog-list.vue index 840a5a4..1749bf5 100644 --- a/projects/frontend/src/views/blog/blog-list.vue +++ b/projects/frontend/src/views/blog/blog-list.vue @@ -27,7 +27,6 @@ type BlogDisplayedEntries = ResolvedListEntries -const entryIds = ref([] as string[]) const entries = ref({} as BlogDisplayedEntries) const ready = ref(false) const currentRoute = getCurrentRoute() @@ -57,7 +56,6 @@ onMounted(async () => { let listConfig = await fetchAndParseYaml(routeConfig.config) const list = await fetchConfigsFromList(listConfig) config.value = listConfig - entryIds.value = list.ids entries.value = list.entries document.title = routeConfig.fullTitle ready.value = true @@ -71,15 +69,15 @@ onMounted(async () => { v-if='ready' ) Transition( - v-for='id in entryIds' + v-for='(entry, id) in entries' ) BlogTile( - v-if='!entries[id].isHidden || !config.removeFromView' - :class='{ hidden: entries[id].isHidden && !config.removeFromView }' + v-if='!entry.isHidden || !config.removeFromView' + :class='{ hidden: entry.isHidden && !config.removeFromView }' :id='id' :viewPath='viewPath' :isInternal='true' - :entry='entries[id]' + :entry='entry' ) Transition FilterPanel( diff --git a/projects/frontend/src/views/blog/blog-tile.vue b/projects/frontend/src/views/blog/blog-tile.vue index 4cffbb0..c886c9e 100644 --- a/projects/frontend/src/views/blog/blog-tile.vue +++ b/projects/frontend/src/views/blog/blog-tile.vue @@ -17,7 +17,7 @@ const resolved = ref({} as BlogEntry) const thumbnail = computed(() => resolved.value.thumbnail) const description = computed(() => marked.parse(resolved.value.description || '')) const date = computed(() => !!resolved.value.date ? getFormattedDate(resolved.value.date) : null) -const title = computed(() => marked.parse(resolved.value.title || '')) +const title = computed(() => marked.parse(resolved.value.title || props.id)) const href = computed(() => `${props.viewPath}?id=${props.id}`) onMounted(async () => { diff --git a/projects/frontend/src/views/blog/blog-view.vue b/projects/frontend/src/views/blog/blog-view.vue index 3d7f81a..3136f9a 100644 --- a/projects/frontend/src/views/blog/blog-view.vue +++ b/projects/frontend/src/views/blog/blog-view.vue @@ -1,7 +1,7 @@ @@ -32,13 +97,12 @@ onMounted(async () => { Transition FilterPanel( v-if='ready && !!config.tags' - :ref='filterPanelRef' :tags='config.tags' @toggledTagsChanged='onToggledTagsChanged($event)' ) Transition .gallery( - v-if='galleryReady' + v-if='ready' ) Transition( v-for='(entry, id) in entries' @@ -46,9 +110,10 @@ onMounted(async () => { GalleryTile( v-if='!entry.isHidden || !config.removeFromView' :class='{ hidden: entry.isHidden && !config.removeFromView }' - :entry='entry' - :id='id' :hideWarnings='hideWarnings' - @click='onTileClicked($event)' + :id='id' + :viewPath='viewPath' + :isInternal='true' + :entry='entry' ) diff --git a/projects/frontend/src/views/gallery/gallery-tile.vue b/projects/frontend/src/views/gallery/gallery-tile.vue index cec2b53..cc51598 100644 --- a/projects/frontend/src/views/gallery/gallery-tile.vue +++ b/projects/frontend/src/views/gallery/gallery-tile.vue @@ -1,54 +1,80 @@ diff --git a/projects/frontend/src/views/gallery/gallery-utilities.ts b/projects/frontend/src/views/gallery/gallery-utilities.ts deleted file mode 100644 index 208156f..0000000 --- a/projects/frontend/src/views/gallery/gallery-utilities.ts +++ /dev/null @@ -1,54 +0,0 @@ -import type { - GalleryEntry, - GalleryEntryInheritedProperties, -} from '@goldenwere/mackenzii-types' - -import { deepCopy } from 'src/utilities/dom' - -export const getTitleFromEntryOrId = (entry: GalleryEntry, id: string) => ( - entry.title !== undefined - ? entry.title === '' || entry.title === null - ? 'untitled' - : entry.title - : id -) - -export const amendVariantsWithDefaults = (parent: GalleryEntryInheritedProperties, children: GalleryEntryInheritedProperties) => { - const _children = deepCopy(children) - if (!!_children) { - Object.keys(children).forEach(id => { - _children[id] = _amendVariantWithDefaults(parent, children[id]) - }) - } - - return _children -} - -export const _amendVariantWithDefaults = (parent: GalleryEntryInheritedProperties, variant: GalleryEntryInheritedProperties) => { - if (variant.title === undefined && (!!parent.title || parent.title === null || parent.title === '')) { - variant.title = parent.title - } - if (!variant.description && !!parent.description) { - variant.description = parent.description - } - if (variant.warning === undefined && !!parent.warning) { - variant.warning = parent.warning - } - if (!variant.fields && !!parent.fields) { - variant.fields = parent.fields - } - if (!variant.tags && !!parent.tags) { - variant.tags = parent.tags - } - if (!variant.thumbnailPosition && !!parent.thumbnailPosition) { - variant.thumbnailPosition = parent.thumbnailPosition - } - if (!variant.thumbnailBackground && !!parent.thumbnailBackground) { - variant.thumbnailBackground = parent.thumbnailBackground - } - if (!variant.background && !!parent.background) { - variant.background = parent.background - } - - return variant -} diff --git a/projects/frontend/src/views/gallery/gallery-view.vue b/projects/frontend/src/views/gallery/gallery-view.vue index 0dd904b..680e9c5 100644 --- a/projects/frontend/src/views/gallery/gallery-view.vue +++ b/projects/frontend/src/views/gallery/gallery-view.vue @@ -1,14 +1,16 @@