electron-node-red/main.js

226 wiersze
6.9 KiB
JavaScript
Czysty Zwykły widok Historia

2016-05-06 12:18:15 +00:00
2016-03-09 21:49:41 +00:00
'use strict';
2016-10-30 22:06:48 +00:00
const os = require('os');
2016-03-09 21:49:41 +00:00
const electron = require('electron');
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
2016-06-19 22:57:24 +00:00
// Start directly on the ui page
const url = "http://localhost:8000/ui";
2016-03-09 21:49:41 +00:00
2016-06-02 11:44:55 +00:00
const {Menu, MenuItem} = electron;
2016-10-30 22:06:48 +00:00
// this should be placed at top of main.js to handle setup events quickly
if (handleSquirrelEvent()) {
// squirrel event handled and app will exit in 1000ms, so don't do anything else
return;
}
2016-03-09 21:49:41 +00:00
var http = require('http');
var express = require("express");
var RED = require("node-red");
// Create an Express app
var red_app = express();
// Add a simple route for static content served from 'public'
//red_app.use("/",express.static("public"));
// Create a server
var server = http.createServer(red_app);
2016-10-30 22:06:48 +00:00
// If on Windows move the userdir away from the asar bundle.
var userdir = __dirname;
if (os.platform() === "win32") {
const fs = require('fs');
userdir = os.homedir() + '\\.node-red';
if (!fs.existsSync(userdir)) {
fs.mkdirSync(userdir);
}
if (!fs.existsSync(userdir+"\\flows.json")) {
fs.writeFileSync(userdir+"\\flows.json", fs.readFileSync(__dirname+"\\flows.json"));
}
}
2016-03-09 21:49:41 +00:00
// Create the settings object - see default settings.js file for other options
var settings = {
2016-05-20 15:39:50 +00:00
verbose: true,
2016-03-09 21:49:41 +00:00
httpAdminRoot:"/admin",
httpNodeRoot: "/",
2016-10-30 22:06:48 +00:00
userDir: userdir,
2016-03-09 21:54:20 +00:00
flowFile: "flows.json",
2016-03-09 21:49:41 +00:00
functionGlobalContext: { } // enables global context
};
// Initialise the runtime with a server and settings
RED.init(server,settings);
// Serve the editor UI from /red
red_app.use(settings.httpAdminRoot,RED.httpAdmin);
// Serve the http nodes UI from /api
red_app.use(settings.httpNodeRoot,RED.httpNode);
2016-05-06 12:18:15 +00:00
// Create the Application's main menu
var template = [{
label: "Application",
submenu: [
{ label: "About Application", selector: "orderFrontStandardAboutPanel:" },
{ type: "separator" },
{ label: "Quit", accelerator: "Command+Q", click: function() { app.quit(); }}
]}, {
label: "Edit",
submenu: [
{ 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:" }
]}
];
2016-03-09 21:49:41 +00: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.
let mainWindow;
function createWindow () {
2016-05-06 12:18:15 +00:00
// Create the browser window.
mainWindow = new BrowserWindow({
autoHideMenuBar: true,
webPreferences: {
nodeIntegration: false
},
title: "Node-RED",
2016-06-15 19:08:26 +00:00
fullscreenable: true,
//titleBarStyle: "hidden",
2016-05-06 12:18:15 +00:00
width: 1024,
height: 768,
icon: __dirname + "/nodered.png"
});
var webContents = mainWindow.webContents;
webContents.on('did-get-response-details', function(event, status, newURL, originalURL, httpResponseCode) {
2016-06-19 22:57:24 +00:00
if ((httpResponseCode == 404) && (newURL == url)) {
setTimeout(webContents.reload, 200);
2016-05-06 12:18:15 +00:00
}
Menu.setApplicationMenu(Menu.buildFromTemplate(template));
});
// Open the DevTools.
//mainWindow.webContents.openDevTools();
mainWindow.webContents.on("new-window", function(e, url, frameName, disposition, options) {
// if a child window opens... modify any other options such as width/height, etc
// in this case make the child overlap the parent exactly...
var w = mainWindow.getBounds();
options.x = w.x;
options.y = w.y;
options.width = w.width;
options.height = w.height;
//re-use the same child name so all "2nd" windows use the same one.
//frameName = "child";
})
// 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;
});
2016-03-09 21:49:41 +00:00
}
// Called when Electron has finished initialization and is ready to create browser windows.
2016-03-09 21:49:41 +00:00
app.on('ready', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', function () {
2016-05-06 12:18:15 +00:00
// 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();
}
2016-03-09 21:49:41 +00:00
});
app.on('activate', function () {
2016-05-06 12:18:15 +00:00
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow();
}
2016-03-09 21:49:41 +00:00
});
// Start the Node-RED runtime, then load the inital page
RED.start().then(function() {
server.listen(8000,function() {
mainWindow.loadURL(url);
});
});
2016-10-30 22:06:48 +00:00
// All this Squirrel stuff is for the Windows installer
function handleSquirrelEvent() {
if (process.argv.length === 1) {
return false;
}
const ChildProcess = require('child_process');
const path = require('path');
const appFolder = path.resolve(process.execPath, '..');
const rootAtomFolder = path.resolve(appFolder, '..');
const updateDotExe = path.resolve(path.join(rootAtomFolder, 'Update.exe'));
const exeName = path.basename(process.execPath);
const spawn = function(command, args) {
let spawnedProcess, error;
try {
spawnedProcess = ChildProcess.spawn(command, args, {detached: true});
} catch (error) {}
return spawnedProcess;
};
const spawnUpdate = function(args) {
return spawn(updateDotExe, args);
};
const squirrelEvent = process.argv[1];
switch (squirrelEvent) {
case '--squirrel-install':
case '--squirrel-updated':
// Optionally do things such as:
// - Add your .exe to the PATH
// - Write to the registry for things like file associations and
// explorer context menus
// Install desktop and start menu shortcuts
spawnUpdate(['--createShortcut', exeName]);
setTimeout(app.quit, 1000);
return true;
case '--squirrel-uninstall':
// Undo anything you did in the --squirrel-install and
// --squirrel-updated handlers
// Remove desktop and start menu shortcuts
spawnUpdate(['--removeShortcut', exeName]);
setTimeout(app.quit, 1000);
return true;
case '--squirrel-obsolete':
// This is called on the outgoing version of your app before
// we update to the new version - it's the opposite of
// --squirrel-updated
app.quit();
return true;
}
};