mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 12:50:45 +00:00
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
const Storage = require("store2")
|
|
const { TOGGLE_COLOR_THEMES, THEME, COLOR_THEME_AUTO } = require("./config.js")
|
|
|
|
;(() => {
|
|
applyTheme()
|
|
})()
|
|
|
|
document.addEventListener("DOMContentLoaded", (event) => {
|
|
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
|
|
}
|