insomnia/app/main.development.js

80 lines
2.1 KiB
JavaScript
Raw Normal View History

import needsRestart from 'electron-squirrel-startup';
2016-12-01 18:48:49 +00:00
import electron from 'electron';
import {isDevelopment, isMac} from './common/constants';
import * as errorHandling from './main/error-handling';
import * as updates from './main/updates';
import {createWindow} from './main/window-utils';
2016-12-01 18:48:49 +00:00
// Handle potential auto-update
if (needsRestart) {
process.exit(0);
}
2016-12-01 18:48:49 +00:00
// Initialize some things
errorHandling.init();
updates.init();
2016-12-01 18:48:49 +00:00
function addUrlToOpen (e, url) {
e.preventDefault();
args.push(url);
2016-12-01 18:48:49 +00:00
}
const {app, ipcMain} = electron;
2016-12-01 18:48:49 +00:00
const args = process.argv.slice(1);
2016-12-01 18:48:49 +00:00
// Set as default protocol
app.setAsDefaultProtocolClient(`insomnia${isDevelopment() ? 'dev' : ''}`);
2016-12-01 18:48:49 +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', () => {
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 {
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', () => {
app.removeListener('open-url', addUrlToOpen);
const window = createWindow();
2016-12-01 18:48:49 +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
});
// 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
// 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
});
});