2017-05-03 17:48:23 +00:00
|
|
|
import needsRestart from 'electron-squirrel-startup';
|
2016-12-01 18:48:49 +00:00
|
|
|
import electron from 'electron';
|
2017-05-03 17:48:23 +00:00
|
|
|
import {isDevelopment, isMac} from './common/constants';
|
|
|
|
import * as errorHandling from './main/error-handling';
|
|
|
|
import * as updates from './main/updates';
|
2017-05-24 16:25:22 +00:00
|
|
|
import * as windowUtils from './main/window-utils';
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Handle potential auto-update
|
|
|
|
if (needsRestart) {
|
|
|
|
process.exit(0);
|
|
|
|
}
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Initialize some things
|
|
|
|
errorHandling.init();
|
|
|
|
updates.init();
|
2017-05-24 16:25:22 +00:00
|
|
|
windowUtils.init();
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
function addUrlToOpen (e, url) {
|
|
|
|
e.preventDefault();
|
|
|
|
args.push(url);
|
2016-12-01 18:48:49 +00:00
|
|
|
}
|
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
const {app, ipcMain} = electron;
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
const args = process.argv.slice(1);
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Set as default protocol
|
|
|
|
app.setAsDefaultProtocolClient(`insomnia${isDevelopment() ? 'dev' : ''}`);
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
app.on('open-url', addUrlToOpen);
|
2016-12-01 18:48:49 +00:00
|
|
|
|
|
|
|
// Enable this for CSS grid layout :)
|
|
|
|
app.commandLine.appendSwitch('enable-experimental-web-platform-features');
|
|
|
|
|
|
|
|
// Quit when all windows are closed (except on Mac).
|
|
|
|
app.on('window-all-closed', () => {
|
2017-05-03 17:48:23 +00:00
|
|
|
if (!isMac()) {
|
2016-12-01 18:48:49 +00:00
|
|
|
app.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Mac-only, when the user clicks the doc icon
|
|
|
|
app.on('activate', (e, hasVisibleWindows) => {
|
|
|
|
// Create a new window when clicking the doc icon if there isn't one open
|
|
|
|
if (!hasVisibleWindows) {
|
|
|
|
try {
|
2017-05-24 16:25:22 +00:00
|
|
|
windowUtils.createWindow();
|
2016-12-01 18:48:49 +00:00
|
|
|
} catch (e) {
|
|
|
|
// This might happen if 'ready' hasn't fired yet. So we're just going
|
|
|
|
// to silence these errors.
|
|
|
|
console.log('-- App not ready to "activate" yet --');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// When the app is first launched
|
|
|
|
app.on('ready', () => {
|
2017-05-03 17:48:23 +00:00
|
|
|
app.removeListener('open-url', addUrlToOpen);
|
2017-05-24 16:25:22 +00:00
|
|
|
const window = windowUtils.createWindow();
|
2016-12-01 18:48:49 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Handle URLs sent via command line args
|
|
|
|
ipcMain.once('app-ready', () => {
|
|
|
|
args.length && window.send('run-command', args[0]);
|
2016-12-01 18:48:49 +00:00
|
|
|
});
|
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Called when second instance launched with args (Windows)
|
|
|
|
app.makeSingleInstance(args => {
|
|
|
|
args.length && window.send('run-command', args[0]);
|
2016-12-01 18:48:49 +00:00
|
|
|
});
|
2016-12-01 20:22:43 +00:00
|
|
|
|
2017-05-03 17:48:23 +00:00
|
|
|
// Handle URLs when app already open
|
|
|
|
app.addListener('open-url', (e, url) => {
|
|
|
|
window.send('run-command', url);
|
|
|
|
// Apparently a timeout is needed because Chrome steals back focus immediately
|
|
|
|
// after opening the URL.
|
|
|
|
setTimeout(() => {
|
|
|
|
window.focus();
|
|
|
|
}, 100);
|
2016-12-01 18:48:49 +00:00
|
|
|
});
|
2017-05-03 17:48:23 +00:00
|
|
|
});
|