-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
73 lines (61 loc) · 1.56 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
const electron = require("electron");
const runServer = require("./express-server/app");
runServer();
// SET ENV
process.env.NODE_ENV = "production";
const { app, BrowserWindow, Menu } = electron;
let mainWindow;
//! Fix proxy issue which delays sending the request to Express
app.commandLine.appendSwitch("no-proxy-server");
// Listen for app to be ready
app.on("ready", function() {
// Create new window and start maximized
mainWindow = new BrowserWindow({ show: false });
mainWindow.maximize();
mainWindow.show();
// Load mainWindow
mainWindow.loadURL("http://localhost:3000");
// Quit app when closed
mainWindow.on("closed", function() {
app.quit();
});
// Build menu from template
const mainMenu = Menu.buildFromTemplate(mainMenuTemplate);
// Insert menu
Menu.setApplicationMenu(mainMenu);
});
// Create menu template
const mainMenuTemplate = [
{
label: "View",
submenu: [
{ role: "resetzoom" },
{ role: "zoomin" },
{ role: "zoomout" },
{ role: "togglefullscreen" }
]
},
{
label: "Reset",
role: "reload"
}
];
// If OSX, add empty object to menu
if (process.platform == "darwin") {
mainMenuTemplate.unshift({});
}
// Add developer tools option if in dev
if (process.env.NODE_ENV !== "production") {
mainMenuTemplate.push({
label: "Developer Tools",
submenu: [
{
label: "Toggle DevTools",
accelerator: process.platform == "darwin" ? "Command+I" : "Ctrl+I",
click(item, focusedWindow) {
focusedWindow.toggleDevTools();
}
}
]
});
}