-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
250 lines (219 loc) · 7.04 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
* Copyright (C) 2017-2018 The Particl developers
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
const electron = require('electron');
const app = electron.app;
const BrowserWindow = electron.BrowserWindow;
const path = require('path');
const fs = require('fs');
const url = require('url');
const platform = require('os').platform();
/* correct appName and userData to respect Linux standards */
if (process.platform === 'linux') {
app.setName('unit-e-desktop');
app.setPath('userData', `${app.getPath('appData')}/${app.getName()}`);
}
/* check for paths existence and create */
[ app.getPath('userData'),
app.getPath('userData') + '/testnet'
].map(path => !fs.existsSync(path) && fs.mkdir(path));
if (app.getVersion().includes('RC'))
process.argv.push(...['-testnet']);
const options = require('./modules/options').parse();
const log = require('./modules/logger').init();
const init = require('./modules/init');
const rpc = require('./modules/rpc/rpc');
const _auth = require('./modules/webrequest/http-auth');
const daemon = require('./modules/daemon/daemon');
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow;
let tray;
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', () => {
log.info('app ready')
log.debug('argv', process.argv);
log.debug('options', options);
app.setAppUserModelId("io.unit-e.desktop");
// initialize the authentication filter
_auth.init();
initMainWindow();
init.start(mainWindow);
});
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
});
app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
initMainWindow()
}
});
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
app.on('browser-window-created', function (e, window) {
window.setMenu(null);
});
/*
** initiates the Main Window
*/
function initMainWindow() {
if (platform !== "darwin") {
let trayImage = makeTray();
}
// Create the browser window.
mainWindow = new BrowserWindow({
// width: on Win, the width of app is few px smaller than it should be
// (this triggers smaller breakpoints) - this size should cause
// the same layout results on all OSes
// minWidth/minHeight: both need to be specified or none will work
width: 1270,
minWidth: 1270,
height: 675,
minHeight: 675,
icon: path.join(__dirname, 'resources/icon.png'),
webPreferences: {
webviewTag: false,
nodeIntegration: false,
sandbox: true,
contextIsolation: false,
preload: path.join(__dirname, 'preload.js')
},
});
// and load the index.html of the app.
if (options.dev) {
mainWindow.loadURL(`http://localhost:${options.devport}`);
} else {
mainWindow.loadURL(url.format({
protocol: 'file:',
pathname: path.join(__dirname, 'dist/index.html'),
slashes: true
}));
}
// Open the DevTools.
if (options.dev) {
mainWindow.webContents.openDevTools()
}
// handle external URIs
mainWindow.webContents.on('new-window', (event, url) => {
event.preventDefault();
electron.shell.openExternal(url);
});
// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
});
}
/*
** creates the tray icon and menu
*/
function makeTray() {
// Default tray image + icon
let trayImage = path.join(__dirname, 'resources/icon.png');
// Determine appropriate icon for platform
// if (platform === 'darwin') {
// trayImage = path.join(__dirname, 'src/assets/icons/logo.icns');
// }
// else if (platform === 'win32' || platform === 'win64') {
// trayImage = path.join(__dirname, 'src/assets/icons/logo.ico');
// }
// The tray context menu
const contextMenu = electron.Menu.buildFromTemplate([
{
label: 'View',
submenu: [
{
label: 'Reload',
click() { mainWindow.webContents.reloadIgnoringCache(); }
},
{
label: 'Open Dev Tools',
click() { mainWindow.openDevTools(); }
}
]
},
{
role: 'window',
submenu: [
{
label: 'Close',
click() { app.quit() }
},
{
label: 'Hide',
click() { mainWindow.hide(); }
},
{
label: 'Show',
click() { mainWindow.show(); }
},
{
label: 'Maximize',
click() { mainWindow.maximize(); }
} /* TODO: stop full screen somehow,
{
label: 'Toggle Full Screen',
click () {
mainWindow.setFullScreen(!mainWindow.isFullScreen());
}
}*/
]
},
{
role: 'help',
submenu: [
{
label: 'About ' + app.getName(),
click() { electron.shell.openExternal('https://github.com/dtr-org/unit-e/blob/master/README.md'); }
},
{
label: 'Visit Project Website',
click() { electron.shell.openExternal('https://github.com/dtr-org/unit-e/'); }
},
{
label: 'Visit Electron',
click() { electron.shell.openExternal('https://electron.atom.io'); }
}
]
}
]);
// Create the tray icon
tray = new electron.Tray(trayImage)
// TODO, tray pressed icon for OSX? :)
// if (platform === "darwin") {
// tray.setPressedImage(imageFolder + '/osx/trayHighlight.png');
// }
// Set the tray icon
tray.setToolTip('Unit-e ' + app.getVersion());
tray.setContextMenu(contextMenu)
// Always show window when tray icon clicked
tray.on('click', function () {
mainWindow.show();
});
return trayImage;
}