2022-10-21 23:17:06 +00: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/>.
|
|
|
|
*/
|
|
|
|
|
2022-11-28 12:37:55 +00:00
|
|
|
import { addSettingsListener, Settings } from "@api/settings";
|
|
|
|
|
2022-08-31 02:07:16 +00:00
|
|
|
|
2022-09-03 15:49:16 +00:00
|
|
|
let style: HTMLStyleElement;
|
2022-12-01 02:01:44 +00:00
|
|
|
let themesStyle: HTMLStyleElement;
|
2022-09-03 15:49:16 +00:00
|
|
|
|
|
|
|
export async function toggle(isEnabled: boolean) {
|
|
|
|
if (!style) {
|
|
|
|
if (isEnabled) {
|
|
|
|
style = document.createElement("style");
|
|
|
|
style.id = "vencord-custom-css";
|
|
|
|
document.head.appendChild(style);
|
2023-05-02 00:50:51 +00:00
|
|
|
VencordNative.quickCss.addChangeListener(css => style.textContent = css);
|
|
|
|
style.textContent = await VencordNative.quickCss.get();
|
2022-09-03 15:49:16 +00:00
|
|
|
}
|
2023-01-22 03:29:58 +00:00
|
|
|
} else
|
2022-10-09 20:58:08 +00:00
|
|
|
style.disabled = !isEnabled;
|
2022-09-03 15:49:16 +00:00
|
|
|
}
|
|
|
|
|
2022-12-01 02:01:44 +00:00
|
|
|
async function initThemes() {
|
|
|
|
if (!themesStyle) {
|
|
|
|
themesStyle = document.createElement("style");
|
|
|
|
themesStyle.id = "vencord-themes";
|
|
|
|
document.head.appendChild(themesStyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
const { themeLinks } = Settings;
|
|
|
|
const links = themeLinks.map(link => `@import url("${link.trim()}");`).join("\n");
|
|
|
|
themesStyle.textContent = links;
|
|
|
|
}
|
|
|
|
|
2022-09-03 15:49:16 +00:00
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
|
|
toggle(Settings.useQuickCss);
|
|
|
|
addSettingsListener("useQuickCss", toggle);
|
2022-12-01 02:01:44 +00:00
|
|
|
|
|
|
|
initThemes();
|
|
|
|
addSettingsListener("themeLinks", initThemes);
|
2022-08-29 23:42:47 +00:00
|
|
|
});
|