forked from Pooja29Shree/TinkerFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron.js
More file actions
78 lines (63 loc) · 1.93 KB
/
electron.js
File metadata and controls
78 lines (63 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { app, BrowserWindow, nativeTheme, Menu, session } from "electron";
import { spawn } from "child_process";
import waitOn from "wait-on";
let mainWindow;
let servers = [];
function startServer(command, args, options = {}) {
const proc = spawn(command, args, { stdio: "inherit", shell: true, ...options });
servers.push(proc);
}
async function createWindow() {
mainWindow = new BrowserWindow({
width: 1400,
height: 900,
autoHideMenuBar: true,
webPreferences: {
nodeIntegration: false,
contextIsolation: true,
sandbox: false,
webSecurity: true
}
});
// Force light mode
nativeTheme.themeSource = "light";
const frontendURL = "http://localhost:5173";
try {
await waitOn({ resources: [frontendURL], timeout: 30000 });
mainWindow.loadURL(frontendURL);
} catch (err) {
console.error("Frontend server did not start in time:", err);
}
mainWindow.on("closed", () => {
mainWindow = null;
});
}
app.on("ready", () => {
// Disable menu bar
Menu.setApplicationMenu(null);
// Handle media requests
session.defaultSession.setPermissionRequestHandler((webContents, permission, callback) => {
if (permission === "media") {
callback(true);
} else {
callback(false);
}
});
// Some OSes (esp. macOS) need explicit media access flags
app.commandLine.appendSwitch("use-fake-ui-for-media-stream"); // auto-accept mic without prompt
app.commandLine.appendSwitch("enable-features", "MediaStream");
// Start servers
startServer("npm", ["start"], { cwd: "./backend" });
startServer("node", ["terminal.js"], { cwd: "./code_interpreter" });
startServer("npm", ["run", "start-frontend"]);
createWindow();
});
app.on("before-quit", () => {
servers.forEach((proc) => proc.kill());
});
app.on("window-all-closed", () => {
if (process.platform !== "darwin") app.quit();
});
app.on("activate", () => {
if (mainWindow === null) createWindow();
});