2021-11-24 22:17:41 +01:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
2022-02-04 09:36:34 +01:00
|
|
|
import { get, readable } from "svelte/store";
|
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
import { registerPackage } from "../lib/runtime-require";
|
2021-11-24 22:17:41 +01:00
|
|
|
|
|
|
|
interface ThemeInfo {
|
|
|
|
isDark: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getThemeFromRoot(): ThemeInfo {
|
|
|
|
return {
|
|
|
|
isDark: document.documentElement.classList.contains("night-mode"),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
let setPageTheme: ((theme: ThemeInfo) => void) | null = null;
|
|
|
|
/// The current theme that applies to this document/shadow root. When
|
|
|
|
/// previewing cards in the card layout screen, this may not match the
|
|
|
|
/// theme Anki is using in its UI.
|
|
|
|
export const pageTheme = readable(getThemeFromRoot(), (set) => {
|
|
|
|
setPageTheme = set;
|
|
|
|
});
|
|
|
|
// ensure setPageTheme is set immediately
|
|
|
|
get(pageTheme);
|
|
|
|
|
|
|
|
// Update theme when root element's class changes.
|
|
|
|
const observer = new MutationObserver((_mutationsList, _observer) => {
|
|
|
|
setPageTheme!(getThemeFromRoot());
|
|
|
|
});
|
|
|
|
observer.observe(document.documentElement, { attributeFilter: ["class"] });
|
|
|
|
|
|
|
|
registerPackage("anki/theme", {
|
|
|
|
pageTheme,
|
|
|
|
});
|