mattermost-desktop/src/main.js

189 lines
5.5 KiB
JavaScript
Raw Normal View History

'use strict';
2015-10-23 09:44:10 -07:00
2015-11-20 01:54:44 -08:00
const electron = require('electron');
const app = electron.app; // Module to control application life.
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window.
const Menu = electron.Menu;
const Tray = electron.Tray;
const ipc = electron.ipcMain;
const fs = require('fs');
2016-01-30 07:50:43 -08:00
const path = require('path');
2015-12-23 02:25:14 -08:00
var settings = require('./common/settings');
2016-01-30 07:50:43 -08:00
var appMenu = require('./main/menus/app');
2015-10-23 09:44:10 -07:00
var argv = require('yargs').argv;
var client = null;
if (argv.livereload) {
client = require('electron-connect').client.create();
2015-12-23 05:04:21 -08:00
client.on('reload', function() {
mainWindow.reload();
});
}
if (argv['config-file']) {
global['config-file'] = argv['config-file'];
}
else {
global['config-file'] = app.getPath('userData') + '/config.json'
}
var config = {};
2015-12-23 02:25:14 -08:00
try {
var configFile = global['config-file'];
config = settings.readFileSync(configFile);
2015-12-23 02:25:14 -08:00
if (config.version != settings.version) {
config = settings.upgrade(config);
settings.writeFileSync(configFile, config);
}
}
catch (e) {
2016-01-30 07:50:43 -08:00
config = settings.loadDefault();
2015-12-23 02:25:14 -08:00
console.log('Failed to read or upgrade config.json');
}
2015-10-23 09:44:10 -07:00
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
var mainWindow = null;
var trayIcon = null;
2015-10-23 09:44:10 -07:00
var willAppQuit = false;
// For toast notification on windows
app.setAppUserModelId('yuya-oc.electron-mattermost');
2015-10-23 09:44:10 -07:00
// Quit when all windows are closed.
app.on('window-all-closed', function() {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
// For win32, auto-hide menu bar.
app.on('browser-window-created', function(event, window) {
if (process.platform === 'win32' || process.platform === 'linux') {
if (config.hideMenuBar) {
window.setAutoHideMenuBar(true);
window.setMenuBarVisibility(false);
}
2015-10-23 09:44:10 -07:00
}
});
// For OSX, show hidden mainWindow when clicking dock icon.
app.on('activate', function(event) {
mainWindow.show();
});
app.on('before-quit', function() {
willAppQuit = true;
});
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
app.on('ready', function() {
// set up tray icon to show balloon
if (process.platform === 'win32') {
2016-01-30 07:50:43 -08:00
trayIcon = new Tray(path.resolve(__dirname, 'resources/tray.png'));
trayIcon.setToolTip(app.getName());
2016-01-30 07:50:43 -08:00
var tray_menu = require('./main/menus/tray').createDefault();
trayIcon.setContextMenu(tray_menu);
2015-11-20 01:04:20 -08:00
trayIcon.on('click', function() {
mainWindow.focus();
});
2015-11-20 01:04:20 -08:00
trayIcon.on('balloon-click', function() {
mainWindow.focus();
});
ipc.on('notified', function(event, arg) {
trayIcon.displayBalloon({
2016-01-30 07:50:43 -08:00
icon: path.resolve(__dirname, 'resources/appicon.png'),
title: arg.title,
content: arg.options.body
});
});
}
2015-10-23 09:44:10 -07:00
// Create the browser window.
var bounds_info_path = app.getPath("userData") + "/bounds-info.json";
var window_options;
try {
window_options = require(bounds_info_path);
}
catch (e) {
// follow Electron's defaults
window_options = {};
}
2016-01-30 07:50:43 -08:00
window_options.icon = path.resolve(__dirname, 'resources/appicon.png');
mainWindow = new BrowserWindow(window_options);
if (window_options.maximized) {
mainWindow.maximize();
}
2015-10-23 09:44:10 -07:00
// and load the index.html of the app.
2015-12-22 06:35:22 -08:00
mainWindow.loadURL('file://' + __dirname + '/browser/index.html');
2015-10-23 09:44:10 -07:00
// Open the DevTools.
// mainWindow.openDevTools();
var saveWindowState = function(file, window) {
var window_state = window.getBounds();
window_state.maximized = window.isMaximized();
window_state.fullscreen = window.isFullScreen();
fs.writeFileSync(bounds_info_path, JSON.stringify(window_state));
};
2015-10-23 09:44:10 -07:00
mainWindow.on('close', function(event) {
if (willAppQuit) { // when [Ctrl|Cmd]+Q
saveWindowState(bounds_info_path, mainWindow);
}
else { // Minimize or hide the window for close button.
2015-10-23 09:44:10 -07:00
event.preventDefault();
switch (process.platform) {
case 'win32':
case 'linux':
2015-10-23 09:44:10 -07:00
mainWindow.minimize();
break;
case 'darwin':
mainWindow.hide();
break;
default:
}
}
});
// App should save bounds when a window is closed.
// However, 'close' is not fired in some situations(shutdown, ctrl+c)
// because main process is killed in such situations.
// 'blur' event was effective in order to avoid this.
// Ideally, app should detect that OS is shutting down.
mainWindow.on('blur', function() {
saveWindowState(bounds_info_path, mainWindow);
});
var app_menu = appMenu.createMenu(mainWindow);
Menu.setApplicationMenu(app_menu);
2015-10-23 09:44:10 -07:00
// Emitted when the window is closed.
mainWindow.on('closed', function() {
// 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;
});
// Deny drag&drop navigation in mainWindow.
// Drag&drop is allowed in webview of index.html.
mainWindow.webContents.on('will-navigate', function(event, url) {
var dirname = __dirname;
if (process.platform === 'win32') {
dirname = '/' + dirname.replace(/\\/g, '/');
}
var index = url.indexOf('file://' + dirname);
if (index !== 0) {
event.preventDefault();
}
});
});