mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-24 22:10:39 +00:00
cb45e5a57e
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
import Storage from "store2"
|
|
import { TOGGLE_COLOR_THEMES, THEME, COLOR_THEME_AUTO } from "./config.js"
|
|
;(() => {
|
|
applyTheme()
|
|
})()
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
const colorThemeToggle = document.getElementById("gblog-color-theme")
|
|
|
|
colorThemeToggle.onclick = function () {
|
|
let lstore = Storage.namespace(THEME)
|
|
let currentColorTheme = lstore.get("color-theme") || COLOR_THEME_AUTO
|
|
let nextColorTheme = toggle(TOGGLE_COLOR_THEMES, currentColorTheme)
|
|
|
|
lstore.set("color-theme", TOGGLE_COLOR_THEMES[nextColorTheme])
|
|
applyTheme(false)
|
|
}
|
|
})
|
|
|
|
function applyTheme(init = true) {
|
|
if (Storage.isFake()) return
|
|
|
|
let lstore = Storage.namespace(THEME)
|
|
let html = document.documentElement
|
|
let currentColorTheme = TOGGLE_COLOR_THEMES.includes(lstore.get("color-theme"))
|
|
? lstore.get("color-theme")
|
|
: COLOR_THEME_AUTO
|
|
|
|
html.setAttribute("class", "color-toggle-" + currentColorTheme)
|
|
|
|
if (currentColorTheme === COLOR_THEME_AUTO) {
|
|
html.removeAttribute("color-theme")
|
|
} else {
|
|
html.setAttribute("color-theme", currentColorTheme)
|
|
}
|
|
|
|
if (!init) {
|
|
// Reload required to re-initialise e.g. Mermaid with the new theme
|
|
// and re-parse the Mermaid code blocks.
|
|
location.reload()
|
|
}
|
|
}
|
|
|
|
function toggle(list = [], value) {
|
|
let current = list.indexOf(value)
|
|
let max = list.length - 1
|
|
let next = 0
|
|
|
|
if (current < max) {
|
|
next = current + 1
|
|
}
|
|
|
|
return next
|
|
}
|