begin themeing work

- define themes
- implement global stylesheets
This commit is contained in:
lightling 2024-03-27 18:27:07 -04:00
parent 0a39829748
commit 48b8f132d6
2 changed files with 45 additions and 6 deletions

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

@ -102,13 +102,40 @@ declare module 'content/routes.js' {
} | {
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[],
header: HeaderEntry[]
id: string
stylesheetUrls: string[]
themes: SiteThemeList
warning: WarningModal
}

View file

@ -40,17 +40,28 @@ const determineWarning = () => {
: routeConfig.warning
}
const injectStylesheet = (url: string, className: string) => {
const newElement = document.createElement('link')
newElement.setAttribute('rel', 'stylesheet')
newElement.setAttribute('href', url)
newElement.classList.add(className)
document.head.appendChild(newElement)
}
const determineStylesheets = (stylesheetUrls?: string[]) => {
const staleStylesheets = document.head.querySelectorAll('link[rel="stylesheet"]')
const staleStylesheets = document.head.querySelectorAll('link.page-stylesheet[rel="stylesheet"]')
staleStylesheets.forEach(stylesheet => {
document.head.removeChild(stylesheet)
})
stylesheetUrls?.forEach(stylesheet => {
const newElement = document.createElement('link')
newElement.setAttribute('rel', 'stylesheet')
newElement.setAttribute('href', stylesheet)
document.head.appendChild(newElement)
injectStylesheet(stylesheet, 'page-stylesheet')
})
}
const determineGlobalStylesheets = () => {
globalConfig.stylesheetUrls.forEach(stylesheet => {
injectStylesheet(stylesheet, 'global-stylesheet')
})
}
@ -77,6 +88,7 @@ const onAcknowledgedWarning = () => {
onMounted(async () => {
await refresh()
determineGlobalStylesheets()
router.afterEach(async (to, from) => {
await refresh()
})