Vencord/src/preload.ts

65 lines
2.3 KiB
TypeScript
Raw Normal View History

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/>.
*/
import { debounce } from "@utils/debounce";
2023-01-24 12:50:02 +00:00
import { contextBridge, webFrame } from "electron";
2023-01-14 01:15:17 +00:00
import { readFileSync, watch } from "fs";
2022-08-29 00:25:27 +00:00
import { join } from "path";
2022-10-22 16:18:41 +00:00
import VencordNative from "./VencordNative";
2022-08-29 16:11:44 +00:00
contextBridge.exposeInMainWorld("VencordNative", VencordNative);
2022-08-29 00:25:27 +00:00
2023-04-09 02:04:02 +00:00
// Discord
2022-10-22 02:41:33 +00:00
if (location.protocol !== "data:") {
2023-04-09 02:04:02 +00:00
// #region cssInsert
const rendererCss = join(__dirname, "renderer.css");
2023-04-09 02:04:02 +00:00
const style = document.createElement("style");
style.id = "vencord-css-core";
style.textContent = readFileSync(rendererCss, "utf-8");
2023-04-09 02:04:02 +00:00
if (document.readyState === "complete") {
document.documentElement.appendChild(style);
} else {
document.addEventListener("DOMContentLoaded", () => document.documentElement.appendChild(style), {
once: true
});
}
2023-01-24 12:50:02 +00:00
if (IS_DEV) {
// persistent means keep process running if watcher is the only thing still running
// which we obviously don't want
watch(rendererCss, { persistent: false }, () => {
document.getElementById("vencord-css-core")!.textContent = readFileSync(rendererCss, "utf-8");
});
}
2023-04-09 02:04:02 +00:00
// #endregion
2023-04-09 02:04:02 +00:00
if (process.env.DISCORD_PRELOAD) {
webFrame.executeJavaScript(readFileSync(join(__dirname, "renderer.js"), "utf-8"));
require(process.env.DISCORD_PRELOAD);
2023-04-09 02:04:02 +00:00
}
} // Monaco popout
else {
contextBridge.exposeInMainWorld("setCss", debounce(VencordNative.quickCss.set));
contextBridge.exposeInMainWorld("getCurrentCss", VencordNative.quickCss.get);
2022-10-22 02:41:33 +00:00
// shrug
contextBridge.exposeInMainWorld("getTheme", () => "vs-dark");
}