diff --git a/src/components/shared/theme-picker.vue b/src/components/shared/theme-picker.vue
new file mode 100644
index 0000000..c7bff93
--- /dev/null
+++ b/src/components/shared/theme-picker.vue
@@ -0,0 +1,39 @@
+
+
+
+.theme-picker
+ select(
+ v-model='currentTheme'
+ @change='onThemeChosen($event)'
+ )
+ option(
+ v-for='(option, key) in options'
+ :value='key'
+ ) {{ option.displayName|| option }}
+
+
+
diff --git a/src/main.vue b/src/main.vue
index 895c38e..8f2f1f4 100644
--- a/src/main.vue
+++ b/src/main.vue
@@ -3,12 +3,14 @@ import { onMounted, ref } from 'vue'
import { useRouter } from 'vue-router'
import { getCurrentRoute } from 'src/utilities/vuetils'
+import { injectStylesheet } from 'src/utilities/dom'
import { storage } from './utilities/fetch'
import { useRouteStore } from 'src/routes'
import type { WarningModal } from 'content/routes.js'
import HeaderLink from 'src/components/shared/header-link.vue'
+import ThemePicker from 'src/components/shared/theme-picker.vue'
import WarningPrompt from 'src/components/shared/warning-prompt.vue'
const router = useRouter()
@@ -40,14 +42,6 @@ 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.page-stylesheet[rel="stylesheet"]')
staleStylesheets.forEach(stylesheet => {
@@ -105,6 +99,7 @@ onMounted(async () => {
v-for='entry in globalConfig.header'
:entry='entry'
)
+ ThemePicker
main(
v-if='ready'
)
diff --git a/src/routes.ts b/src/routes.ts
index 32ee7f2..470010f 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -71,7 +71,7 @@ export const useRouteStore = defineStore('routeStore', {
},
rememberRouteWarning(route: string) {
this._routesAlreadyWarned[route] = true
- }
+ },
},
})
diff --git a/src/utilities/dom.ts b/src/utilities/dom.ts
index d23a4be..4288204 100644
--- a/src/utilities/dom.ts
+++ b/src/utilities/dom.ts
@@ -4,6 +4,21 @@ import { type DateRange } from 'src/types/shared/dateRange'
export const deepCopy = rfdc()
+/**
+ * Injects a stylesheet link into th ehead of the document
+ * @param url the url of the stylesheet
+ * @param className the classname to give the stylesheet
+ */
+export 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)
+
+ return newElement
+}
+
/**
* Runs element.querySelector for every selector in the order they were passed in until an element is found
* @param element the element to query children from