project-client/src/preload/index.ts

11 lines
518 B
TypeScript
Raw Normal View History

import { contextBridge, ipcRenderer, webFrame } from "electron";
2023-04-05 03:31:44 +00:00
import { GET_RENDERER_SCRIPT, GET_RENDERER_STYLES, GET_VENCORD_PRELOAD_FILE } from "../shared/IpcEvents";
import { VencordDesktopNative } from "./VencordDesktopNative";
2023-04-03 23:35:37 +00:00
contextBridge.exposeInMainWorld("VencordDesktopNative", VencordDesktopNative);
2023-03-30 23:21:06 +00:00
require(ipcRenderer.sendSync(GET_VENCORD_PRELOAD_FILE));
webFrame.executeJavaScript(ipcRenderer.sendSync(GET_RENDERER_SCRIPT));
2023-04-05 03:31:44 +00:00
ipcRenderer.invoke(GET_RENDERER_STYLES).then(s => webFrame.insertCSS(s));