forked from gielcobben/caption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.development.js
405 lines (366 loc) · 10.4 KB
/
main.development.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
import os from 'os'
import path from 'path'
import { app, autoUpdater, BrowserWindow, Menu, shell, ipcMain, dialog, Tray } from 'electron';
import { moveToApplications } from 'electron-lets-move';
import pkg from './package.json'
import Storage from 'electron-json-storage'
import windowStateKeeper from 'electron-window-state'
/*
* Basics
*/
let menu;
let mainWindow = null;
let settingsWindow = null;
if (process.env.NODE_ENV === 'development') {
require('electron-debug')();
}
app.on('window-all-closed', () => {
if (process.platform !== 'darwin') app.quit();
});
/*
* autoUpdater
*/
let firstRun = true
const platform = os.platform() + '_' + os.arch(); // darwin_x64
const updateURL = `https://download.getcaption.co/update/${platform}/${pkg.version}`;
autoUpdater.on('checking-for-update', () => {
console.log('Checking for updates...');
});
autoUpdater.on('update-not-available', () => {
if (!firstRun) {
const options = {
type: 'info',
buttons: ['OK'],
title: 'Caption',
message: `Caption is up to date`,
detail: `It looks like you're already rocking the latest version!`
}
dialog.showMessageBox(options)
}
firstRun = false;
console.log(`You've got the latest version.`)
})
autoUpdater.on('update-downloaded', (event, releaseNotes, releaseName, releaseDate, updateUrl, quitAndUpdate) => {
const options = {
type: 'info',
buttons: ['Restart', 'Later'],
title: "Caption",
message: `The new version has been downloaded. Please restart the application to apply the updates.`,
detail: releaseName + "\n\n" + releaseNotes
}
const index = dialog.showMessageBox(options)
if (index === 1) {
return;
}
quitAndUpdate();
firstRun = false;
});
autoUpdater.on('error', (error) => {
console.log(error)
firstRun = false;
});
autoUpdater.on('update-available', () => {
console.log('update available')
firstRun = false;
// setInterval(() => {
// console.log(autoUpdater.status);
// }, 5000);
});
try {
autoUpdater.setFeedURL(updateURL)
autoUpdater.checkForUpdates()
}
catch (error) {
console.log(error)
}
/*
* Extentions
*/
const installExtensions = async () => {
if (process.env.NODE_ENV === 'development') {
// eslint-disable-line global-require
const installer = require('electron-devtools-installer');
const extensions = [
'REACT_DEVELOPER_TOOLS',
'REDUX_DEVTOOLS'
];
const forceDownload = !!process.env.UPGRADE_EXTENSIONS;
for (const name of extensions) {
try {
await installer.default(installer[name], forceDownload);
} catch (e) { } // eslint-disable-line
}
}
};
/*
* Create Main Window
*/
const createMainWindow = () => {
let mainWindowState = windowStateKeeper({
defaultWidth: 360,
defaultHeight: 440
});
let transparent = true
let backgroundColor = 'none'
const osVersion = os.release().split('.').join('')
if (osVersion < 1400) {
transparent = false
backgroundColor = '#474748'
}
// Create the windows
mainWindow = new BrowserWindow({
width: mainWindowState.width,
height: mainWindowState.height,
x: mainWindowState.x,
y: mainWindowState.y,
show: false,
minWidth: 300,
minHeight: 300,
vibrancy: 'dark',
transparent: transparent,
titleBarStyle: 'hidden-inset',
backgroundColor: backgroundColor
});
// Manage window state
mainWindowState.manage(mainWindow);
// Set URL
mainWindow.loadURL(`file://${__dirname}/app/app.html`);
// Events
mainWindow.webContents.on('did-finish-load', () => {
mainWindow.show();
mainWindow.focus();
});
mainWindow.on('closed', () => {
mainWindow = null;
app.quit();
});
}
app.on('ready', async () => {
if (process.env.NODE_ENV !== 'development') {
/*
* Let's Move
*/
Storage.has('moveApp', async (error, value) => {
if (!value) {
try {
const moved = await moveToApplications();
if (!moved) {
Storage.set('moveApp', false);
}
}
catch (error) {
console.log(error);
}
}
else {
Storage.get('moveApp', async (error, value) => {
if (value) {
try {
const moved = await moveToApplications();
}
catch (error) {
console.log(error);
}
}
else {
console.log('user choosed to not move the app!');
}
})
}
});
}
app.setAboutPanelOptions({
applicationName: 'Caption',
applicationVersion: pkg.version,
copyright: 'Made with 💖 by Giel Cobben. \n www.gielcobben.com',
credits: `With the invaluable help of: \n OpenSubtitles.org and Addic7ed.com`,
version: pkg.version
});
await installExtensions();
/*
* MainWindow
*/
createMainWindow();
/*
* IPC's
*/
ipcMain.on('close-main', () => {
mainWindow.close();
app.quit();
});
ipcMain.on('lang-changed', () => {
mainWindow.webContents.send('change-language')
})
/*
* Downloads
*/
mainWindow.webContents.session.on('will-download', (event, item, webContents) => {
item.on('updated', (event, state) => {
if (state === 'interrupted') {
console.log('Download is interrupted but can be resumed')
} else if (state === 'progressing') {
if (item.isPaused()) {
console.log('Download is paused')
} else {
console.log(`Received bytes: ${item.getReceivedBytes()}`)
}
}
})
item.once('done', (event, state) => {
if (state === 'completed') {
console.log('Download successfully')
} else {
console.log(`Download failed: ${state}`)
}
})
});
/*
* Development
*/
if (process.env.NODE_ENV === 'development') {
mainWindow.openDevTools();
mainWindow.webContents.on('context-menu', (e, props) => {
const { x, y } = props;
Menu.buildFromTemplate([{
label: 'Inspect element',
click() {
mainWindow.inspectElement(x, y);
}
}]).popup(mainWindow);
});
}
/*
* Menu
*/
const template = [{
label: 'Caption',
submenu: [{
label: 'About Caption',
selector: 'orderFrontStandardAboutPanel:'
}, {
label: 'Check for Updates...',
click() {
autoUpdater.checkForUpdates();
}
}, {
type: 'separator'
}, {
label: 'Services',
submenu: []
}, {
type: 'separator'
}, {
label: 'Hide Caption',
accelerator: 'Command+H',
selector: 'hide:'
}, {
label: 'Hide Others',
accelerator: 'Command+Shift+H',
selector: 'hideOtherApplications:'
}, {
label: 'Show All',
selector: 'unhideAllApplications:'
}, {
type: 'separator'
}, {
label: 'Quit',
accelerator: 'Command+Q',
click() {
app.quit();
}
}]
}, {
label: 'Edit',
submenu: [{
label: 'Undo',
accelerator: 'Command+Z',
selector: 'undo:'
}, {
label: 'Redo',
accelerator: 'Shift+Command+Z',
selector: 'redo:'
}, {
type: 'separator'
}, {
label: 'Cut',
accelerator: 'Command+X',
selector: 'cut:'
}, {
label: 'Copy',
accelerator: 'Command+C',
selector: 'copy:'
}, {
label: 'Paste',
accelerator: 'Command+V',
selector: 'paste:'
}, {
label: 'Select All',
accelerator: 'Command+A',
selector: 'selectAll:'
}]
}, {
label: 'View',
submenu: (process.env.NODE_ENV === 'development') ? [{
label: 'Reload',
accelerator: 'Command+R',
click() {
mainWindow.webContents.reload();
}
}, {
label: 'Toggle Full Screen',
accelerator: 'Ctrl+Command+F',
click() {
mainWindow.setFullScreen(!mainWindow.isFullScreen());
}
}] : [{
label: 'Toggle Full Screen',
accelerator: 'Ctrl+Command+F',
click() {
mainWindow.setFullScreen(!mainWindow.isFullScreen());
}
}]
}, {
label: 'Window',
submenu: [{
label: 'Minimize',
accelerator: 'Command+M',
selector: 'performMiniaturize:'
}, {
label: 'Close',
accelerator: 'Command+W',
click() {
app.quit();
}
}, {
type: 'separator'
}, {
label: 'Bring All to Front',
selector: 'arrangeInFront:'
}]
}, {
label: 'Help',
submenu: [{
label: 'Learn More',
click() {
shell.openExternal('http://electron.atom.io');
}
}, {
label: 'Documentation',
click() {
shell.openExternal('https://github.com/atom/electron/tree/master/docs#readme');
}
}, {
label: 'Community Discussions',
click() {
shell.openExternal('https://discuss.atom.io/c/electron');
}
}, {
label: 'Search Issues',
click() {
shell.openExternal('https://github.com/atom/electron/issues');
}
}]
}];
menu = Menu.buildFromTemplate(template);
Menu.setApplicationMenu(menu);
});