-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
141 lines (126 loc) · 3.42 KB
/
index.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
const electron = require('electron');
const url = require('url');
const path = require('path');
const {app, BrowserWindow, Menu, ipcMain} = electron;
let mainWindow;
let rollWindow;
// Listen for app to be ready
app.on('ready', () => {
// Create new window
mainWindow = new BrowserWindow({});
//Load HTML into window
mainWindow.loadURL(url.format({
protocol: 'file:',
slashes: true,
pathname: path.join(__dirname, 'mainWindow.html')
}));
//QUit app when closed
mainWindow.on('closed', () => {
app.quit();
})
//Build menu from template
const mainMenu = Menu.buildFromTemplate(mainMenuTemplate);
//Insert menu
Menu.setApplicationMenu(mainMenu);
})
//Handle create roll window
function createRollWindow()
{
rollWindow = new BrowserWindow({
width: 600,
height: 600,
title: "Add new roll"
});
//Load HTML into window
rollWindow.loadURL(url.format({
protocol: 'file:',
slashes: true,
pathname: path.join(__dirname, 'rollWindow.html')
}));
const RollMenu = Menu.buildFromTemplate(rollMenuTemplate);
rollWindow.setMenu(RollMenu);
//Handle garbage collection
rollWindow.on('closed', ()=>
{
rollWindow = null;
});
}
//Catch roll items
ipcMain.on('roll', (e, param) => {
mainWindow.webContents.send('roll', param);
rollWindow.close();
})
//catch clear
ipcMain.on('clear', () => {
mainWindow.webContents.send('clearHistory');
})
// Create menu template
const mainMenuTemplate = [
{
label: 'File',
submenu: [
{
label: 'New Roll',
accelerator: process.platform == 'darwin' ? 'Command+N' : 'Ctrl+N',
click(){
createRollWindow();
}
},
{
label: 'Clear History',
click(){
mainWindow.webContents.send('clearHistory');
},
accelerator: process.platform == 'darwin' ? 'Command+C' : 'Ctrl+C'
},
{
label: 'Quit',
click(){
app.quit();
},
accelerator: process.platform == 'darwin' ? 'Command+Q' : 'Ctrl+Q'
}
]
}
];
// Create menu template
const rollMenuTemplate = [
{
label: 'File',
submenu: [
{
label: 'Close',
accelerator: 'esc',
click(){
rollWindow.close();
}
}
]
}
];
//If mac, add empty object to menu
if(process.platform == 'darwin')
{
mainMenuTemplate.unshift({});
}
//Add developer tools item if not in production
if(process.env.NODE_ENV !== 'production')
{
const devToolMenu = {
label: 'Developer Tools',
submenu: [
{
label: 'Toggle DevTools',
click(item, focusedWindow){
focusedWindow.toggleDevTools();
},
accelerator: process.platform == 'darwin' ? 'Command+Shift+J' : 'Ctrl+Shift+J'
},
{
role: 'reload'
}
]
};
mainMenuTemplate.push(devToolMenu);
rollMenuTemplate.push(devToolMenu);
}