diff --git a/libs/types/package.json b/libs/types/package.json new file mode 100644 index 0000000..79e13c0 --- /dev/null +++ b/libs/types/package.json @@ -0,0 +1,8 @@ +{ + "name": "@goldenwere/static-web-templates-types", + "private": true, + "version": "0.0.0", + "type": "module", + "types": "src/index.d.ts", + "main": "src/index.d.ts" +} diff --git a/libs/types/src/content/globals.d.ts b/libs/types/src/content/globals.d.ts new file mode 100644 index 0000000..aac4a89 --- /dev/null +++ b/libs/types/src/content/globals.d.ts @@ -0,0 +1,14 @@ +import { HeaderEntry } from './navigation' +import { SiteThemeList } from './themes' +import { WarningModal } from './warnings' + +/** + * Defines global values for the site. + */ +type SiteGlobals = { + header: HeaderEntry[] + id: string + stylesheetUrls: string[] + themes: SiteThemeList + warning: WarningModal +} diff --git a/libs/types/src/content/navigation.d.ts b/libs/types/src/content/navigation.d.ts new file mode 100644 index 0000000..29b1b44 --- /dev/null +++ b/libs/types/src/content/navigation.d.ts @@ -0,0 +1,17 @@ +/** + * Defines an entry in the app header. + * Optionally recursive by defining children instead of path. + */ +export type HeaderEntry = { + displayName: string +} & ({ + path: string + target?: + | '_self' + | '_blank' + | '_parent' + | '_top' + | '_unfencedTop' +} | { + children: HeaderEntry[] +}) diff --git a/libs/types/src/content/routing.d.ts b/libs/types/src/content/routing.d.ts new file mode 100644 index 0000000..2e8a097 --- /dev/null +++ b/libs/types/src/content/routing.d.ts @@ -0,0 +1,77 @@ +import { WarningModal } from './warnings' + + +/** + * Defines the available `views` that can be used to set up routes. + * Each `Template` has different configuration options + */ +export type Template = + | 'markdown' + | 'project-list' + | 'gallery-list' + +/** + * Defines the shared options for a route + */ +export type SharedRouteDefinition = { + id: string + scriptUrl?: string + stylesheetUrls: string[] + template: Template + title: string + warning: boolean | WarningModal +} + +/** + * Defines a content-based route + */ +export type ContentfulRouteDefintion = SharedRouteDefinition & { + content: string +} + +/** + * Defines a config-based route + */ +export type ConfigfulRouteDefinition = SharedRouteDefinition & { + config: string +} + +/** + * Defines the config for a route using the `markdown` {@link Template} + */ +export type MarkdownDefinition = ContentfulRouteDefintion & { + template: 'markdown' +} + +/** + * Defines the config for a route using the `project-list` {@link Template} + */ +export type ProjectListDefinition = ConfigfulRouteDefinition & { + template: 'project-list' + view: { + stylesheetUrls: string[] + } +} + +/** + * Defines the config for a route using the `gallery-list` {@link Template} + */ +export type GalleryListDefinition = ConfigfulRouteDefinition & { + template: 'gallery-list' + view: { + stylesheetUrls: string[] + } +} + +/** + * Defines all available route definitions + */ +export type RouteDefinition = + | MarkdownDefinition + | ProjectListDefinition + | GalleryListDefinition + +/** + * Defines the collection of routes the app uses + */ +export type RouteCollection = { [key: string]: RouteDefinition } diff --git a/libs/types/src/content/themes.d.ts b/libs/types/src/content/themes.d.ts new file mode 100644 index 0000000..b7d409b --- /dev/null +++ b/libs/types/src/content/themes.d.ts @@ -0,0 +1,24 @@ +/** + * Defines a stylesheet the site uses for applying a theme + */ +export type SiteTheme = { + displayName?: string + type: SiteThemeType + url: string +} + +/** + * Defines a list of themes the site uses + */ +export type SiteThemeList = { [id: string]: SiteTheme } + +/** + * Defines what kind of theme a specified theme is + * for the purposes of determining a default theme + * based on the system/browser setting of the visitor + */ +export type SiteThemeType = + | 'dark' + | 'light' + | 'dark_hc' + | 'light_hc' diff --git a/libs/types/src/content/warnings.d.ts b/libs/types/src/content/warnings.d.ts new file mode 100644 index 0000000..e8d0fb7 --- /dev/null +++ b/libs/types/src/content/warnings.d.ts @@ -0,0 +1,12 @@ +/** + * Defines the structure of the warning modal that shows when a route has a content warning of some sort. + */ +export type WarningModal = { + prompt: string + leave: { + url: string, + text: string, + }, + acknowledge: string, + remember: string, +} diff --git a/libs/types/src/index.d.ts b/libs/types/src/index.d.ts new file mode 100644 index 0000000..d543f74 --- /dev/null +++ b/libs/types/src/index.d.ts @@ -0,0 +1,5 @@ +export * from './content/globals' +export * from './content/navigation' +export * from './content/routing' +export * from './content/themes' +export * from './content/warnings' diff --git a/package-lock.json b/package-lock.json index aaade72..79f9848 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,9 +8,13 @@ "name": "@goldenwere/static-web-templates", "version": "0.0.0", "workspaces": [ - "projects/*" + "projects/*", + "libs/*" ] }, + "libs/types": { + "version": "0.0.0" + }, "node_modules/@asamuzakjp/dom-selector": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-2.0.2.tgz", @@ -442,6 +446,10 @@ "resolved": "projects/sites", "link": true }, + "node_modules/@goldenwere/static-web-templates-types": { + "resolved": "libs/types", + "link": true + }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.15", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", @@ -3346,6 +3354,7 @@ "name": "@goldenwere/static-web-templates-frontend", "version": "0.0.0", "devDependencies": { + "@goldenwere/static-web-templates-types": "*", "@types/dompurify": "3.0.5", "@types/js-yaml": "4.0.9", "@types/node": "18.16.x", @@ -3377,6 +3386,10 @@ "devDependencies": { "symlink-dir": "6.0.0" } + }, + "projects/types": { + "version": "0.0.0", + "extraneous": true } } } diff --git a/package.json b/package.json index f198b4c..f340941 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "version": "0.0.0", "type": "module", "workspaces": [ - "projects/*" + "projects/*", + "libs/*" ] } diff --git a/projects/frontend/package.json b/projects/frontend/package.json index 061f440..c2172bd 100644 --- a/projects/frontend/package.json +++ b/projects/frontend/package.json @@ -9,6 +9,7 @@ "preview": "vite preview" }, "devDependencies": { + "@goldenwere/static-web-templates-types": "*", "@types/dompurify": "3.0.5", "@types/js-yaml": "4.0.9", "@types/node": "18.16.x", diff --git a/projects/frontend/src/components/shared/header-link.vue b/projects/frontend/src/components/shared/header-link.vue index 8fdfa42..d3e8744 100644 --- a/projects/frontend/src/components/shared/header-link.vue +++ b/projects/frontend/src/components/shared/header-link.vue @@ -1,6 +1,6 @@