2022-10-21 19:17:06 -04:00
|
|
|
/*
|
|
|
|
* Vencord, a modification for Discord's desktop app
|
|
|
|
* Copyright (c) 2022 Vendicated and contributors
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-05-05 19:36:00 -04:00
|
|
|
import { addSettingsListener, Settings } from "@api/Settings";
|
2022-11-28 07:37:55 -05:00
|
|
|
|
2022-08-30 22:07:16 -04:00
|
|
|
|
2022-09-03 11:49:16 -04:00
|
|
|
let style: HTMLStyleElement;
|
2022-11-30 21:01:44 -05:00
|
|
|
let themesStyle: HTMLStyleElement;
|
2022-09-03 11:49:16 -04:00
|
|
|
|
2023-09-25 12:53:10 -04:00
|
|
|
function createStyle(id: string) {
|
|
|
|
const style = document.createElement("style");
|
|
|
|
style.id = id;
|
|
|
|
document.documentElement.append(style);
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function initSystemValues() {
|
|
|
|
const values = await VencordNative.themes.getSystemValues();
|
|
|
|
const variables = Object.entries(values)
|
|
|
|
.filter(([, v]) => v !== "#")
|
|
|
|
.map(([k, v]) => `--${k}: ${v};`)
|
|
|
|
.join("");
|
|
|
|
|
|
|
|
createStyle("vencord-os-theme-values").textContent = `:root{${variables}}`;
|
|
|
|
}
|
|
|
|
|
2022-09-03 11:49:16 -04:00
|
|
|
export async function toggle(isEnabled: boolean) {
|
|
|
|
if (!style) {
|
|
|
|
if (isEnabled) {
|
2023-09-25 12:53:10 -04:00
|
|
|
style = createStyle("vencord-custom-css");
|
2023-07-07 21:13:32 -04:00
|
|
|
VencordNative.quickCss.addChangeListener(css => {
|
|
|
|
style.textContent = css;
|
|
|
|
// At the time of writing this, changing textContent resets the disabled state
|
|
|
|
style.disabled = !Settings.useQuickCss;
|
|
|
|
});
|
2023-05-01 20:50:51 -04:00
|
|
|
style.textContent = await VencordNative.quickCss.get();
|
2022-09-03 11:49:16 -04:00
|
|
|
}
|
2023-01-21 22:29:58 -05:00
|
|
|
} else
|
2022-10-09 16:58:08 -04:00
|
|
|
style.disabled = !isEnabled;
|
2022-09-03 11:49:16 -04:00
|
|
|
}
|
|
|
|
|
2022-11-30 21:01:44 -05:00
|
|
|
async function initThemes() {
|
2023-09-25 12:53:10 -04:00
|
|
|
themesStyle ??= createStyle("vencord-themes");
|
2022-11-30 21:01:44 -05:00
|
|
|
|
2023-08-04 13:52:20 -04:00
|
|
|
const { themeLinks, enabledThemes } = Settings;
|
|
|
|
|
|
|
|
const links: string[] = [...themeLinks];
|
|
|
|
|
|
|
|
if (IS_WEB) {
|
|
|
|
for (const theme of enabledThemes) {
|
|
|
|
const themeData = await VencordNative.themes.getThemeData(theme);
|
|
|
|
if (!themeData) continue;
|
|
|
|
const blob = new Blob([themeData], { type: "text/css" });
|
|
|
|
links.push(URL.createObjectURL(blob));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const localThemes = enabledThemes.map(theme => `vencord:///themes/${theme}?v=${Date.now()}`);
|
|
|
|
links.push(...localThemes);
|
|
|
|
}
|
|
|
|
|
|
|
|
themesStyle.textContent = links.map(link => `@import url("${link.trim()}");`).join("\n");
|
2022-11-30 21:01:44 -05:00
|
|
|
}
|
|
|
|
|
2022-09-03 11:49:16 -04:00
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
2023-09-25 12:53:10 -04:00
|
|
|
initSystemValues();
|
2023-08-04 14:08:13 -04:00
|
|
|
initThemes();
|
|
|
|
|
2022-09-03 11:49:16 -04:00
|
|
|
toggle(Settings.useQuickCss);
|
|
|
|
addSettingsListener("useQuickCss", toggle);
|
2022-11-30 21:01:44 -05:00
|
|
|
|
|
|
|
addSettingsListener("themeLinks", initThemes);
|
2023-08-04 13:52:20 -04:00
|
|
|
addSettingsListener("enabledThemes", initThemes);
|
|
|
|
|
|
|
|
if (!IS_WEB)
|
|
|
|
VencordNative.quickCss.addThemeChangeListener(initThemes);
|
2022-08-29 19:42:47 -04:00
|
|
|
});
|