forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
88 lines (69 loc) · 2.19 KB
/
main.js
File metadata and controls
88 lines (69 loc) · 2.19 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
79
80
81
82
83
84
85
86
87
88
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import electron from 'electron';
import activateListeners from './src/helper/listener.js';
import { getLocale } from './src/helper/locale.js';
import createProtocol from './src/helper/protocol.js';
const { app, BrowserWindow, ipcMain, protocol, screen } = electron;
let window;
let locale;
let url;
const dev = !!process.env.APP_DEV;
const __dirname = fileURLToPath(new URL('.', import.meta.url));
if (!dev) {
const scheme = 'app';
protocol.registerSchemesAsPrivileged([{ scheme: scheme, privileges: { standard: true } }]);
createProtocol(scheme, path.join(__dirname, 'dist'));
locale = getLocale();
}
// Fixes rendering glitches on Raspberry Pi + Electron v27+
app.disableHardwareAcceleration();
app.commandLine.appendSwitch('touch-events', 'enabled');
function createWindow() {
// if (!dev) {
// session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
// callback({
// responseHeaders: {
// ...details.responseHeaders,
// "Content-Security-Policy": ["script-src 'self'"],
// },
// });
// });
// }
const mainScreen = screen.getPrimaryDisplay();
window = new BrowserWindow({
width: dev ? 1100 : mainScreen.size.width,
height: dev ? 600 : mainScreen.size.height,
frame: dev,
backgroundColor: '#353b48',
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
contextIsolation: false,
},
icon: fileURLToPath(new URL(`./${dev ? 'src' : 'dist'}/assets/icon/icon.png`, import.meta.url)),
});
if (dev) {
url = 'http://localhost:4200';
let devtools = new BrowserWindow();
window.webContents.setDevToolsWebContents(devtools.webContents);
window.webContents.openDevTools({ mode: 'detach' });
} else {
url = `file://${__dirname}/dist/${locale}/index.html`;
window.setFullScreen(true);
}
window.loadURL(url);
activateListeners(ipcMain, window, app, url);
window.on('closed', () => {
window = null;
});
}
app.on('ready', createWindow);
app.on('window-all-closed', () => {
app.quit();
});
app.on('activate', () => {
if (window === null) {
createWindow();
}
});