2016-10-30 11:57:12 +01:00
|
|
|
const electron = require('electron'); // eslint-disable-line
|
2016-11-21 19:05:19 +01:00
|
|
|
const isDev = require('electron-is-dev');
|
2020-03-31 13:59:05 +02:00
|
|
|
const { join } = require('path');
|
2020-04-03 12:00:00 +02:00
|
|
|
const os = require('os');
|
2016-10-30 11:57:12 +01:00
|
|
|
|
|
|
|
const menu = require('./menu');
|
|
|
|
|
2018-02-17 15:15:30 +01:00
|
|
|
const { checkNewVersion } = require('./update-checker');
|
|
|
|
|
2018-09-30 22:08:36 +02:00
|
|
|
const { app } = electron;
|
|
|
|
const { BrowserWindow } = electron;
|
2016-10-30 11:57:12 +01:00
|
|
|
|
2020-02-11 15:16:03 +01:00
|
|
|
app.name = 'LosslessCut';
|
2016-11-05 21:22:31 +01:00
|
|
|
|
2016-10-30 11:57:12 +01:00
|
|
|
// 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;
|
|
|
|
|
2020-02-20 05:03:25 +01:00
|
|
|
let askBeforeClose = false;
|
2020-03-31 13:59:05 +02:00
|
|
|
let rendererReady = false;
|
|
|
|
|
|
|
|
function openFile(path) {
|
|
|
|
mainWindow.webContents.send('file-opened', [path]);
|
|
|
|
}
|
2020-02-20 05:03:25 +01:00
|
|
|
|
2016-10-30 11:57:12 +01:00
|
|
|
function createWindow() {
|
|
|
|
mainWindow = new BrowserWindow({
|
|
|
|
darkTheme: true,
|
2019-11-04 04:32:03 +01:00
|
|
|
webPreferences: {
|
|
|
|
nodeIntegration: true,
|
2020-03-04 11:41:40 +01:00
|
|
|
// https://github.com/electron/electron/issues/5107
|
|
|
|
webSecurity: !isDev,
|
2019-11-04 04:32:03 +01:00
|
|
|
},
|
2016-10-30 11:57:12 +01:00
|
|
|
});
|
2020-03-04 11:41:40 +01:00
|
|
|
|
2020-03-31 13:59:05 +02:00
|
|
|
mainWindow.loadURL(isDev ? 'http://localhost:3001' : `file://${join(__dirname, '../build/index.html')}`);
|
2016-10-30 11:57:12 +01:00
|
|
|
|
2020-02-24 11:18:44 +01:00
|
|
|
if (isDev) {
|
|
|
|
const { default: installExtension, REACT_DEVELOPER_TOOLS } = require('electron-devtools-installer'); // eslint-disable-line global-require,import/no-extraneous-dependencies
|
|
|
|
|
|
|
|
installExtension(REACT_DEVELOPER_TOOLS)
|
|
|
|
.then(name => console.log(`Added Extension: ${name}`))
|
|
|
|
.catch(err => console.log('An error occurred: ', err));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the DevTools.
|
|
|
|
// mainWindow.webContents.openDevTools()
|
|
|
|
|
2020-03-04 11:41:40 +01:00
|
|
|
// Emitted when the window is closed.
|
2016-10-30 11:57:12 +01:00
|
|
|
mainWindow.on('closed', () => {
|
|
|
|
// 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;
|
|
|
|
});
|
2020-02-18 10:06:57 +01:00
|
|
|
|
|
|
|
// https://stackoverflow.com/questions/39574636/prompt-to-save-quit-before-closing-window/47434365
|
|
|
|
mainWindow.on('close', (e) => {
|
2020-02-20 05:03:25 +01:00
|
|
|
if (!askBeforeClose) return;
|
|
|
|
|
2020-02-18 10:06:57 +01:00
|
|
|
const choice = electron.dialog.showMessageBoxSync(mainWindow, {
|
|
|
|
type: 'question',
|
|
|
|
buttons: ['Yes', 'No'],
|
|
|
|
title: 'Confirm quit',
|
|
|
|
message: 'Are you sure you want to quit? You will lose all unsaved work',
|
|
|
|
});
|
|
|
|
if (choice === 1) {
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
2016-10-30 11:57:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
2018-02-17 15:15:30 +01:00
|
|
|
app.on('ready', async () => {
|
2016-10-30 11:57:12 +01:00
|
|
|
createWindow();
|
2016-11-05 21:22:31 +01:00
|
|
|
menu(app, mainWindow);
|
2018-02-17 15:15:30 +01:00
|
|
|
|
2020-04-03 12:00:00 +02:00
|
|
|
// process.windowsStore is not working. Waiting for fix: https://github.com/electron/electron/issues/18161
|
|
|
|
// if (!process.windowsStore && !process.mas) {
|
|
|
|
if (os.platform() !== 'win32' && !process.mas) {
|
2020-03-31 07:11:55 +02:00
|
|
|
const newVersion = await checkNewVersion();
|
|
|
|
if (newVersion) {
|
|
|
|
menu(app, mainWindow, newVersion);
|
|
|
|
}
|
2018-02-17 15:15:30 +01:00
|
|
|
}
|
2016-10-30 11:57:12 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Quit when all windows are closed.
|
|
|
|
app.on('window-all-closed', () => {
|
|
|
|
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 (mainWindow === null) {
|
|
|
|
createWindow();
|
|
|
|
}
|
|
|
|
});
|
2016-11-21 19:05:48 +01:00
|
|
|
|
2020-03-31 13:59:05 +02:00
|
|
|
let openFileInitial;
|
|
|
|
|
2016-11-21 19:05:48 +01:00
|
|
|
electron.ipcMain.on('renderer-ready', () => {
|
2020-03-31 13:59:05 +02:00
|
|
|
rendererReady = true;
|
2016-11-21 19:05:48 +01:00
|
|
|
if (!isDev) {
|
|
|
|
const fileToOpen = process.argv[1];
|
2020-02-11 15:16:19 +01:00
|
|
|
// https://github.com/electron/electron/issues/3657
|
2020-03-31 13:59:05 +02:00
|
|
|
if (fileToOpen && !fileToOpen.startsWith('-psn_')) openFile(fileToOpen);
|
2016-11-21 19:05:48 +01:00
|
|
|
}
|
2020-03-31 13:59:05 +02:00
|
|
|
if (openFileInitial) openFile(openFileInitial);
|
|
|
|
});
|
|
|
|
|
|
|
|
app.on('open-file', (event, path) => {
|
|
|
|
if (rendererReady) openFile(path);
|
|
|
|
else openFileInitial = path;
|
2016-11-21 19:05:48 +01:00
|
|
|
});
|
2020-02-20 05:03:25 +01:00
|
|
|
|
|
|
|
electron.ipcMain.on('setAskBeforeClose', (e, val) => {
|
|
|
|
askBeforeClose = val;
|
|
|
|
});
|