-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
47 lines (39 loc) · 972 Bytes
/
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
'use strict';
// eslint-disable-next-line import/no-unresolved
const { app, BrowserWindow } = require('electron');
const server = require('./server');
const config = require('./config');
let mainWindow;
function createWindow() {
mainWindow = new BrowserWindow({
width: 600,
height: 600,
center: true,
resizable: false,
frame: false,
webPreferences: {
blinkFeatures: 'OverlayScrollbars',
overlayScrollbars: true
}
});
if (process.env.NODE_ENV !== 'production') {
mainWindow.webContents.openDevTools();
} else {
server.listen(config.react.frontend.port);
}
mainWindow.loadURL(`http://localhost:${config.react.frontend.port}`);
mainWindow.on('closed', () => {
mainWindow = null;
});
}
app.on('ready', createWindow);
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
if (mainWindow === null) {
createWindow();
}
});