-
-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathmain.js
81 lines (69 loc) · 1.87 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
const {
app,
BrowserWindow
} = require("electron");
const url = require('url')
const path = require('path')
const Store = require('electron-store');
const store = new Store();
const args = process.argv.slice(1);
const dev = args.some(val => val === '--serve');
const big = args.some(val => val === '--big')
let window;
let config;
function createWindow() {
config = store.get("config");
store.onDidChange("config", (newValue, _) => {
config = newValue
})
const {
screen
} = require('electron')
const mainScreen = screen.getPrimaryDisplay();
window = new BrowserWindow({
width: dev ? big ? 1400 : 1080 : mainScreen.size.width,
height: dev ? big ? 502 : 342 : mainScreen.size.height,
frame: dev ? true : false,
backgroundColor: '#353b48',
webPreferences: {
nodeIntegration: true
},
icon: path.join(__dirname, 'src/assets/icon.png')
})
config = store.get("config")
if (dev) {
require('electron-reload')(__dirname, {
electron: require(`${__dirname}/node_modules/electron`)
});
window.loadURL('http://localhost:4200');
} else {
window.loadURL(url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true
}));
}
if (!dev) {
window.setFullScreen(true)
} else {
window.webContents.openDevTools();
}
setTimeout(sendVersionInfo, 42 * 1000);
window.on('closed', () => {
window = null;
});
}
function sendVersionInfo() {
window.webContents.send("versionInformation", {
version: process.env.npm_package_version
})
}
app.on('ready', createWindow)
app.on("window-all-closed", () => {
app.quit()
});
app.on("activate", () => {
if (window === null) {
createWindow();
}
});