-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.main.js
More file actions
120 lines (98 loc) · 2.32 KB
/
Copy pathexample.main.js
File metadata and controls
120 lines (98 loc) · 2.32 KB
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
const { app, BrowserWindow, dialog } = require('electron');
const path = require('path');
const isDev = !app.isPackaged;
if (isDev) {
process.env.NODE_CONFIG_DIR = path.join(__dirname, 'config');
} else {
process.env.NODE_CONFIG_DIR = path.join(process.resourcesPath, 'config');
}
process.env.NODE_ENV = 'production';
const consoleLogger = createBufferedConsoleLogger();
function createBufferedConsoleLogger() {
const buffer = [];
return {
fatal(...args) {
buffer.push({ level: 'fatal', args });
console.error(...args);
},
error(...args) {
buffer.push({ level: 'error', args });
console.error(...args);
},
warn(...args) {
buffer.push({ level: 'warn', args });
console.warn(...args);
},
info(...args) {
buffer.push({ level: 'info', args });
console.info(...args);
},
debug(...args) {
buffer.push({ level: 'debug', args });
console.debug(...args);
},
trace(...args) {
buffer.push({ level: 'trace', args });
console.log(...args);
},
writeBufferInto(output) {
for (const { level, args } of buffer) {
output[level](...args);
}
},
};
}
let mainWindow;
let updater;
function initializeUpdateListener(updatesActions) {
const { ipcRenderer } = require('electron');
ipcRenderer.on('show-update-dialog', (_, dialogType, options = {}) => {
updatesActions.showUpdateDialog(dialogType, options);
});
}
const createWindow = () => {
mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
},
});
mainWindow.loadFile('index.html');
mainWindow.webContents.openDevTools();
updater.start({
canRunSilently: true,
getMainWindow,
logger: consoleLogger,
});
};
function getMainWindow() {
return mainWindow;
}
function getApp() {
try {
return app;
} catch {
return null;
}
}
app.whenReady().then(async () => {
updater = require('safeupdater');
createWindow();
try {
await updater.start({
canRunSilently: true,
getApp,
getMainWindow,
logger: consoleLogger,
});
} catch (err) {
consoleLogger.error('Updater failed to start', err);
}
});
app.on('window-all-closed', () => {
app.quit();
});
module.exports = {
initializeUpdateListener,
};