breadcrumbs now support project/gallery titles
This commit is contained in:
parent
64c435dd7c
commit
0a487f2744
4 changed files with 40 additions and 34 deletions
|
@ -29,7 +29,10 @@ const acknowledged = ref(false)
|
||||||
const storageId = ref('')
|
const storageId = ref('')
|
||||||
const routeId = ref('')
|
const routeId = ref('')
|
||||||
const warning = ref({} as WarningModal)
|
const warning = ref({} as WarningModal)
|
||||||
const breadcrumbs = ref([] as Link[])
|
const breadcrumbs = computed({
|
||||||
|
get() { return routeStore._breadcrumbs },
|
||||||
|
set() {}
|
||||||
|
})
|
||||||
|
|
||||||
const determineWarning = () => {
|
const determineWarning = () => {
|
||||||
if (!routeConfig.warning || routeStore.doesRouteRememberWarning(currentRoute.path)) {
|
if (!routeConfig.warning || routeStore.doesRouteRememberWarning(currentRoute.path)) {
|
||||||
|
@ -75,29 +78,6 @@ const determineScript = async () => {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
|
|
||||||
const determineBreadcrumbs = () => {
|
|
||||||
breadcrumbs.value = []
|
|
||||||
if (currentRoute.path === '/') {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
const split = currentRoute.path.split('/')
|
|
||||||
split[0] = '/'
|
|
||||||
const paths = [] as string[]
|
|
||||||
split.forEach((val, i) => {
|
|
||||||
const sliced = split.slice(0, i + 1)
|
|
||||||
if (sliced.length > 0) {
|
|
||||||
paths.push(sliced.reduce((prev, curr) => prev === '/' ? `/${curr}` : `${prev}/${curr}`))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
breadcrumbs.value = paths.map(path => {
|
|
||||||
return {
|
|
||||||
href: path,
|
|
||||||
caption: routeStore._routes[path]?.title
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const refresh = async () => {
|
const refresh = async () => {
|
||||||
ready.value = false
|
ready.value = false
|
||||||
acknowledged.value = false
|
acknowledged.value = false
|
||||||
|
@ -107,8 +87,8 @@ const refresh = async () => {
|
||||||
routeId.value = routeStore._routes[currentRoute.path].id
|
routeId.value = routeStore._routes[currentRoute.path].id
|
||||||
|
|
||||||
window.routeConfig = {...routeConfig}
|
window.routeConfig = {...routeConfig}
|
||||||
|
routeStore.setBreadcrumbs(currentRoute)
|
||||||
|
|
||||||
determineBreadcrumbs()
|
|
||||||
determineWarning()
|
determineWarning()
|
||||||
determineStylesheets(routeConfig.stylesheetUrls)
|
determineStylesheets(routeConfig.stylesheetUrls)
|
||||||
scrollTo({
|
scrollTo({
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import { type RouteRecordRaw } from 'vue-router'
|
import { type RouteLocationNormalizedLoaded, type RouteRecordRaw } from 'vue-router'
|
||||||
import { routes, siteGlobals } from 'content/routes.js'
|
import { routes, siteGlobals } from 'content/routes.js'
|
||||||
import {
|
import type {
|
||||||
type GalleryListDefinition,
|
GalleryListDefinition,
|
||||||
type HeaderEntry,
|
HeaderEntry,
|
||||||
type ProjectListDefinition,
|
Link,
|
||||||
type RouteDefinition,
|
ProjectListDefinition,
|
||||||
type SiteGlobals,
|
RouteDefinition,
|
||||||
type TemplateType,
|
SiteGlobals,
|
||||||
|
TemplateType,
|
||||||
} from '@goldenwere/static-web-templates-types'
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
const markdownBody = () => import ('./views/markdown/markdown.vue')
|
const markdownBody = () => import ('./views/markdown/markdown.vue')
|
||||||
|
@ -62,7 +63,8 @@ export const useRouteStore = defineStore('routeStore', {
|
||||||
_routes: {} as Record<string, RouteRecordRaw & RouteDefinition>,
|
_routes: {} as Record<string, RouteRecordRaw & RouteDefinition>,
|
||||||
_globals: {} as SiteGlobals,
|
_globals: {} as SiteGlobals,
|
||||||
|
|
||||||
_routesAlreadyWarned: {} as Record<string, boolean>
|
_routesAlreadyWarned: {} as Record<string, boolean>,
|
||||||
|
_breadcrumbs: [] as Link[]
|
||||||
}),
|
}),
|
||||||
actions: {
|
actions: {
|
||||||
doesRouteRememberWarning(route: string) {
|
doesRouteRememberWarning(route: string) {
|
||||||
|
@ -71,6 +73,28 @@ export const useRouteStore = defineStore('routeStore', {
|
||||||
rememberRouteWarning(route: string) {
|
rememberRouteWarning(route: string) {
|
||||||
this._routesAlreadyWarned[route] = true
|
this._routesAlreadyWarned[route] = true
|
||||||
},
|
},
|
||||||
|
setBreadcrumbs(currentRoute: RouteLocationNormalizedLoaded, resolvedTitle?: string) {
|
||||||
|
if (currentRoute.path === '/') {
|
||||||
|
this._breadcrumbs = []
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
const split = currentRoute.path.split('/')
|
||||||
|
split[0] = '/'
|
||||||
|
const paths = [] as string[]
|
||||||
|
split.forEach((val, i) => {
|
||||||
|
const sliced = split.slice(0, i + 1)
|
||||||
|
if (sliced.length > 0) {
|
||||||
|
paths.push(sliced.reduce((prev, curr) => prev === '/' ? `/${curr}` : `${prev}/${curr}`))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this._breadcrumbs = paths.map((path, index) => {
|
||||||
|
return {
|
||||||
|
href: path,
|
||||||
|
caption: index === paths.length - 1 && !!resolvedTitle ? resolvedTitle : this._routes[path]?.title,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,7 @@ onMounted(async () => {
|
||||||
id.value = props.variants[props.variants.length - 1]
|
id.value = props.variants[props.variants.length - 1]
|
||||||
title.value = getTitleFromEntryOrId(entry.value, id.value)
|
title.value = getTitleFromEntryOrId(entry.value, id.value)
|
||||||
document.title = routeSubConfig.fullTitle?.replace('$ENTRY', title.value)
|
document.title = routeSubConfig.fullTitle?.replace('$ENTRY', title.value)
|
||||||
|
routeStore.setBreadcrumbs(currentRoute, title.value)
|
||||||
window.routeSubConfig = {...routeSubConfig}
|
window.routeSubConfig = {...routeSubConfig}
|
||||||
window.routeContentConfig = {...entry.value}
|
window.routeContentConfig = {...entry.value}
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ onMounted(async () => {
|
||||||
const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content)
|
const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content)
|
||||||
content.value = md
|
content.value = md
|
||||||
document.title = routeSubConfig.fullTitle?.replace('$PROJECT', info.value.title)
|
document.title = routeSubConfig.fullTitle?.replace('$PROJECT', info.value.title)
|
||||||
|
routeStore.setBreadcrumbs(currentRoute, info.value.title)
|
||||||
window.routeSubConfig = {...routeSubConfig}
|
window.routeSubConfig = {...routeSubConfig}
|
||||||
window.routeContentConfig = {...info.value}
|
window.routeContentConfig = {...info.value}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue