lossless-cut/public/electron.js

174 wiersze
5.0 KiB
JavaScript
Czysty Zwykły widok Historia

2016-10-30 10:57:12 +00:00
const electron = require('electron'); // eslint-disable-line
const isDev = require('electron-is-dev');
2020-04-17 15:44:57 +00:00
const unhandled = require('electron-unhandled');
const i18n = require('i18next');
2016-10-30 10:57:12 +00:00
const menu = require('./menu');
2020-04-17 15:44:11 +00:00
const configStore = require('./configStore');
2016-10-30 10:57:12 +00:00
2018-02-17 14:15:30 +00:00
const { checkNewVersion } = require('./update-checker');
require('./i18n');
2018-09-30 20:08:36 +00:00
const { app } = electron;
const { BrowserWindow } = electron;
2016-10-30 10:57:12 +00:00
2021-03-30 15:02:53 +00:00
// https://github.com/electron/electron/issues/18397
app.allowRendererProcessReuse = true;
2020-04-17 15:44:57 +00:00
unhandled({
showDialog: true,
});
2020-02-11 14:16:03 +00:00
app.name = 'LosslessCut';
2016-10-30 10:57:12 +00: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 04:03:25 +00:00
let askBeforeClose = false;
2020-03-31 11:59:05 +00:00
let rendererReady = false;
let newVersion;
2020-03-31 11:59:05 +00:00
const openFiles = (paths) => mainWindow.webContents.send('file-opened', paths);
2021-02-09 15:06:17 +00:00
const openFile = (path) => openFiles([path]);
2020-02-20 04:03:25 +00:00
2016-10-30 10:57:12 +00:00
function createWindow() {
mainWindow = new BrowserWindow({
darkTheme: true,
webPreferences: {
2021-04-01 14:29:15 +00:00
enableRemoteModule: true,
contextIsolation: false,
nodeIntegration: true,
2020-03-04 10:41:40 +00:00
// https://github.com/electron/electron/issues/5107
webSecurity: !isDev,
},
2016-10-30 10:57:12 +00:00
});
2020-03-04 10:41:40 +00:00
2020-12-13 13:36:12 +00:00
if (isDev) mainWindow.loadURL('http://localhost:3001');
// Need to useloadFile for special characters https://github.com/mifi/lossless-cut/issues/40
else mainWindow.loadFile('build/index.html');
2016-10-30 10:57:12 +00:00
2020-02-24 10:18:44 +00:00
// Open the DevTools.
// mainWindow.webContents.openDevTools()
2020-03-04 10:41:40 +00:00
// Emitted when the window is closed.
2016-10-30 10:57:12 +00: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 09:06:57 +00:00
// https://stackoverflow.com/questions/39574636/prompt-to-save-quit-before-closing-window/47434365
mainWindow.on('close', (e) => {
2020-02-20 04:03:25 +00:00
if (!askBeforeClose) return;
2020-02-18 09:06:57 +00:00
const choice = electron.dialog.showMessageBoxSync(mainWindow, {
type: 'question',
buttons: ['Yes', 'No'],
title: i18n.t('Confirm quit'),
message: i18n.t('Are you sure you want to quit?'),
2020-02-18 09:06:57 +00:00
});
if (choice === 1) {
e.preventDefault();
}
});
2016-10-30 10:57:12 +00:00
}
function updateMenu() {
menu(app, mainWindow, newVersion);
}
2016-10-30 10:57:12 +00: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 14:15:30 +00:00
app.on('ready', async () => {
2021-04-08 15:52:15 +00:00
// https://github.com/electron/electron/issues/23757
// https://github.com/electron/electron/pull/28489
// TODO I think this can be removed when we are on electron 12 or 14
if (isDev) {
electron.protocol.registerFileProtocol('file', (request, callback) => {
const pathname = decodeURIComponent(request.url.replace('file:///', ''));
callback(pathname);
});
}
2020-04-17 15:44:11 +00:00
await configStore.init();
2021-04-01 14:29:15 +00: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));
}
2016-10-30 10:57:12 +00:00
createWindow();
updateMenu();
2018-02-17 14:15:30 +00:00
2020-12-13 15:59:50 +00:00
if (!process.windowsStore && !process.mas) {
newVersion = await checkNewVersion();
// newVersion = '1.2.3';
if (newVersion) updateMenu();
2018-02-17 14:15:30 +00:00
}
2016-10-30 10:57:12 +00: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();
}
});
2020-03-31 11:59:05 +00:00
let openFileInitial;
electron.ipcMain.on('renderer-ready', () => {
2020-03-31 11:59:05 +00:00
rendererReady = true;
const ignoreFirstArgs = isDev ? 2 : 1;
// production: First arg is the LosslessCut executable
// dev: First 2 args are electron and the electron.js
// https://github.com/electron/electron/issues/3657
// https://github.com/mifi/lossless-cut/issues/357
// https://github.com/mifi/lossless-cut/issues/639
// https://github.com/mifi/lossless-cut/issues/591
const filesToOpen = process.argv.length > ignoreFirstArgs
? process.argv.slice(ignoreFirstArgs).filter((arg) => arg && !arg.startsWith('-'))
: [];
if (filesToOpen.length > 0) openFiles(filesToOpen);
else if (openFileInitial) openFile(openFileInitial);
2020-03-31 11:59:05 +00:00
});
// Mac OS open with LosslessCut
2020-03-31 11:59:05 +00:00
app.on('open-file', (event, path) => {
if (rendererReady) openFile(path);
else openFileInitial = path;
});
2020-02-20 04:03:25 +00:00
electron.ipcMain.on('setAskBeforeClose', (e, val) => {
askBeforeClose = val;
});
2020-04-17 15:44:11 +00:00
electron.ipcMain.on('setLanguage', (e, language) => {
i18n.changeLanguage(language).then(() => updateMenu()).catch(console.error);
});
function focusWindow() {
try {
app.focus({ steal: true });
} catch (err) {
console.error('Failed to focus window', err);
}
}
module.exports = { focusWindow };