forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
89 lines (70 loc) · 2.16 KB
/
main.js
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
89
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable import/no-commonjs */
require('v8-compile-cache');
const { app, BrowserWindow, ipcMain, protocol, screen, session } = require('electron');
const path = require('path');
const Store = require('electron-store');
const args = process.argv.slice(1);
const big = args.some(val => val === '--big');
const dev = args.some(val => val === '--serve');
const activateListeners = require('./helper/listener');
let window;
let locale;
let url;
if (!dev) {
const createProtocol = require('./helper/protocol');
const scheme = 'app';
protocol.registerSchemesAsPrivileged([{ scheme: scheme, privileges: { standard: true } }]);
createProtocol(scheme, path.join(__dirname, 'dist'));
locale = require('./helper/locale.js').getLocale();
}
app.commandLine.appendSwitch('touch-events', 'enabled');
function createWindow() {
const _store = new Store();
if (!dev) {
session.defaultSession.webRequest.onHeadersReceived((details, callback) => {
callback({
responseHeaders: {
...details.responseHeaders,
// TODO: re-enable
// "Content-Security-Policy": ["script-src 'self'"],
},
});
});
}
const mainScreen = screen.getPrimaryDisplay();
window = new BrowserWindow({
width: dev ? (big ? 1500 : 1200) : mainScreen.size.width,
height: dev ? (big ? 600 : 450) : mainScreen.size.height,
frame: dev,
backgroundColor: '#353b48',
webPreferences: {
nodeIntegration: true,
enableRemoteModule: true,
worldSafeExecuteJavaScript: true,
contextIsolation: false,
},
icon: path.join(__dirname, 'dist', 'assets', 'icon', 'icon.png'),
});
if (dev) {
url = 'http://localhost:4200';
window.webContents.openDevTools();
} 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();
}
});