-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
154 lines (146 loc) · 3.97 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const electron = require('electron');
const url = require('url')
const path = require('path')
const {app, BrowserWindow, ipcMain} = electron;
let mainWindow;
let addWindow;
let helpWindow;
// set ENV
process.env.NODE_ENV = 'production';
const proc = 'production'
// listen for app to be ready
app.on('ready',function(){
//create new window
mainWindow = new BrowserWindow({});
//load HTML into window
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'mainWindow.html'),
protocol: 'file:',
slashes: true
}));
// Build menu from the template
const mainMenu = electron.Menu.buildFromTemplate(mainMenuTemplate);
// insert menu
electron.Menu.setApplicationMenu(mainMenu);
});
// Handle add window
function createAddWindow(){
addWindow = new BrowserWindow({
width: 500,
height: 550,
});
//Quit app when when closed
mainWindow.on('closed', function(){
app.quit();
});
//load HTML into window
addWindow.loadURL(url.format({
pathname: path.join(__dirname, 'addWindow.html'),
protocol: 'file:',
slashes: true
}));
// Garbage collection handle
addWindow.on('close', function(){
addwindow = null;
});
}
// Handle help window
function createhelpWindow(){
helpWindow = new BrowserWindow({
width: 500,
height: 550,
});
//Quit app when when closed
mainWindow.on('closed', function(){
app.quit();
});
//load HTML into window
helpWindow.loadURL(url.format({
pathname: path.join(__dirname, 'helpWindow.html'),
protocol: 'file:',
slashes: true
}));
// Garbage collection handle
helpWindow.on('close', function(){
addwindow = null;
});
}
//catch item:add
ipcMain.on('item:add',function(e, item){
console.log(item);
mainWindow.webContents.send('item:add', item);
});
//catch task:add
ipcMain.on('task:add',function(e, task){
console.log(task);
mainWindow.webContents.send('task:add', task);
addWindow.close();
});
//create menu template
const mainMenuTemplate = [
{
label:'File',
submenu:[
{
label: 'Add Task',
accelerator: process.platform == 'darwin' ? 'command+A' :
'Ctrl+Shift+A',
click(){
createAddWindow();
}
},
{
label: 'Clear all',
accelerator: process.platform == 'darwin' ? 'command+C' :
'Ctrl+Shift+C',
click(){
mainWindow.webContents.send('item:clear');
mainWindow.webContents.send('task:clear');
}
},
{
label: 'Quit',
accelerator: process.platform == 'darwin' ? 'command+Q' :
'Ctrl+Q',
click(){
app.quit();
}
}]
},
{
label: 'Help',
submenu:[
{
label: 'Instructions',
accelerator: process.platform == 'darwin' ? 'Command+I' :
'Ctrl+Shift+I',
click(){
createhelpWindow()
}
},
]
},
]
// if mac, add empty object on menu
if(process.platform == 'darwin'){
mainMenuTemplate.unshift({});
}
// Add developer tools
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'
}
]
});
}