This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.js
63 lines (51 loc) · 1.54 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
const electron = require('electron');
const url = require('url');
const path = require('path');
const {app, BrowserWindow, Menu, ipcMain, dialog} = electron;
// Set ENV (Uncomment for the final product)
//process.env.NODE_ENV = 'production';
let mainWindow;
let addWindow;
// Listen for app to be ready
app.on('ready', function(){
// Create new window
mainWindow = new BrowserWindow({width: 1920, height:900});
// Load html into window
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, '/mainWindow.html'),
protocol: 'file:',
slashes: true
}));
// Quit app when closed
mainWindow.on('closed', function(){
app.quit();
});
// // Build menu from template
// const mainMenu = Menu.buildFromTemplate(mainMenuTemplate);
// // Insert Menu
// Menu.setApplicationMenu(mainMenu);
//require('./js/mainmenu');
});
// If mac, add empty object to menu
// already added in mainmenu.js => could manipulate later
// if(process.platform == 'darwin'){
// mainMenuTemplate.unshift({});
// }
// Add developer tools item if not in prod
// 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();
// }
// },
// {
// role: 'reload'
// }
// ]
// });
// }