| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- app.Settings = class Settings {
- static PREFERENCE_KEYS = [
- "hideDisabled",
- "hideIntro",
- "manualUpdate",
- "fastScroll",
- "arrowScroll",
- "analyticsConsent",
- "docs",
- "dark", // legacy
- "theme",
- "layout",
- "size",
- "tips",
- "noAutofocus",
- "autoInstall",
- "spaceScroll",
- "spaceTimeout",
- ];
- static INTERNAL_KEYS = ["count", "schema", "version", "news"];
- static LAYOUTS = [
- "_max-width",
- "_sidebar-hidden",
- "_native-scrollbars",
- "_text-justify-hyphenate",
- ];
- static defaults = {
- count: 0,
- hideDisabled: false,
- hideIntro: false,
- news: 0,
- manualUpdate: false,
- schema: 1,
- analyticsConsent: false,
- theme: "auto",
- spaceScroll: 1,
- spaceTimeout: 0.5,
- };
- constructor() {
- this.store = new CookiesStore();
- this.cache = {};
- this.autoSupported =
- window.matchMedia("(prefers-color-scheme)").media !== "not all";
- if (this.autoSupported) {
- this.darkModeQuery = window.matchMedia("(prefers-color-scheme: dark)");
- this.darkModeQuery.addListener(() => this.setTheme(this.get("theme")));
- }
- }
- get(key) {
- let left;
- if (this.cache.hasOwnProperty(key)) {
- return this.cache[key];
- }
- this.cache[key] =
- (left = this.store.get(key)) != null
- ? left
- : this.constructor.defaults[key];
- if (key === "theme" && this.cache[key] === "auto" && !this.darkModeQuery) {
- return (this.cache[key] = "default");
- } else {
- return this.cache[key];
- }
- }
- set(key, value) {
- this.store.set(key, value);
- delete this.cache[key];
- if (key === "theme") {
- this.setTheme(value);
- }
- }
- del(key) {
- this.store.del(key);
- delete this.cache[key];
- }
- hasDocs() {
- try {
- return !!this.store.get("docs");
- } catch (error) {}
- }
- getDocs() {
- return this.store.get("docs")?.split("/") || app.config.default_docs;
- }
- setDocs(docs) {
- this.set("docs", docs.join("/"));
- }
- getTips() {
- return this.store.get("tips")?.split("/") || [];
- }
- setTips(tips) {
- this.set("tips", tips.join("/"));
- }
- setLayout(name, enable) {
- this.toggleLayout(name, enable);
- const layout = (this.store.get("layout") || "").split(" ");
- $.arrayDelete(layout, "");
- if (enable) {
- if (!layout.includes(name)) {
- layout.push(name);
- }
- } else {
- $.arrayDelete(layout, name);
- }
- if (layout.length > 0) {
- this.set("layout", layout.join(" "));
- } else {
- this.del("layout");
- }
- }
- hasLayout(name) {
- const layout = (this.store.get("layout") || "").split(" ");
- return layout.includes(name);
- }
- setSize(value) {
- this.set("size", value);
- }
- dump() {
- return this.store.dump();
- }
- export() {
- const data = this.dump();
- for (var key of Settings.INTERNAL_KEYS) {
- delete data[key];
- }
- return data;
- }
- import(data) {
- let key, value;
- const object = this.export();
- for (key in object) {
- value = object[key];
- if (!data.hasOwnProperty(key)) {
- this.del(key);
- }
- }
- for (key in data) {
- value = data[key];
- if (Settings.PREFERENCE_KEYS.includes(key)) {
- this.set(key, value);
- }
- }
- }
- reset() {
- this.store.reset();
- this.cache = {};
- }
- initLayout() {
- if (this.get("dark") === 1) {
- this.set("theme", "dark");
- this.del("dark");
- }
- this.setTheme(this.get("theme"));
- for (var layout of app.Settings.LAYOUTS) {
- this.toggleLayout(layout, this.hasLayout(layout));
- }
- this.initSidebarWidth();
- }
- setTheme(theme) {
- if (theme === "auto") {
- theme = this.darkModeQuery.matches ? "dark" : "default";
- }
- const { classList } = document.documentElement;
- classList.remove("_theme-default", "_theme-dark");
- classList.add("_theme-" + theme);
- this.updateColorMeta();
- }
- updateColorMeta() {
- const color = getComputedStyle(document.documentElement)
- .getPropertyValue("--headerBackground")
- .trim();
- $("meta[name=theme-color]").setAttribute("content", color);
- }
- toggleLayout(layout, enable) {
- const { classList } = document.body;
- // sidebar is always shown for settings; its state is updated in app.views.Settings
- if (layout !== "_sidebar-hidden" || !app.router?.isSettings) {
- classList.toggle(layout, enable);
- }
- classList.toggle("_overlay-scrollbars", $.overlayScrollbarsEnabled());
- }
- initSidebarWidth() {
- const size = this.get("size");
- if (size) {
- document.documentElement.style.setProperty("--sidebarWidth", size + "px");
- }
- }
- };
|