add header

This commit is contained in:
lightling 2024-03-13 01:09:44 -04:00
parent 0c52ea0bdd
commit 86b6c6ba89
5 changed files with 48 additions and 2 deletions

View file

@ -0,0 +1,23 @@
<script setup lang="ts">
import { type HeaderEntry } from 'content/routes.js'
defineProps<{
entry: HeaderEntry,
}>()
</script>
<template lang="pug">
li.header-entry
span(
v-if='entry.children'
) {{ entry.displayName }}
ul
HeaderLink(
v-for='entry in entry.children'
:entry='entry'
)
a(
v-else
:href='entry.path'
) {{ entry.displayName }}
</template>

10
src/content-env.d.ts vendored
View file

@ -19,4 +19,14 @@ declare module 'content/routes.js' {
type RouteCollection = { [key: string]: RouteDefinition }
const routes: RouteCollection
type HeaderEntry = {
displayName: string
} & ({
path: string
} | {
children: HeaderEntry[]
})
const header: HeaderEntry[]
}

View file

@ -6,7 +6,7 @@ import main from './main.vue'
import './main.sass'
import { createRoutes, useRouteStore } from './routes'
import { routes as appRoutes, type RouteDefinition } from 'content/routes.js'
import { routes as appRoutes, header, type RouteDefinition } from 'content/routes.js'
export const createApp = ViteSSG(
// the root component
@ -23,5 +23,6 @@ export const createApp = ViteSSG(
...appRoutes[route] as RouteDefinition,
}
)
routeStore._header = header
},
)

View file

@ -4,11 +4,14 @@ import { useRoute } from 'vue-router'
import { useRouteStore } from 'src/routes'
import HeaderLink from 'src/components/shared/header-link.vue'
const ready = ref(false)
const currentRoute = useRoute()
const routeStore = useRouteStore()
const routeConfig = routeStore._routes[currentRoute.path]
const headerConfig = routeStore._header
const init = async () => {
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')
@ -30,6 +33,14 @@ init()
<template lang="pug">
#main-container
header(
v-if='ready && !!headerConfig'
)
ul
HeaderLink(
v-for='entry in headerConfig'
:entry='entry'
)
#main-entry(
v-if='ready'
)

View file

@ -1,6 +1,6 @@
import { defineStore } from 'pinia'
import { type RouteRecordRaw } from 'vue-router'
import { routes, type RouteDefinition, type Template } from 'content/routes.js'
import { routes, type HeaderEntry, type RouteDefinition, type Template } from 'content/routes.js'
const markdownBody = () => import ('./views/markdown.vue')
@ -24,6 +24,7 @@ export const createRoutes = (): RouteRecordRaw[] => {
export const useRouteStore = defineStore('routeStore', {
state: () => ({
_header: [] as HeaderEntry[],
_routes: {} as Record<string, RouteRecordRaw & RouteDefinition>,
}),
actions: {