2017-11-05 02:49:23 +02:00
|
|
|
// This is the basic initialization for the Electron MAIN process
|
|
|
|
|
2017-11-04 13:26:49 +02:00
|
|
|
const electronApp = require('electron').app;
|
2021-10-01 20:35:27 +02:00
|
|
|
require('@electron/remote/main').initialize();
|
2020-10-09 19:35:46 +02:00
|
|
|
const ElectronAppWrapper = require('./ElectronAppWrapper').default;
|
2017-11-05 02:17:48 +02:00
|
|
|
const { initBridge } = require('./bridge');
|
2020-11-07 17:59:37 +02:00
|
|
|
const Logger = require('@joplin/lib/Logger').default;
|
|
|
|
const FsDriverNode = require('@joplin/lib/fs-driver-node').default;
|
|
|
|
const envFromArgs = require('@joplin/lib/envFromArgs');
|
2020-11-11 16:22:42 +02:00
|
|
|
const packageInfo = require('./packageInfo.js');
|
2021-10-16 11:07:41 +02:00
|
|
|
const { isCallbackUrl } = require('@joplin/lib/callbackUrlUtils');
|
2020-11-11 16:22:42 +02:00
|
|
|
|
|
|
|
// Electron takes the application name from package.json `name` and
|
|
|
|
// displays this in the tray icon toolip and message box titles, however in
|
|
|
|
// our case it's a string like "@joplin/app-desktop". It's also supposed to
|
|
|
|
// check the productName key but is not doing it, so here set the
|
|
|
|
// application name to the right string.
|
|
|
|
electronApp.name = packageInfo.name;
|
2017-11-03 01:26:08 +02:00
|
|
|
|
2017-11-04 13:26:49 +02:00
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
|
|
console.error('Unhandled promise rejection', p, 'reason:', reason);
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
|
2018-04-23 21:50:29 +02:00
|
|
|
// Likewise, we want to know if a profile is specified early, in particular
|
|
|
|
// to save the window state data.
|
|
|
|
function profileFromArgs(args) {
|
|
|
|
if (!args) return null;
|
|
|
|
const profileIndex = args.indexOf('--profile');
|
|
|
|
if (profileIndex <= 0 || profileIndex >= args.length - 1) return null;
|
|
|
|
const profileValue = args[profileIndex + 1];
|
|
|
|
return profileValue ? profileValue : null;
|
|
|
|
}
|
|
|
|
|
2017-11-14 12:53:18 +02:00
|
|
|
Logger.fsDriver_ = new FsDriverNode();
|
|
|
|
|
2017-11-13 20:47:35 +02:00
|
|
|
const env = envFromArgs(process.argv);
|
2018-04-23 21:50:29 +02:00
|
|
|
const profilePath = profileFromArgs(process.argv);
|
2020-09-01 23:25:23 +02:00
|
|
|
const isDebugMode = !!process.argv && process.argv.indexOf('--debug') >= 0;
|
2017-11-13 20:47:35 +02:00
|
|
|
|
2021-10-16 11:07:41 +02:00
|
|
|
electronApp.setAsDefaultProtocolClient('joplin');
|
|
|
|
|
|
|
|
const initialCallbackUrl = process.argv.find((arg) => isCallbackUrl(arg));
|
|
|
|
|
|
|
|
const wrapper = new ElectronAppWrapper(electronApp, env, profilePath, isDebugMode, initialCallbackUrl);
|
2017-11-04 15:23:15 +02:00
|
|
|
|
2017-11-05 02:17:48 +02:00
|
|
|
initBridge(wrapper);
|
2017-11-04 15:23:15 +02:00
|
|
|
|
2017-11-05 02:17:48 +02:00
|
|
|
wrapper.start().catch((error) => {
|
|
|
|
console.error('Electron App fatal error:');
|
2017-11-04 13:26:49 +02:00
|
|
|
console.error(error);
|
2019-07-30 09:35:42 +02:00
|
|
|
});
|