forked from cedoor/mindmapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
58 lines (44 loc) · 1.2 KB
/
app.js
File metadata and controls
58 lines (44 loc) · 1.2 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
const electron = require("electron");
const {app, BrowserWindow} = electron;
const path = require("path");
const args = process.argv.slice(1);
const dev = args.some(val => val === "--dev");
if (dev) {
require("electron-reload")(__dirname, {});
}
function createMainWindow({width, height}) {
const indexPath = path.join("file://", __dirname, "dist/index.html");
let mainWindow = new BrowserWindow({
icon: __dirname + "/resources/icons/128x128.png",
x: 0,
y: 0,
width,
height,
minWidth: 900,
minHeight: 600,
autoHideMenuBar: true,
webPreferences: {
nodeIntegration: true,
}
});
mainWindow.setMenu(null);
mainWindow.loadURL(indexPath);
if (dev) {
mainWindow.webContents.openDevTools();
}
mainWindow.on("closed", () => {
mainWindow = null;
});
}
app.on("ready", () => {
let screenSize = electron.screen.getPrimaryDisplay().bounds;
createMainWindow(screenSize);
});
app.on("window-all-closed", () => {
if (process.platform !== "darwin") {
app.quit();
}
});
// Share process arguments
global.arguments = process.argv;
require("./main/update");