create types lib
This commit is contained in:
parent
04418cbfed
commit
ba6b727fd7
20 changed files with 188 additions and 154 deletions
8
libs/types/package.json
Normal file
8
libs/types/package.json
Normal file
|
@ -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"
|
||||||
|
}
|
14
libs/types/src/content/globals.d.ts
vendored
Normal file
14
libs/types/src/content/globals.d.ts
vendored
Normal file
|
@ -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
|
||||||
|
}
|
17
libs/types/src/content/navigation.d.ts
vendored
Normal file
17
libs/types/src/content/navigation.d.ts
vendored
Normal file
|
@ -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[]
|
||||||
|
})
|
77
libs/types/src/content/routing.d.ts
vendored
Normal file
77
libs/types/src/content/routing.d.ts
vendored
Normal file
|
@ -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 }
|
24
libs/types/src/content/themes.d.ts
vendored
Normal file
24
libs/types/src/content/themes.d.ts
vendored
Normal file
|
@ -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'
|
12
libs/types/src/content/warnings.d.ts
vendored
Normal file
12
libs/types/src/content/warnings.d.ts
vendored
Normal file
|
@ -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,
|
||||||
|
}
|
5
libs/types/src/index.d.ts
vendored
Normal file
5
libs/types/src/index.d.ts
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
export * from './content/globals'
|
||||||
|
export * from './content/navigation'
|
||||||
|
export * from './content/routing'
|
||||||
|
export * from './content/themes'
|
||||||
|
export * from './content/warnings'
|
15
package-lock.json
generated
15
package-lock.json
generated
|
@ -8,9 +8,13 @@
|
||||||
"name": "@goldenwere/static-web-templates",
|
"name": "@goldenwere/static-web-templates",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"projects/*"
|
"projects/*",
|
||||||
|
"libs/*"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"libs/types": {
|
||||||
|
"version": "0.0.0"
|
||||||
|
},
|
||||||
"node_modules/@asamuzakjp/dom-selector": {
|
"node_modules/@asamuzakjp/dom-selector": {
|
||||||
"version": "2.0.2",
|
"version": "2.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-2.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-2.0.2.tgz",
|
||||||
|
@ -442,6 +446,10 @@
|
||||||
"resolved": "projects/sites",
|
"resolved": "projects/sites",
|
||||||
"link": true
|
"link": true
|
||||||
},
|
},
|
||||||
|
"node_modules/@goldenwere/static-web-templates-types": {
|
||||||
|
"resolved": "libs/types",
|
||||||
|
"link": true
|
||||||
|
},
|
||||||
"node_modules/@jridgewell/sourcemap-codec": {
|
"node_modules/@jridgewell/sourcemap-codec": {
|
||||||
"version": "1.4.15",
|
"version": "1.4.15",
|
||||||
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
|
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
|
||||||
|
@ -3346,6 +3354,7 @@
|
||||||
"name": "@goldenwere/static-web-templates-frontend",
|
"name": "@goldenwere/static-web-templates-frontend",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@goldenwere/static-web-templates-types": "*",
|
||||||
"@types/dompurify": "3.0.5",
|
"@types/dompurify": "3.0.5",
|
||||||
"@types/js-yaml": "4.0.9",
|
"@types/js-yaml": "4.0.9",
|
||||||
"@types/node": "18.16.x",
|
"@types/node": "18.16.x",
|
||||||
|
@ -3377,6 +3386,10 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"symlink-dir": "6.0.0"
|
"symlink-dir": "6.0.0"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"projects/types": {
|
||||||
|
"version": "0.0.0",
|
||||||
|
"extraneous": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"projects/*"
|
"projects/*",
|
||||||
|
"libs/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@goldenwere/static-web-templates-types": "*",
|
||||||
"@types/dompurify": "3.0.5",
|
"@types/dompurify": "3.0.5",
|
||||||
"@types/js-yaml": "4.0.9",
|
"@types/js-yaml": "4.0.9",
|
||||||
"@types/node": "18.16.x",
|
"@types/node": "18.16.x",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { type HeaderEntry } from 'content/routes.js'
|
import { type HeaderEntry } from '@goldenwere/static-web-templates-types'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
|
import type { WarningModal } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import { storage } from 'src/utilities/fetch'
|
import { storage } from 'src/utilities/fetch'
|
||||||
|
|
||||||
import type { WarningModal } from 'content/routes.js'
|
|
||||||
|
|
||||||
import EmbedableContent from './embedable-content.vue'
|
import EmbedableContent from './embedable-content.vue'
|
||||||
|
|
||||||
|
|
145
projects/frontend/src/content-env.d.ts
vendored
145
projects/frontend/src/content-env.d.ts
vendored
|
@ -1,151 +1,14 @@
|
||||||
declare module 'content/routes.js' {
|
declare module 'content/routes.js' {
|
||||||
/**
|
import type {
|
||||||
* Defines the structure of the warning modal that shows when a route has a content warning of some sort.
|
RouteCollection,
|
||||||
*/
|
SiteGlobals,
|
||||||
export type WarningModal = {
|
} from '@goldenwere/static-web-templates-types'
|
||||||
prompt: string
|
|
||||||
leave: {
|
|
||||||
url: string,
|
|
||||||
text: string,
|
|
||||||
},
|
|
||||||
acknowledge: string,
|
|
||||||
remember: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the available `views` that can be used to set up routes.
|
|
||||||
* Each `Template` has different configuration options
|
|
||||||
*/
|
|
||||||
type Template =
|
|
||||||
| 'markdown'
|
|
||||||
| 'project-list'
|
|
||||||
| 'gallery-list'
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the shared options for a route
|
|
||||||
*/
|
|
||||||
type SharedRouteDefinition = {
|
|
||||||
id: string
|
|
||||||
scriptUrl?: string
|
|
||||||
stylesheetUrls: string[]
|
|
||||||
template: Template
|
|
||||||
title: string
|
|
||||||
warning: boolean | WarningModal
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines a content-based route
|
|
||||||
*/
|
|
||||||
type ContentfulRouteDefintion = SharedRouteDefinition & {
|
|
||||||
content: string
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines a config-based route
|
|
||||||
*/
|
|
||||||
type ConfigfulRouteDefinition = SharedRouteDefinition & {
|
|
||||||
config: string
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the config for a route using the `markdown` {@link Template}
|
|
||||||
*/
|
|
||||||
type MarkdownDefinition = ContentfulRouteDefintion & {
|
|
||||||
template: 'markdown'
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the config for a route using the `project-list` {@link Template}
|
|
||||||
*/
|
|
||||||
type ProjectListDefinition = ConfigfulRouteDefinition & {
|
|
||||||
template: 'project-list'
|
|
||||||
view: {
|
|
||||||
stylesheetUrls: string[]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the config for a route using the `gallery-list` {@link Template}
|
|
||||||
*/
|
|
||||||
type GalleryListDefinition = ConfigfulRouteDefinition & {
|
|
||||||
template: 'gallery-list'
|
|
||||||
view: {
|
|
||||||
stylesheetUrls: string[]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines all available route definitions
|
|
||||||
*/
|
|
||||||
type RouteDefinition =
|
|
||||||
| MarkdownDefinition
|
|
||||||
| ProjectListDefinition
|
|
||||||
| GalleryListDefinition
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the collection of routes the app uses
|
|
||||||
*/
|
|
||||||
type RouteCollection = { [key: string]: RouteDefinition }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The routes the app uses
|
* The routes the app uses
|
||||||
*/
|
*/
|
||||||
const routes: RouteCollection
|
const routes: RouteCollection
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines an entry in the app header.
|
|
||||||
* Optionally recursive by defining children instead of path.
|
|
||||||
*/
|
|
||||||
type HeaderEntry = {
|
|
||||||
displayName: string
|
|
||||||
} & ({
|
|
||||||
path: string
|
|
||||||
target?:
|
|
||||||
| '_self'
|
|
||||||
| '_blank'
|
|
||||||
| '_parent'
|
|
||||||
| '_top'
|
|
||||||
| '_unfencedTop'
|
|
||||||
} | {
|
|
||||||
children: HeaderEntry[]
|
|
||||||
})
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
type SiteThemeType =
|
|
||||||
| 'dark'
|
|
||||||
| 'light'
|
|
||||||
| 'dark_hc'
|
|
||||||
| 'light_hc'
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines a stylesheet the site uses for applying a theme
|
|
||||||
*/
|
|
||||||
type SiteTheme = {
|
|
||||||
displayName?: string
|
|
||||||
type: SiteThemeType
|
|
||||||
url: string
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines a list of themes the site uses
|
|
||||||
*/
|
|
||||||
type SiteThemeList = { [id: string]: SiteTheme }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines global values for the site.
|
|
||||||
*/
|
|
||||||
type SiteGlobals = {
|
|
||||||
header: HeaderEntry[]
|
|
||||||
id: string
|
|
||||||
stylesheetUrls: string[]
|
|
||||||
themes: SiteThemeList
|
|
||||||
warning: WarningModal
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Global values the site uses.
|
* Global values the site uses.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { injectStylesheet } from 'src/utilities/dom'
|
||||||
import { storage } from './utilities/fetch'
|
import { storage } from './utilities/fetch'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
import type { WarningModal } from 'content/routes.js'
|
import type { WarningModal } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import HeaderLink from 'src/components/shared/header-link.vue'
|
import HeaderLink from 'src/components/shared/header-link.vue'
|
||||||
import ThemePicker from 'src/components/shared/theme-picker.vue'
|
import ThemePicker from 'src/components/shared/theme-picker.vue'
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import { type RouteRecordRaw } from 'vue-router'
|
import { type RouteRecordRaw } from 'vue-router'
|
||||||
|
import { routes, siteGlobals } from 'content/routes.js'
|
||||||
import {
|
import {
|
||||||
routes,
|
|
||||||
siteGlobals,
|
|
||||||
type GalleryListDefinition,
|
type GalleryListDefinition,
|
||||||
type HeaderEntry,
|
type HeaderEntry,
|
||||||
type ProjectListDefinition,
|
type ProjectListDefinition,
|
||||||
type RouteDefinition,
|
type RouteDefinition,
|
||||||
type SiteGlobals,
|
type SiteGlobals,
|
||||||
type Template,
|
type Template,
|
||||||
} from 'content/routes.js'
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
const markdownBody = () => import ('./views/markdown/markdown.vue')
|
const markdownBody = () => import ('./views/markdown/markdown.vue')
|
||||||
const projectListBody = () => import ('./views/project/project-list.vue')
|
const projectListBody = () => import ('./views/project/project-list.vue')
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
|
import { type GalleryListDefinition } from '@goldenwere/static-web-templates-types'
|
||||||
import { type RouteRecordRaw, useRouter } from 'vue-router'
|
import { type RouteRecordRaw, useRouter } from 'vue-router'
|
||||||
|
|
||||||
import type { GalleryDisplayedEntries, GalleryList } from './gallery'
|
import type { GalleryDisplayedEntries, GalleryList } from './gallery'
|
||||||
import { type GalleryListDefinition } from 'content/routes.js'
|
|
||||||
import { amendVariantsWithDefaults } from './gallery-utilities'
|
import { amendVariantsWithDefaults } from './gallery-utilities'
|
||||||
import { fetchAndParseYaml, storage } from 'src/utilities/fetch'
|
import { fetchAndParseYaml, storage } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, onMounted, ref } from 'vue'
|
import { computed, onMounted, ref } from 'vue'
|
||||||
|
import { type GalleryListDefinition } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { GalleryEntry, GalleryList } from './gallery'
|
import type { GalleryEntry, GalleryList } from './gallery'
|
||||||
import { type GalleryListDefinition } from 'content/routes.js'
|
|
||||||
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
|
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
|
||||||
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
|
import { type MarkdownDefinition } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
||||||
|
|
||||||
import { type MarkdownDefinition } from 'content/routes.js'
|
|
||||||
import { fetchAndParseMarkdown } from 'src/utilities/fetch'
|
import { fetchAndParseMarkdown } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
|
import { type ProjectListDefinition } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { ProjectList, ProjectListingInfo } from './project'
|
import type { ProjectList, ProjectListingInfo } from './project'
|
||||||
import { type ProjectListDefinition } from 'content/routes.js'
|
|
||||||
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
|
import { type ProjectListDefinition } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { ProjectList, ProjectListingInfo } from './project'
|
import type { ProjectList, ProjectListingInfo } from './project'
|
||||||
import { type ProjectListDefinition } from 'content/routes.js'
|
|
||||||
import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch'
|
import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
Loading…
Add table
Reference in a new issue