insomnia/app/app.js

93 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-04-20 06:09:46 +00:00
'use strict';
2016-03-22 18:20:05 +00:00
// Don't npm install this (it breaks). Rely on the global one.
2016-04-20 06:09:46 +00:00
const electron = require('electron');
2016-04-20 16:15:19 +00:00
const Menu = require('menu');
2016-03-22 18:20:05 +00:00
const app = electron.app; // Module to control application life.
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.
2016-03-23 05:26:27 +00:00
const IS_DEV = process.env.NODE_ENV === 'development';
2016-03-23 18:34:39 +00:00
const IS_MAC = process.platform === 'darwin';
2016-03-22 18:20:05 +00:00
var mainWindow = null;
// Quit when all windows are closed.
app.on('window-all-closed', () => {
2016-03-23 18:34:39 +00:00
if (!IS_MAC) {
2016-03-22 18:20:05 +00:00
app.quit();
}
});
app.on('ready', () => {
2016-03-22 18:20:05 +00:00
mainWindow = new BrowserWindow({
2016-04-19 06:05:55 +00:00
width: 1200,
height: 600,
2016-04-23 06:53:22 +00:00
minHeight: 500,
2016-04-09 19:10:34 +00:00
minWidth: 500,
2016-04-04 07:15:30 +00:00
acceptFirstMouse: true
2016-03-23 18:34:39 +00:00
// titleBarStyle: IS_MAC ? 'hidden-inset' : 'default'
2016-03-22 18:20:05 +00:00
});
2016-04-19 06:05:55 +00:00
// and load the app.html of the app.
2016-04-20 06:09:46 +00:00
mainWindow.loadURL(`file://${__dirname}/app.html`);
2016-03-22 18:20:05 +00:00
// Open the DevTools.
// if (IS_DEV) {
// mainWindow.webContents.openDevTools();
// }
2016-03-22 18:20:05 +00:00
// Emitted when the window is closed.
mainWindow.on('closed', () => {
2016-03-22 18:20:05 +00:00
// 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;
});
2016-04-20 16:15:19 +00:00
var template = [{
label: "Application",
submenu: [
2016-04-20 17:38:27 +00:00
{label: "About Application", selector: "orderFrontStandardAboutPanel:"},
{type: "separator"},
{
label: "Quit",
accelerator: "Command+Q",
click: function () {
app.quit();
}
}
]
}, {
2016-04-20 16:15:19 +00:00
label: "Edit",
submenu: [
2016-04-20 17:38:27 +00:00
{label: "Undo", accelerator: "CmdOrCtrl+Z", selector: "undo:"},
{label: "Redo", accelerator: "Shift+CmdOrCtrl+Z", selector: "redo:"},
{type: "separator"},
{label: "Cut", accelerator: "CmdOrCtrl+X", selector: "cut:"},
{label: "Copy", accelerator: "CmdOrCtrl+C", selector: "copy:"},
{label: "Paste", accelerator: "CmdOrCtrl+V", selector: "paste:"},
{label: "Select All", accelerator: "CmdOrCtrl+A", selector: "selectAll:"}
]
}];
if (IS_DEV) {
template.push({
label: 'View',
submenu: [{
label: 'Reload',
accelerator: 'Command+R',
click: function () {
mainWindow.reload();
}
}, {
label: 'Toggle DevTools',
accelerator: 'Alt+Command+I',
click: function () {
mainWindow.toggleDevTools();
}
}]
});
}
2016-04-20 16:15:19 +00:00
Menu.setApplicationMenu(Menu.buildFromTemplate(template));
2016-04-09 19:10:34 +00:00
});