-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
277 lines (244 loc) · 8.37 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
const { app, Tray, Menu } = require('electron');
const path = require('path');
const fs = require('fs');
const url = require('url');
const platform = require('os').platform();
const Store = require('electron-store');
const settings = new Store({ name: 'Settings' });
const log = require('electron-log');
const splash = require('@trodi/electron-splashscreen');
const config = require('./src/js/ws_config');
const IS_DEV = (process.argv[1] === 'dev' || process.argv[2] === 'dev');
const IS_DEBUG = IS_DEV || process.argv[1] === 'debug' || process.argv[2] === 'debug';
const LOG_LEVEL = IS_DEBUG ? 'debug' : 'warn';
const WALLET_CFGFILE = path.join(app.getPath('userData'), 'wconfig.txt');
const OBSIDIAN_VERSION = app.getVersion();
const DEFAULT_SETTINGS = {
tray_minimize: false,
tray_close: false,
darkmode: true,
};
const DEFAULT_SIZE = { width: 840, height: 840 };
const WIN_TITLE = `${config.appName} ${OBSIDIAN_VERSION} - ${config.appDescription}`;
app.prompExit = true;
app.prompShown = false;
app.needToExit = false;
app.debug = IS_DEBUG;
app.walletConfig = WALLET_CFGFILE;
app.setAppUserModelId(config.appId);
log.transports.console.level = LOG_LEVEL;
log.transports.file.level = LOG_LEVEL;
log.transports.file.maxSize = 5 * 1024 * 1024;
log.info(`Starting Obsidian ${OBSIDIAN_VERSION}`);
if (IS_DEV || IS_DEBUG) log.warn(`Running in ${IS_DEV ? 'dev' : 'debug'} mode`);
let trayIcon = path.join(__dirname, 'src/assets/tray.png');
let trayIconHide = path.join(__dirname, 'src/assets/trayon.png');
let win;
let tray;
function createWindow()
{
// Create the browser window.
let darkmode = settings.get('darkmode', false);
let bgColor = darkmode ? '#000000' : '#02853E';
const winOpts = {
title: WIN_TITLE,
icon: path.join(__dirname, 'src/assets/obsidian_icon.png'),
frame: true,
width: DEFAULT_SIZE.width,
height: DEFAULT_SIZE.height,
minWidth: DEFAULT_SIZE.width,
minHeight: DEFAULT_SIZE.height,
show: false,
backgroundColor: bgColor,
center: true,
autoHideMenuBar: false,
menuBarVisibility: false,
webPreferences: {
nativeWindowOpen: true,
nodeIntegrationInWorker: true,
},
};
win = splash.initSplashScreen({
windowOpts: winOpts,
templateUrl: path.join(__dirname, "src/html/splash.html"),
delay: 0,
minVisible: 800,
splashScreenOpts: {
width: 425,
height: 325,
transparent: true
},
});
//load the index.html of the app.
win.loadURL(url.format({
pathname: path.join(__dirname, 'src/html/index.html'),
protocol: 'file:',
slashes: true
}));
// open devtools
if (IS_DEV) win.webContents.openDevTools();
// show window
win.once('ready-to-show', () => {
//win.show();
win.setTitle(WIN_TITLE);
if (platform !== 'darwin') {
tray.setToolTip(config.appSlogan);
}
});
win.on('close', (e) => {
if ((settings.get('tray_close') && !app.needToExit && platform !== 'darwin')) {
e.preventDefault();
win.hide();
} else if (app.prompExit) {
e.preventDefault();
app.prompExit = false;
win.webContents.send('cleanup', 'Clean it up, Dad!');
}
});
if (platform !== 'darwin') {
let contextMenu = Menu.buildFromTemplate([
{ label: 'Minimize to tray', click: () => { win.hide(); } },
{
label: 'Quit', click: () => {
app.needToExit = true;
if (win) {
win.close();
} else {
process.exit(0);
}
}
}
]);
tray = new Tray(trayIcon);
tray.setPressedImage(trayIconHide);
tray.setTitle(config.appName);
tray.setToolTip(config.appSlogan);
tray.setContextMenu(contextMenu);
tray.on('click', () => {
if(!win.isFocused() && win.isVisible()){
win.focus();
}else if (settings.get('tray_minimize', false)) {
if (win.isVisible()) {
win.hide();
} else {
win.show();
}
} else {
if (win.isMinimized()) {
win.restore();
win.focus();
} else {
win.minimize();
}
}
});
win.on('show', () => {
tray.setHighlightMode('always');
tray.setImage(trayIcon);
contextMenu = Menu.buildFromTemplate([
{ label: 'Minimize to tray', click: () => { win.hide(); } },
{
label: 'Quit', click: () => {
app.needToExit = true;
win.close();
}
}
]);
tray.setContextMenu(contextMenu);
tray.setToolTip(config.appSlogan);
});
win.on('hide', () => {
tray.setHighlightMode('never');
tray.setImage(trayIconHide);
if (platform === 'darwin') return;
contextMenu = Menu.buildFromTemplate([
{ label: 'Restore', click: () => { win.show(); } },
{
label: 'Quit', click: () => {
app.needToExit = true;
win.close();
}
}
]);
tray.setContextMenu(contextMenu);
});
win.on('minimize', (event) => {
if (settings.get('tray_minimize') && platform !== 'darwin') {
event.preventDefault();
win.hide();
}
});
}
win.on('closed', () => {
win = null;
});
win.setMenu(null);
// misc handler
win.webContents.on('crashed', () => {
// todo: prompt to restart
log.debug('webcontent was crashed');
});
win.on('unresponsive', () => {
// todo: prompt to restart
log.debug('webcontent is unresponsive');
});
}
function initSettings() {
Object.keys(DEFAULT_SETTINGS).forEach((k) => {
if (!settings.has(k) || settings.get(k) === null) {
settings.set(k, DEFAULT_SETTINGS[k]);
}
});
settings.set('version', OBSIDIAN_VERSION);
}
app.on('browser-window-created', function (e, window) {
window.setMenuBarVisibility(false);
window.setAutoHideMenuBar(false);
});
// Quit when all windows are closed.
app.on('window-all-closed', () => {
//if (platform !== 'darwin')
app.quit();
});
app.on('activate', () => {
// On macOS 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 (win === null) createWindow();
});
process.on('uncaughtException', function (e) {
log.error(`Uncaught exception: ${e.message}`);
try { fs.unlinkSync(WALLET_CFGFILE); } catch (e) { }
process.exit(1);
});
process.on('beforeExit', (code) => {
log.debug(`beforeExit code: ${code}`);
});
process.on('exit', (code) => {
// just to be sure
try { fs.unlinkSync(WALLET_CFGFILE); } catch (e) { }
log.debug(`exit with code: ${code}`);
});
process.on('warning', (warning) => {
log.warn(`${warning.code}, ${warning.name}`);
});
const silock = app.requestSingleInstanceLock();
app.on('second-instance', () => {
if (win) {
if (!win.isVisible()) win.show();
if (win.isMinimized()) win.restore();
win.focus();
}
});
if (!silock) app.quit();
app.on('ready', () => {
initSettings();
createWindow();
// try to target center pos of primary display
let eScreen = require('electron').screen;
let primaryDisp = eScreen.getPrimaryDisplay();
let tx = Math.ceil((primaryDisp.workAreaSize.width - DEFAULT_SIZE.width) / 2);
let ty = Math.ceil((primaryDisp.workAreaSize.height - (DEFAULT_SIZE.height)) / 2);
if (tx > 0 && ty > 0) {
try { win.setPosition(parseInt(tx, 10), parseInt(ty, 10)); } catch (_e) { }
}
});