From f48118122b99953624a794e8ba37587f963e654e Mon Sep 17 00:00:00 2001 From: Lightling Date: Fri, 3 May 2024 17:19:14 -0400 Subject: [PATCH] migrate types to lib/types --- .../types/src/{content => config}/globals.d.ts | 0 .../src/{content => config}/navigation.d.ts | 0 .../types/src/{content => config}/routing.d.ts | 0 libs/types/src/{content => config}/themes.d.ts | 0 .../src/{content => config}/warnings.d.ts | 0 .../types/src/content}/dateRange.ts | 0 .../shared => libs/types/src/content}/link.ts | 0 .../types/src/content/templates}/gallery.d.ts | 11 ----------- .../types/src/content/templates}/project.d.ts | 0 libs/types/src/index.d.ts | 16 +++++++++++----- .../components/inflators/descriptionList.ts | 3 ++- .../frontend/src/components/inflators/embed.ts | 4 ++-- projects/frontend/src/utilities/dom.ts | 4 +++- .../src/views/gallery/gallery-list.vue | 18 ++++++++++++++++-- .../src/views/gallery/gallery-tile.vue | 4 +++- .../src/views/gallery/gallery-utilities.ts | 7 +++++-- .../src/views/gallery/gallery-view.vue | 7 +++++-- .../src/views/project/project-list.vue | 7 +++++-- .../src/views/project/project-tile.vue | 4 +++- .../src/views/project/project-view.vue | 7 +++++-- 20 files changed, 60 insertions(+), 32 deletions(-) rename libs/types/src/{content => config}/globals.d.ts (100%) rename libs/types/src/{content => config}/navigation.d.ts (100%) rename libs/types/src/{content => config}/routing.d.ts (100%) rename libs/types/src/{content => config}/themes.d.ts (100%) rename libs/types/src/{content => config}/warnings.d.ts (100%) rename {projects/frontend/src/types/shared => libs/types/src/content}/dateRange.ts (100%) rename {projects/frontend/src/types/shared => libs/types/src/content}/link.ts (100%) rename {projects/frontend/src/views/gallery => libs/types/src/content/templates}/gallery.d.ts (91%) rename {projects/frontend/src/views/project => libs/types/src/content/templates}/project.d.ts (100%) diff --git a/libs/types/src/content/globals.d.ts b/libs/types/src/config/globals.d.ts similarity index 100% rename from libs/types/src/content/globals.d.ts rename to libs/types/src/config/globals.d.ts diff --git a/libs/types/src/content/navigation.d.ts b/libs/types/src/config/navigation.d.ts similarity index 100% rename from libs/types/src/content/navigation.d.ts rename to libs/types/src/config/navigation.d.ts diff --git a/libs/types/src/content/routing.d.ts b/libs/types/src/config/routing.d.ts similarity index 100% rename from libs/types/src/content/routing.d.ts rename to libs/types/src/config/routing.d.ts diff --git a/libs/types/src/content/themes.d.ts b/libs/types/src/config/themes.d.ts similarity index 100% rename from libs/types/src/content/themes.d.ts rename to libs/types/src/config/themes.d.ts diff --git a/libs/types/src/content/warnings.d.ts b/libs/types/src/config/warnings.d.ts similarity index 100% rename from libs/types/src/content/warnings.d.ts rename to libs/types/src/config/warnings.d.ts diff --git a/projects/frontend/src/types/shared/dateRange.ts b/libs/types/src/content/dateRange.ts similarity index 100% rename from projects/frontend/src/types/shared/dateRange.ts rename to libs/types/src/content/dateRange.ts diff --git a/projects/frontend/src/types/shared/link.ts b/libs/types/src/content/link.ts similarity index 100% rename from projects/frontend/src/types/shared/link.ts rename to libs/types/src/content/link.ts diff --git a/projects/frontend/src/views/gallery/gallery.d.ts b/libs/types/src/content/templates/gallery.d.ts similarity index 91% rename from projects/frontend/src/views/gallery/gallery.d.ts rename to libs/types/src/content/templates/gallery.d.ts index 28efb0d..cd92852 100644 --- a/projects/frontend/src/views/gallery/gallery.d.ts +++ b/libs/types/src/content/templates/gallery.d.ts @@ -81,17 +81,6 @@ export type GalleryEntry = GalleryEntryInheritedProperties & { */ export type GalleryEntries = { [idOrTitle: string]: GalleryEntry } -/** - * A wrapper around {@link GalleryEntries} for the app's use only which adds additional fields - * in order for the app to effectively display the entries. - */ -export type GalleryDisplayedEntries = { [idOrTitle: string]: GalleryEntry & { - /** - * specifies whether the entry is hidden by the tags selected by a visitor - */ - hidden?: boolean -}} - /** * Defines a tag used by entries in a gallery * used for filtering entries from view diff --git a/projects/frontend/src/views/project/project.d.ts b/libs/types/src/content/templates/project.d.ts similarity index 100% rename from projects/frontend/src/views/project/project.d.ts rename to libs/types/src/content/templates/project.d.ts diff --git a/libs/types/src/index.d.ts b/libs/types/src/index.d.ts index d543f74..c23b29a 100644 --- a/libs/types/src/index.d.ts +++ b/libs/types/src/index.d.ts @@ -1,5 +1,11 @@ -export * from './content/globals' -export * from './content/navigation' -export * from './content/routing' -export * from './content/themes' -export * from './content/warnings' +export * from './config/globals' +export * from './config/navigation' +export * from './config/routing' +export * from './config/themes' +export * from './config/warnings' + +export * from './content/dateRange' +export * from './content/link' + +export * from './content/templates/gallery' +export * from './content/templates/project' diff --git a/projects/frontend/src/components/inflators/descriptionList.ts b/projects/frontend/src/components/inflators/descriptionList.ts index 2927a44..782e22d 100644 --- a/projects/frontend/src/components/inflators/descriptionList.ts +++ b/projects/frontend/src/components/inflators/descriptionList.ts @@ -1,4 +1,5 @@ -import type { ProjectListingInfo } from 'src/views/project/project' +import type { ProjectListingInfo } from '@goldenwere/static-web-templates-types' + import { getFormattedPeriod } from 'src/utilities/dom' /** diff --git a/projects/frontend/src/components/inflators/embed.ts b/projects/frontend/src/components/inflators/embed.ts index c51a0d2..3de20b2 100644 --- a/projects/frontend/src/components/inflators/embed.ts +++ b/projects/frontend/src/components/inflators/embed.ts @@ -1,10 +1,10 @@ +import type { ProjectListingInfo } from '@goldenwere/static-web-templates-types' + import { inflateDescriptionListEmbeds } from './descriptionList' import { inflateDetailsElements } from './details' import { inflateImageEmbeds } from './image' import { inflateVideoEmbeds } from './video' -import type { ProjectListingInfo } from 'src/views/project/project' - /** * Inflates various supported embeds * @param _window the reference to the window diff --git a/projects/frontend/src/utilities/dom.ts b/projects/frontend/src/utilities/dom.ts index 4288204..7c7c5d5 100644 --- a/projects/frontend/src/utilities/dom.ts +++ b/projects/frontend/src/utilities/dom.ts @@ -1,6 +1,8 @@ import rfdc from 'rfdc' -import { type DateRange } from 'src/types/shared/dateRange' +import type { + DateRange, +} from '@goldenwere/static-web-templates-types' export const deepCopy = rfdc() diff --git a/projects/frontend/src/views/gallery/gallery-list.vue b/projects/frontend/src/views/gallery/gallery-list.vue index 074104d..cce5d32 100644 --- a/projects/frontend/src/views/gallery/gallery-list.vue +++ b/projects/frontend/src/views/gallery/gallery-list.vue @@ -1,9 +1,12 @@