2015-07-05 06:08:13 +00:00
|
|
|
/**
|
|
|
|
* Created by JiaHao on 4/7/15.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var app = require('app');
|
|
|
|
var fs = require('fs');
|
|
|
|
var BrowserWindow = require('browser-window');
|
2015-07-06 01:38:04 +00:00
|
|
|
var ipc = require('ipc');
|
2015-07-05 06:08:13 +00:00
|
|
|
|
|
|
|
const APP_ARGS_FILE_PATH = __dirname + '/targetUrl.txt';
|
|
|
|
require('crash-reporter').start();
|
|
|
|
|
|
|
|
var mainWindow = null;
|
|
|
|
|
2015-07-06 02:31:09 +00:00
|
|
|
var appArgs = JSON.parse(fs.readFileSync(APP_ARGS_FILE_PATH, 'utf8'));
|
|
|
|
|
2015-07-05 06:08:13 +00:00
|
|
|
app.on('window-all-closed', function() {
|
|
|
|
if (process.platform != 'darwin') {
|
|
|
|
app.quit();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
app.on('ready', function() {
|
|
|
|
mainWindow = new BrowserWindow(
|
|
|
|
{
|
2015-07-06 02:31:09 +00:00
|
|
|
width: appArgs.width || 1280,
|
|
|
|
height: appArgs.height || 800,
|
2015-07-05 06:08:13 +00:00
|
|
|
'web-preferences': {
|
|
|
|
javascript: true,
|
|
|
|
plugins: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
mainWindow.loadUrl('file://' + __dirname + '/index.html');
|
|
|
|
|
2015-07-06 01:46:27 +00:00
|
|
|
//mainWindow.openDevTools();
|
2015-07-05 06:08:13 +00:00
|
|
|
mainWindow.webContents.on('did-finish-load', function() {
|
|
|
|
|
2015-07-06 02:31:09 +00:00
|
|
|
mainWindow.webContents.send('params', JSON.stringify(appArgs));
|
2015-07-05 06:08:13 +00:00
|
|
|
});
|
|
|
|
|
2015-07-06 01:38:04 +00:00
|
|
|
// if the window is focused, clear the badge
|
|
|
|
mainWindow.on('focus', function () {
|
|
|
|
app.dock.setBadge('');
|
|
|
|
});
|
2015-07-05 06:08:13 +00:00
|
|
|
|
|
|
|
mainWindow.on('closed', function() {
|
|
|
|
mainWindow = null;
|
2015-07-06 01:38:04 +00:00
|
|
|
});
|
|
|
|
});
|
2015-07-05 06:08:13 +00:00
|
|
|
|
2015-07-06 01:38:04 +00:00
|
|
|
// listen for a notification message
|
|
|
|
ipc.on('notification-message', function(event, arg) {
|
|
|
|
console.log(arg); // prints "ping"
|
|
|
|
if (arg === 'TITLE_CHANGED') {
|
|
|
|
if (!mainWindow.isFocused()) {
|
|
|
|
app.dock.setBadge('●');
|
|
|
|
}
|
|
|
|
}
|
2015-07-06 03:46:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
app.on('window-all-closed', function() {
|
|
|
|
app.quit();
|
2015-07-05 12:11:34 +00:00
|
|
|
});
|