create breadcrumbs

This commit is contained in:
lightling 2024-05-16 01:14:47 -04:00
parent 75228e1a3a
commit 64c435dd7c
7 changed files with 56 additions and 12 deletions

View file

@ -11,6 +11,7 @@ export type SharedRouteDefinition = {
stylesheetUrls: string[] stylesheetUrls: string[]
template: TemplateType template: TemplateType
title: string title: string
fullTitle: string
warning: boolean | WarningModal warning: boolean | WarningModal
} }

View file

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { onMounted, ref } from 'vue' import { computed, onMounted, ref } from 'vue'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { getCurrentRoute } from 'src/utilities/vuetils' import { getCurrentRoute } from 'src/utilities/vuetils'
@ -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 { RoutedWindow, WarningModal } from '@goldenwere/static-web-templates-types' import type { Link, RoutedWindow, 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'
@ -29,6 +29,7 @@ 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 determineWarning = () => { const determineWarning = () => {
if (!routeConfig.warning || routeStore.doesRouteRememberWarning(currentRoute.path)) { if (!routeConfig.warning || routeStore.doesRouteRememberWarning(currentRoute.path)) {
@ -74,6 +75,29 @@ 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
@ -84,6 +108,7 @@ const refresh = async () => {
window.routeConfig = {...routeConfig} window.routeConfig = {...routeConfig}
determineBreadcrumbs()
determineWarning() determineWarning()
determineStylesheets(routeConfig.stylesheetUrls) determineStylesheets(routeConfig.stylesheetUrls)
scrollTo({ scrollTo({
@ -128,12 +153,30 @@ onMounted(async () => {
header( header(
v-if='firstInit && !!globalConfig.header' v-if='firstInit && !!globalConfig.header'
) )
ul nav#header-nav
HeaderLink( ul
v-for='entry in globalConfig.header' HeaderLink(
:entry='entry' v-for='entry in globalConfig.header'
:entry='entry'
)
nav#header-breadcrumb(
v-if='breadcrumbs.length > 0'
)
span.breadcrumb(
v-for='(breadcrumb, i) in breadcrumbs'
) )
ThemePicker span(
v-if='breadcrumbs.length === 1 || i === breadcrumbs.length - 1'
) {{ breadcrumb.caption }}
span(
v-else
)
a(
:href='breadcrumb.href'
) {{ breadcrumb.caption }}
span /
#header-controls
ThemePicker
main( main(
v-if='ready' v-if='ready'
) )

View file

@ -157,7 +157,7 @@ const resetTags = () => {
onMounted(async () => { onMounted(async () => {
ready.value = false ready.value = false
config = await fetchAndParseYaml<GalleryList>(routeConfig.config) config = await fetchAndParseYaml<GalleryList>(routeConfig.config)
document.title = routeConfig.title document.title = routeConfig.fullTitle
hideWarnings.value = storage.read(`${storageId}::hideWarnings`) || false hideWarnings.value = storage.read(`${storageId}::hideWarnings`) || false
onDisplayEntries() onDisplayEntries()
ready.value = true ready.value = true

View file

@ -50,7 +50,7 @@ onMounted(async () => {
entry.value = currentEntries[props.variants[props.variants.length - 1]] entry.value = currentEntries[props.variants[props.variants.length - 1]]
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.title.replace('$ENTRY', title.value) document.title = routeSubConfig.fullTitle?.replace('$ENTRY', title.value)
window.routeSubConfig = {...routeSubConfig} window.routeSubConfig = {...routeSubConfig}
window.routeContentConfig = {...entry.value} window.routeContentConfig = {...entry.value}

View file

@ -19,7 +19,7 @@ const routeConfig = routeStore._routes[currentRoute.path] as MarkdownDefinition
onMounted(async () => { onMounted(async () => {
content.value = await fetchAndParseMarkdown(routeConfig.content) content.value = await fetchAndParseMarkdown(routeConfig.content)
document.title = routeConfig.title document.title = routeConfig.fullTitle
emits('loaded') emits('loaded')
}) })
</script> </script>

View file

@ -57,7 +57,7 @@ onMounted(async () => {
const id = projectIds.value[i] const id = projectIds.value[i]
projects.value[id] = await fetchAndParseYaml(config.value.projects[id].config) projects.value[id] = await fetchAndParseYaml(config.value.projects[id].config)
} }
document.title = routeConfig.title document.title = routeConfig.fullTitle
ready.value = true ready.value = true
}) })
</script> </script>

View file

@ -32,7 +32,7 @@ onMounted(async () => {
info.value = await fetchAndParseYaml<ProjectListingInfo>(config.projects[currentRoute.query.id as string].config) info.value = await fetchAndParseYaml<ProjectListingInfo>(config.projects[currentRoute.query.id as string].config)
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.title.replace('$PROJECT', info.value.title) document.title = routeSubConfig.fullTitle?.replace('$PROJECT', info.value.title)
window.routeSubConfig = {...routeSubConfig} window.routeSubConfig = {...routeSubConfig}
window.routeContentConfig = {...info.value} window.routeContentConfig = {...info.value}