2023-09-11 11:55:32 -04:00
|
|
|
/*!
|
|
|
|
* Color mode toggler for Bootstrap's docs (https://getbootstrap.com/)
|
|
|
|
* Copyright 2011-2023 The Bootstrap Authors
|
|
|
|
* Modified by Adam Goldsmith
|
|
|
|
* Licensed under the Creative Commons Attribution 3.0 Unported License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
(() => {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const getStoredTheme = () => localStorage.getItem("theme");
|
|
|
|
const setStoredTheme = (theme) => localStorage.setItem("theme", theme);
|
|
|
|
|
|
|
|
const getPreferredTheme = () => {
|
|
|
|
const storedTheme = getStoredTheme();
|
|
|
|
if (storedTheme) {
|
|
|
|
return storedTheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
return window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
|
|
? "dark"
|
|
|
|
: "light";
|
|
|
|
};
|
|
|
|
|
|
|
|
const setTheme = (theme) => {
|
|
|
|
if (
|
|
|
|
theme === "auto" &&
|
|
|
|
window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
|
|
) {
|
2024-07-23 00:01:29 -04:00
|
|
|
document.documentElement.dataset.bsTheme = "dark";
|
2023-09-11 11:55:32 -04:00
|
|
|
} else {
|
2024-07-23 00:01:29 -04:00
|
|
|
document.documentElement.dataset.bsTheme = theme;
|
2023-09-11 11:55:32 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
setTheme(getPreferredTheme());
|
|
|
|
|
|
|
|
const showActiveTheme = (theme, focus = false) => {
|
|
|
|
const themeSwitcher = document.querySelector("#bd-theme");
|
|
|
|
|
|
|
|
if (!themeSwitcher) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const themeSwitcherText = document.querySelector("#bd-theme-text");
|
|
|
|
const activeThemeIcon = document.querySelector(".theme-icon-active");
|
2024-07-23 00:01:29 -04:00
|
|
|
const buttonToActive = document.querySelector(
|
2023-09-11 11:55:32 -04:00
|
|
|
`[data-bs-theme-value="${theme}"]`,
|
|
|
|
);
|
|
|
|
const activeIcon = [
|
2024-07-23 00:01:29 -04:00
|
|
|
...buttonToActive.querySelector(".theme-icon").classList,
|
2023-09-11 11:55:32 -04:00
|
|
|
].find((c) => c.startsWith("bi-"));
|
|
|
|
|
2024-07-23 00:01:29 -04:00
|
|
|
for (const element of document.querySelectorAll("[data-bs-theme-value]")) {
|
2023-09-11 11:55:32 -04:00
|
|
|
element.classList.remove("active");
|
|
|
|
element.setAttribute("aria-pressed", "false");
|
2024-07-23 00:01:29 -04:00
|
|
|
}
|
2023-09-11 11:55:32 -04:00
|
|
|
|
2024-07-23 00:01:29 -04:00
|
|
|
buttonToActive.classList.add("active");
|
|
|
|
buttonToActive.setAttribute("aria-pressed", "true");
|
|
|
|
for (const icon of activeThemeIcon.classList) {
|
|
|
|
if (icon.startsWith("bi-")) {
|
|
|
|
activeThemeIcon.classList.remove(icon);
|
|
|
|
}
|
|
|
|
}
|
2023-09-11 11:55:32 -04:00
|
|
|
activeThemeIcon.classList.add(activeIcon);
|
2024-07-23 00:01:29 -04:00
|
|
|
const themeSwitcherLabel = `${themeSwitcherText.textContent} (${buttonToActive.dataset.bsThemeValue})`;
|
2023-09-11 11:55:32 -04:00
|
|
|
themeSwitcher.setAttribute("aria-label", themeSwitcherLabel);
|
|
|
|
|
|
|
|
if (focus) {
|
|
|
|
themeSwitcher.focus();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
window
|
|
|
|
.matchMedia("(prefers-color-scheme: dark)")
|
|
|
|
.addEventListener("change", () => {
|
|
|
|
const storedTheme = getStoredTheme();
|
|
|
|
if (storedTheme !== "light" && storedTheme !== "dark") {
|
|
|
|
setTheme(getPreferredTheme());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
window.addEventListener("DOMContentLoaded", () => {
|
2024-07-23 00:01:29 -04:00
|
|
|
console.log(getPreferredTheme());
|
2023-09-11 11:55:32 -04:00
|
|
|
showActiveTheme(getPreferredTheme());
|
|
|
|
|
2024-07-23 00:01:29 -04:00
|
|
|
for (const toggle of document.querySelectorAll("[data-bs-theme-value]")) {
|
2023-09-11 11:55:32 -04:00
|
|
|
toggle.addEventListener("click", () => {
|
2024-07-23 00:01:29 -04:00
|
|
|
const theme = toggle.dataset.bsThemeValue;
|
2023-09-11 11:55:32 -04:00
|
|
|
setStoredTheme(theme);
|
|
|
|
setTheme(theme);
|
|
|
|
showActiveTheme(theme, true);
|
|
|
|
});
|
2024-07-23 00:01:29 -04:00
|
|
|
}
|
2023-09-11 11:55:32 -04:00
|
|
|
});
|
|
|
|
})();
|