mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
041ec5139e
* Working concept of DB on backend * Local DB is local
101 lines
3.0 KiB
JavaScript
101 lines
3.0 KiB
JavaScript
import needsRestart from 'electron-squirrel-startup';
|
|
import electron from 'electron';
|
|
import {isDevelopment, isMac} from './common/constants';
|
|
import * as errorHandling from './main/error-handling';
|
|
import * as updates from './main/updates';
|
|
import * as windowUtils from './main/window-utils';
|
|
import installExtension, {REACT_DEVELOPER_TOOLS, REDUX_DEVTOOLS} from 'electron-devtools-installer';
|
|
import * as models from './models/index';
|
|
import * as database from './common/database';
|
|
|
|
// Handle potential auto-update
|
|
if (needsRestart) {
|
|
process.exit(0);
|
|
}
|
|
|
|
// Initialize some things
|
|
errorHandling.init();
|
|
updates.init();
|
|
windowUtils.init();
|
|
database.init(models.types());
|
|
|
|
function addUrlToOpen (e, url) {
|
|
e.preventDefault();
|
|
args.push(url);
|
|
}
|
|
|
|
const {app, ipcMain, session} = electron;
|
|
|
|
const args = process.argv.slice(1);
|
|
|
|
// Set as default protocol
|
|
app.setAsDefaultProtocolClient(`insomnia${isDevelopment() ? 'dev' : ''}`);
|
|
|
|
app.on('open-url', addUrlToOpen);
|
|
|
|
// 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()) {
|
|
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 {
|
|
windowUtils.createWindow();
|
|
} 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', async () => {
|
|
// Install developer extensions if we're in dev mode
|
|
if (isDevelopment() || process.env.INSOMNIA_FORCE_DEBUG) {
|
|
try {
|
|
console.log('Installed Extension: ' + await installExtension(REACT_DEVELOPER_TOOLS));
|
|
console.log('Installed Extension: ' + await installExtension(REDUX_DEVTOOLS));
|
|
} catch (err) {
|
|
console.warn('Failed to install devtools extension', err);
|
|
}
|
|
}
|
|
|
|
app.removeListener('open-url', addUrlToOpen);
|
|
const window = windowUtils.createWindow();
|
|
|
|
// Handle URLs sent via command line args
|
|
ipcMain.once('app-ready', () => {
|
|
args.length && window.send('run-command', args[0]);
|
|
});
|
|
|
|
// Called when second instance launched with args (Windows)
|
|
app.makeSingleInstance(args => {
|
|
args.length && window.send('run-command', args[0]);
|
|
});
|
|
|
|
// 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);
|
|
});
|
|
|
|
// Don't send origin header from Insomnia app because we're not technically using CORS
|
|
session.defaultSession.webRequest.onBeforeSendHeaders((details, callback) => {
|
|
delete details.requestHeaders['Origin'];
|
|
callback({ cancel: false, requestHeaders: details.requestHeaders });
|
|
});
|
|
});
|