1
0
mirror of https://github.com/jiahaog/Nativefier synced 2024-06-20 06:56:35 +02:00
Nativefier/app/main.js

64 lines
1.5 KiB
JavaScript
Raw Normal View History

2015-07-05 08:08:13 +02:00
/**
* Created by JiaHao on 4/7/15.
*/
var app = require('app');
var fs = require('fs');
var BrowserWindow = require('browser-window');
var ipc = require('ipc');
2015-07-05 08:08:13 +02:00
const APP_ARGS_FILE_PATH = __dirname + '/targetUrl.txt';
require('crash-reporter').start();
var mainWindow = null;
var appArgs = JSON.parse(fs.readFileSync(APP_ARGS_FILE_PATH, 'utf8'));
2015-07-05 08:08:13 +02:00
app.on('window-all-closed', function() {
if (process.platform != 'darwin') {
app.quit();
}
});
app.on('ready', function() {
mainWindow = new BrowserWindow(
{
width: appArgs.width || 1280,
height: appArgs.height || 800,
2015-07-05 08:08:13 +02:00
'web-preferences': {
javascript: true,
plugins: true,
}
}
);
mainWindow.loadUrl('file://' + __dirname + '/index.html');
//mainWindow.openDevTools();
2015-07-05 08:08:13 +02:00
mainWindow.webContents.on('did-finish-load', function() {
mainWindow.webContents.send('params', JSON.stringify(appArgs));
2015-07-05 08:08:13 +02:00
});
// if the window is focused, clear the badge
mainWindow.on('focus', function () {
app.dock.setBadge('');
});
2015-07-05 08:08:13 +02:00
mainWindow.on('closed', function() {
mainWindow = null;
});
});
2015-07-05 08:08:13 +02: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 05:46:08 +02:00
});
app.on('window-all-closed', function() {
app.quit();
});