From 64c435dd7cb44a61480ceb339433eb3dad09b6d6 Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 16 May 2024 01:14:47 -0400 Subject: [PATCH] create breadcrumbs --- libs/types/src/config/routing.d.ts | 1 + projects/frontend/src/main.vue | 57 ++++++++++++++++--- .../src/views/gallery/gallery-list.vue | 2 +- .../src/views/gallery/gallery-view.vue | 2 +- .../frontend/src/views/markdown/markdown.vue | 2 +- .../src/views/project/project-list.vue | 2 +- .../src/views/project/project-view.vue | 2 +- 7 files changed, 56 insertions(+), 12 deletions(-) diff --git a/libs/types/src/config/routing.d.ts b/libs/types/src/config/routing.d.ts index 30f3af6..52bfd2b 100644 --- a/libs/types/src/config/routing.d.ts +++ b/libs/types/src/config/routing.d.ts @@ -11,6 +11,7 @@ export type SharedRouteDefinition = { stylesheetUrls: string[] template: TemplateType title: string + fullTitle: string warning: boolean | WarningModal } diff --git a/projects/frontend/src/main.vue b/projects/frontend/src/main.vue index 5bb9a1d..aa2052f 100644 --- a/projects/frontend/src/main.vue +++ b/projects/frontend/src/main.vue @@ -1,5 +1,5 @@ diff --git a/projects/frontend/src/views/project/project-list.vue b/projects/frontend/src/views/project/project-list.vue index 4df80ab..b6e4de8 100644 --- a/projects/frontend/src/views/project/project-list.vue +++ b/projects/frontend/src/views/project/project-list.vue @@ -57,7 +57,7 @@ onMounted(async () => { const id = projectIds.value[i] projects.value[id] = await fetchAndParseYaml(config.value.projects[id].config) } - document.title = routeConfig.title + document.title = routeConfig.fullTitle ready.value = true }) diff --git a/projects/frontend/src/views/project/project-view.vue b/projects/frontend/src/views/project/project-view.vue index adcd2a2..d1237c8 100644 --- a/projects/frontend/src/views/project/project-view.vue +++ b/projects/frontend/src/views/project/project-view.vue @@ -32,7 +32,7 @@ onMounted(async () => { info.value = await fetchAndParseYaml(config.projects[currentRoute.query.id as string].config) const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content) content.value = md - document.title = routeSubConfig.title.replace('$PROJECT', info.value.title) + document.title = routeSubConfig.fullTitle?.replace('$PROJECT', info.value.title) window.routeSubConfig = {...routeSubConfig} window.routeContentConfig = {...info.value}