From 8267ab8e82547adda95aae9d0641e4bd33992b80 Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 17 Oct 2024 17:19:19 -0400 Subject: [PATCH] update tagging in cms - tags are now on global config and not per-list - tags are now stored in a regular array rather than key-value object - tags can be fetched externally or embedded in the global config --- libs/types/src/config/globals.d.ts | 2 + libs/types/src/content/entryTag.d.ts | 20 +++++----- libs/types/src/content/templates/shared.d.ts | 17 -------- .../src/components/shared/filter-panel.vue | 40 +++++++++++-------- projects/frontend/src/main.ts | 4 +- .../frontend/src/views/shared/media-list.vue | 15 +++---- 6 files changed, 45 insertions(+), 53 deletions(-) diff --git a/libs/types/src/config/globals.d.ts b/libs/types/src/config/globals.d.ts index 03ca58f..dc2c046 100644 --- a/libs/types/src/config/globals.d.ts +++ b/libs/types/src/config/globals.d.ts @@ -1,4 +1,5 @@ import type { HeaderEntry } from './navigation' +import type { MediaEntryTag } from '../content/entryTag' import type { RouteCollection } from './routing' import type { SiteThemeList } from './themes' import type { WarningModal } from './warnings' @@ -12,5 +13,6 @@ export type SiteGlobals = { id: string stylesheetUrls: string[] themes: SiteThemeList + tags?: string | MediaEntryTag[] warning: WarningModal } diff --git a/libs/types/src/content/entryTag.d.ts b/libs/types/src/content/entryTag.d.ts index 9b7fa7c..a17bf76 100644 --- a/libs/types/src/content/entryTag.d.ts +++ b/libs/types/src/content/entryTag.d.ts @@ -2,7 +2,11 @@ * Defines a tag used by entries in a gallery-list/article-list, * used for filtering entries from view */ -export type EntryTag = { +export type MediaEntryTag = { + /** + * specifies the id for the tag + */ + tagId: string /** * specifies a category that the tag belongs to * in order to optionally organize them in the view; @@ -11,19 +15,13 @@ export type EntryTag = { * placed before any other sections formed by categories (if any) */ category?: string + /** + * can be used to describe a tag when hovering over it in the UI + */ + description?: string /** * specifies the name that the tag will appear as in the DOM; * if not specified, the id of the tag will be used in its place */ displayName?: string } - -/** - * Defines the list of tags in a gallery-list/article-list, - * a key-value object where the value is the entry, - * and the key represents the id of a tag; - * the id of a tag must be unique, - * and the ids specified in a gallery/article entry must match - * the ids specified in `EntryTagCollection` in order for them to work effectively - */ -export type EntryTagCollection = { [id: string]: EntryTag } diff --git a/libs/types/src/content/templates/shared.d.ts b/libs/types/src/content/templates/shared.d.ts index 940a5f3..0f449c8 100644 --- a/libs/types/src/content/templates/shared.d.ts +++ b/libs/types/src/content/templates/shared.d.ts @@ -1,5 +1,4 @@ import type { DateRange } from '../dateRange' -import type { EntryTagCollection } from '../entryTag' /** * Defines entries that are already fetched or are embedded directly in the list. @@ -40,22 +39,6 @@ export type ListWithEntries = { */ export type ResolvedListEntries = ListEntries> -/** - * Defines a list that supports tagging the entries - */ -export type ListWithTags = { - /** - * the tags to use for filtering entries - */ - tags?: EntryTagCollection - /** - * whether or not tag filtering removes entries completely from view; - * if false, they will apply a class selector instead - * in order to manually style (CSS filtering/opacity/etc.) - */ - removeFromView?: boolean -} & ListWithEntries - /** * Defines a list that has warnings on its entries */ diff --git a/projects/frontend/src/components/shared/filter-panel.vue b/projects/frontend/src/components/shared/filter-panel.vue index c8c57d0..4291c1e 100644 --- a/projects/frontend/src/components/shared/filter-panel.vue +++ b/projects/frontend/src/components/shared/filter-panel.vue @@ -1,27 +1,28 @@ diff --git a/projects/frontend/src/main.ts b/projects/frontend/src/main.ts index 642b0dc..6338ca6 100644 --- a/projects/frontend/src/main.ts +++ b/projects/frontend/src/main.ts @@ -21,7 +21,7 @@ export const createApp = ViteSSG( // the root component main, // vue-router options - { routes: createRoutes(globals as SiteGlobals) }, + { routes: createRoutes(globals as unknown as SiteGlobals) }, // function to have custom setups async ({ app, router, routes, isClient, initialState }) => { const hljsResolved: HLJSApi = await hljs as any @@ -44,6 +44,6 @@ export const createApp = ViteSSG( } app.use(createPinia()) - initializeRouteStore(routes, globals as SiteGlobals) + initializeRouteStore(routes, globals as unknown as SiteGlobals) }, ) diff --git a/projects/frontend/src/views/shared/media-list.vue b/projects/frontend/src/views/shared/media-list.vue index 8e88552..01748d6 100644 --- a/projects/frontend/src/views/shared/media-list.vue +++ b/projects/frontend/src/views/shared/media-list.vue @@ -1,8 +1,7 @@