2022-09-03 15:49:16 +00:00
|
|
|
import { addSettingsListener, Settings } from "../api/settings";
|
2022-08-31 02:07:16 +00:00
|
|
|
import IpcEvents from "./IpcEvents";
|
|
|
|
|
2022-09-03 15:49:16 +00:00
|
|
|
let style: HTMLStyleElement;
|
|
|
|
|
|
|
|
export async function toggle(isEnabled: boolean) {
|
|
|
|
if (!style) {
|
|
|
|
if (isEnabled) {
|
|
|
|
style = document.createElement("style");
|
|
|
|
style.id = "vencord-custom-css";
|
|
|
|
document.head.appendChild(style);
|
|
|
|
VencordNative.ipc.on(IpcEvents.QUICK_CSS_UPDATE, (_, css: string) => style.innerText = css);
|
|
|
|
style.innerText = await VencordNative.ipc.invoke(IpcEvents.GET_QUICK_CSS);
|
|
|
|
}
|
|
|
|
} else style.disabled = !isEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
|
|
toggle(Settings.useQuickCss);
|
|
|
|
addSettingsListener("useQuickCss", toggle);
|
2022-08-29 23:42:47 +00:00
|
|
|
});
|