-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
main.ts
518 lines (426 loc) · 15.4 KB
/
main.ts
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
// Update the `demo` and `version` when building
import { GLOBALS } from './node/main-globals';
GLOBALS.macVersion = process.platform === 'darwin';
import * as path from 'path';
const fs = require('fs');
const electron = require('electron');
const { nativeTheme } = require('electron');
import { app, protocol, BrowserWindow, screen, dialog, systemPreferences, ipcMain } from 'electron';
const windowStateKeeper = require('electron-window-state');
// Methods
import { createTouchBar } from './node/main-touch-bar';
import { setUpIpcForServer } from './node/server';
import { setUpIpcMessages } from './node/main-ipc';
import { sendFinalObjectToAngular, setUpDirectoryWatchers, upgradeToVersion3, writeVhaFileToDisk, parseAdditionalExtensions } from './node/main-support';
// Interfaces
import { FinalObject } from './interfaces/final-object.interface';
import { SettingsObject } from './interfaces/settings-object.interface';
import { WizardOptions } from './interfaces/wizard-options.interface';
import { preventSleep, resetAllQueues } from './node/main-extract-async';
// Variables
const pathToAppData = app.getPath('appData');
const pathToPortableApp = process.env.PORTABLE_EXECUTABLE_DIR;
GLOBALS.settingsPath = pathToPortableApp ? pathToPortableApp : path.join(pathToAppData, 'video-hub-app-2');
const English = require('./i18n/en.json');
let systemMessages = English.SYSTEM; // Set English as default; update via `system-messages-updated`
let screenWidth;
let screenHeight;
// TODO: CLEAN UP
let macFirstRun = true; // detect if it's the 1st time Mac is opening the file or something like that
let userWantedToOpen: string = null; // find a better pattern for handling this functionality
electron.Menu.setApplicationMenu(null);
// =================================================================================================
let win;
let myWindow = null;
const args = process.argv.slice(1);
const serve: boolean = args.some(val => val === '--serve');
GLOBALS.debug = args.some(val => val === '--debug');
if (GLOBALS.debug) {
console.log('Debug mode enabled!');
}
// =================================================================================================
process.env['ELECTRON_DISABLE_SECURITY_WARNINGS'] = 'true';
// For windows -- when loading the app the first time
if (args[0]) {
if (!serve) {
userWantedToOpen = args[0]; // TODO -- clean up file-opening code to not use variable
}
}
const gotTheLock = app.requestSingleInstanceLock(); // Open file on windows from file double click
if (!gotTheLock) {
app.quit();
} else {
app.on('second-instance', (event, argv: string[], workingDirectory: string) => {
// dialog.showMessageBox(win, {
// message: 'second-instance: \n' + argv[0] + ' \n' + argv[1],
// buttons: ['OK']
// });
if (argv.length > 1) {
openThisDamnFile(argv[argv.length - 1]);
}
// Someone tried to run a second instance, we should focus our window.
if (myWindow) {
if (myWindow.isMinimized()) {
myWindow.restore();
}
myWindow.focus();
}
});
}
function createWindow() {
const desktopSize = screen.getPrimaryDisplay().workAreaSize;
screenWidth = desktopSize.width;
screenHeight = desktopSize.height;
const mainWindowState = windowStateKeeper({
defaultWidth: 850,
defaultHeight: 850
});
if (GLOBALS.macVersion) {
electron.Menu.setApplicationMenu(electron.Menu.buildFromTemplate([
{
label: app.name,
submenu: [
{ role: 'quit' },
{ role: 'hide' },
]
},
{
label: 'Edit',
submenu: [
{ role: 'selectAll' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' }
]
},
{
label: "View",
submenu: [
{ role: "togglefullscreen" },
]
},
{
label: "Window",
role: 'windowMenu',
},
]));
}
// Create the browser window.
win = new BrowserWindow({
webPreferences: {
nodeIntegration: true,
allowRunningInsecureContent: true,
contextIsolation: false,
webSecurity: false // allow files from hard disk to show up
},
x: mainWindowState.x,
y: mainWindowState.y,
width: mainWindowState.width,
height: mainWindowState.height,
center: true,
minWidth: 420,
minHeight: 250,
icon: path.join(__dirname, 'src/assets/icons/png/64x64.png'),
frame: false // removes the frame from the window completely
});
mainWindowState.manage(win);
myWindow = win;
// Open the DevTools.
if (serve) {
require('electron-reload')(__dirname, {
electron: require(`${__dirname}/node_modules/electron`)
});
win.loadURL('http://localhost:4200');
setTimeout(() => {
win.webContents.openDevTools();
}, 1000);
} else {
const url = require('url').format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true
});
win.loadURL(url);
}
if (GLOBALS.macVersion) {
const touchBar = createTouchBar();
if (touchBar) {
win.setTouchBar(touchBar);
}
}
// Watch for computer powerMonitor
// https://electronjs.org/docs/api/power-monitor
electron.powerMonitor.on('shutdown', () => {
getAngularToShutDown();
});
win.on('close', (event) => {
if (!GLOBALS.readyToQuit) {
event.preventDefault();
getAngularToShutDown();
}
});
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store window
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null;
});
// Does not seem to be needed to remove all the Mac taskbar menu items
// win.setMenu(null);
}
try {
// OPEN FILE ON MAC FROM FILE DOUBLE CLICK
// THIS RUNS (ONLY) on MAC !!!
app.on('will-finish-launching', () => {
app.on('open-file', (event, filePath: string) => {
if (filePath) {
if (!macFirstRun) {
openThisDamnFile(filePath);
}
}
});
});
// 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', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// 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', () => {
// 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 (win === null) {
createWindow();
}
});
// TODO: `registerFileProtocol` may be deprecated:
// https://www.electronjs.org/blog/electron-33-0#behavior-changed-custom-protocol-url-handling-on-windows
app.whenReady().then(() => {
protocol.registerFileProtocol('file', (request, callback) => {
const pathname = request.url.replace('file:///', '');
callback(pathname);
});
});
} catch {}
if (GLOBALS.macVersion) {
systemPreferences.subscribeNotification(
'AppleInterfaceThemeChangedNotification',
function theThemeHasChanged () {
if (nativeTheme.shouldUseDarkColors) {
tellElectronDarkModeChange('dark');
} else {
tellElectronDarkModeChange('light');
}
}
);
}
/**
* Notify front-end about OS change in Dark Mode setting
* @param mode
*/
function tellElectronDarkModeChange(mode: string) {
GLOBALS.angularApp.sender.send('os-dark-mode-change', mode);
}
// =================================================================================================
// Open a vha file method
// -------------------------------------------------------------------------------------------------
/**
* Get angular to shut down immediately - saving settings and hub if needed.
*/
function getAngularToShutDown(): void {
GLOBALS.angularApp.sender.send('please-shut-down-ASAP');
}
/**
* Load the .vha2 file and send it to app
* @param pathToVhaFile full path to the .vha2 file
*/
function openThisDamnFile(pathToVhaFile: string): void {
resetAllQueues();
macFirstRun = false; // TODO - figure out how to open file when double click first time on Mac
if (userWantedToOpen) { // TODO - clean up messy override
pathToVhaFile = userWantedToOpen;
userWantedToOpen = undefined;
}
fs.readFile(pathToVhaFile, (err, data) => {
if (err) {
GLOBALS.angularApp.sender.send('show-msg-dialog', systemMessages.error, systemMessages.noSuchFileFound, pathToVhaFile);
GLOBALS.angularApp.sender.send('please-open-wizard');
} else {
app.addRecentDocument(pathToVhaFile);
const finalObject: FinalObject = JSON.parse(data);
// set globals from file
GLOBALS.currentlyOpenVhaFile = pathToVhaFile;
GLOBALS.selectedOutputFolder = path.parse(pathToVhaFile).dir;
GLOBALS.hubName = finalObject.hubName;
GLOBALS.screenshotSettings = finalObject.screenshotSettings;
upgradeToVersion3(finalObject);
console.log('setting inputDirs');
console.log(finalObject.inputDirs);
GLOBALS.selectedSourceFolders = finalObject.inputDirs;
sendFinalObjectToAngular(finalObject, GLOBALS);
setUpDirectoryWatchers(finalObject.inputDirs, finalObject.images);
}
});
}
// =================================================================================================
// Listeners for events from Angular
// -------------------------------------------------------------------------------------------------
setUpIpcMessages(ipcMain, win, pathToAppData, systemMessages);
setUpIpcForServer(ipcMain);
/**
* Once Angular loads it sends over the `ready` status
* Load up the settings.json and send settings over to Angular
*/
ipcMain.on('just-started', (event) => {
GLOBALS.angularApp = event;
GLOBALS.winRef = win;
if (GLOBALS.macVersion) {
tellElectronDarkModeChange(systemPreferences.getEffectiveAppearance());
}
// Reference: https://github.com/electron/electron/blob/master/docs/api/locales.md
const locale: string = app.getLocale();
fs.readFile(path.join(GLOBALS.settingsPath, 'settings.json'), (err, data) => {
if (err) {
win.setBounds({ x: 0, y: 0, width: screenWidth, height: screenHeight });
event.sender.send('set-language-based-off-system-locale', locale);
event.sender.send('please-open-wizard', true); // firstRun = true!
} else {
try {
const previouslySavedSettings: SettingsObject = JSON.parse(data);
if (previouslySavedSettings.appState.addtionalExtensions) {
GLOBALS.additionalExtensions = parseAdditionalExtensions(previouslySavedSettings.appState.addtionalExtensions);
}
event.sender.send('settings-returning', previouslySavedSettings, locale);
} catch (err) {
event.sender.send('please-open-wizard', false);
}
}
});
});
/**
* Start extracting the screenshots into a chosen output folder from a chosen input folder
*/
ipcMain.on('start-the-import', (event, wizard: WizardOptions) => {
preventSleep();
const hubName = wizard.futureHubName;
const outDir: string = wizard.selectedOutputFolder;
if (fs.existsSync(path.join(outDir, hubName + '.vha2'))) { // make sure no hub name under the same name exists
event.sender.send('show-msg-dialog', systemMessages.error, systemMessages.hubAlreadyExists, systemMessages.pleaseChangeName);
event.sender.send('please-fix-hub-name');
} else {
if (!fs.existsSync(path.join(outDir, 'vha-' + hubName))) { // create the folder `vha-hubName` inside the output directory
console.log('vha-hubName folder did not exist, creating');
fs.mkdirSync(path.join(outDir, 'vha-' + hubName));
fs.mkdirSync(path.join(outDir, 'vha-' + hubName + '/filmstrips'));
fs.mkdirSync(path.join(outDir, 'vha-' + hubName + '/thumbnails'));
fs.mkdirSync(path.join(outDir, 'vha-' + hubName + '/clips'));
}
GLOBALS.hubName = hubName;
GLOBALS.selectedOutputFolder = outDir;
GLOBALS.selectedSourceFolders = wizard.selectedSourceFolder;
GLOBALS.screenshotSettings = {
clipHeight: wizard.clipHeight,
clipSnippetLength: wizard.clipSnippetLength,
clipSnippets: wizard.extractClips ? wizard.clipSnippets : 0,
fixed: wizard.isFixedNumberOfScreenshots,
height: wizard.screenshotSizeForImport,
n: wizard.isFixedNumberOfScreenshots ? wizard.ssConstant : wizard.ssVariable,
};
writeVhaFileAndStartExtraction();
}
});
/**
* Creates a FinalObject with known data (no ImageElement[])
* Writes to disk, sends to Angular, starts watching directories
*/
function writeVhaFileAndStartExtraction(): void {
const finalObject: FinalObject = {
addTags: [],
hubName: GLOBALS.hubName,
images: [],
inputDirs: GLOBALS.selectedSourceFolders,
numOfFolders: 0,
removeTags: [],
screenshotSettings: GLOBALS.screenshotSettings,
version: GLOBALS.vhaFileVersion,
};
const pathToTheFile = path.join(GLOBALS.selectedOutputFolder, GLOBALS.hubName + '.vha2');
writeVhaFileToDisk(finalObject, pathToTheFile, () => {
GLOBALS.currentlyOpenVhaFile = pathToTheFile;
sendFinalObjectToAngular(finalObject, GLOBALS);
setUpDirectoryWatchers(finalObject.inputDirs, []);
});
}
/**
* Summon system modal to choose the *.vha2 file
* open via `openThisDamnFile` method
*/
ipcMain.on('system-open-file-through-modal', (event, somethingElse) => { // TODO -- check -- do I need to save vha to disk?
dialog.showOpenDialog(win, {
title: systemMessages.selectPreviousHub,
filters: [{
name: 'Video Hub App 2 files', // TODO -- i18n FIX ME
extensions: ['vha2']
}],
properties: ['openFile']
}).then(result => {
const chosenFile: string = result.filePaths[0];
if (chosenFile) {
openThisDamnFile(chosenFile);
}
}).catch(err => {});
});
/**
* Open .vha2 file (from given path)
* save current VHA file to disk, if provided
*/
ipcMain.on('load-this-vha-file', (event, pathToVhaFile: string, finalObjectToSave: FinalObject) => {
if (finalObjectToSave !== null) {
writeVhaFileToDisk(finalObjectToSave, GLOBALS.currentlyOpenVhaFile, () => {
console.log('.vha2 file saved before opening another');
openThisDamnFile(pathToVhaFile);
});
} else {
openThisDamnFile(pathToVhaFile);
}
});
// =================================================================================================
/**
* Interrupt current import process
*/
ipcMain.on('cancel-current-import', (event): void => {
GLOBALS.winRef.setProgressBar(-1);
resetAllQueues();
});
/**
* Update additonal extensions from settings
*/
ipcMain.on('update-additional-extensions', (event, newAdditionalExtensions: string): void => {
GLOBALS.additionalExtensions = parseAdditionalExtensions(newAdditionalExtensions);
});
/**
* Update system messaging based on new language
*/
ipcMain.on('system-messages-updated', (event, newSystemMessages): void => {
systemMessages = newSystemMessages; // TODO -- make sure it works with `main-ipc.ts`
});
/**
* Opens vha file while the app is running. Only works for mac OS.
*/
ipcMain.on('open-file', (event, pathToVhaFile) => {
event.preventDefault();
openThisDamnFile(pathToVhaFile);
});
/**
* Clears recent document history from the jump list
*/
ipcMain.on('clear-recent-documents', (event): void => {
app.clearRecentDocuments();
});