2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 16:02:48 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
2016-11-02 23:53:18 +01:00
|
|
|
(function() {
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2014-08-28 01:35:07 +02:00
|
|
|
function loadNodeList() {
|
|
|
|
$.ajax({
|
|
|
|
headers: {
|
|
|
|
"Accept":"application/json"
|
|
|
|
},
|
2014-09-24 10:57:45 +02:00
|
|
|
cache: false,
|
2014-08-28 01:35:07 +02:00
|
|
|
url: 'nodes',
|
|
|
|
success: function(data) {
|
|
|
|
RED.nodes.setNodeList(data);
|
2015-05-06 23:14:00 +02:00
|
|
|
var nsCount = 0;
|
2016-07-06 18:22:45 +02:00
|
|
|
for (var i=0;i<data.length;i++) {
|
2015-05-06 23:14:00 +02:00
|
|
|
var ns = data[i];
|
|
|
|
if (ns.module != "node-red") {
|
|
|
|
nsCount++;
|
|
|
|
RED.i18n.loadCatalog(ns.id, function() {
|
|
|
|
nsCount--;
|
|
|
|
if (nsCount === 0) {
|
|
|
|
loadNodes();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nsCount === 0) {
|
|
|
|
loadNodes();
|
|
|
|
}
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
2014-02-16 01:39:30 +01:00
|
|
|
});
|
|
|
|
}
|
2014-09-04 09:19:37 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
function loadNodes() {
|
2014-08-28 01:35:07 +02:00
|
|
|
$.ajax({
|
|
|
|
headers: {
|
|
|
|
"Accept":"text/html"
|
|
|
|
},
|
2014-09-24 10:57:45 +02:00
|
|
|
cache: false,
|
2014-08-28 01:35:07 +02:00
|
|
|
url: 'nodes',
|
|
|
|
success: function(data) {
|
|
|
|
$("body").append(data);
|
2015-05-06 23:14:00 +02:00
|
|
|
$("body").i18n();
|
2016-08-09 11:43:03 +02:00
|
|
|
$("#palette > .palette-spinner").hide();
|
2016-08-04 17:49:36 +02:00
|
|
|
$(".palette-scroll").removeClass("hide");
|
|
|
|
$("#palette-search").removeClass("hide");
|
2014-08-28 01:35:07 +02:00
|
|
|
loadFlows();
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadFlows() {
|
2014-09-24 10:57:45 +02:00
|
|
|
$.ajax({
|
|
|
|
headers: {
|
2016-10-09 23:02:24 +02:00
|
|
|
"Accept":"application/json",
|
2014-09-24 10:57:45 +02:00
|
|
|
},
|
|
|
|
cache: false,
|
|
|
|
url: 'flows',
|
|
|
|
success: function(nodes) {
|
2016-09-24 23:57:41 +02:00
|
|
|
var currentHash = window.location.hash;
|
2016-10-09 23:02:24 +02:00
|
|
|
RED.nodes.version(nodes.rev);
|
|
|
|
RED.nodes.import(nodes.flows);
|
2015-03-15 22:54:36 +01:00
|
|
|
RED.nodes.dirty(false);
|
2015-03-12 12:21:05 +01:00
|
|
|
RED.view.redraw(true);
|
2016-09-24 23:57:41 +02:00
|
|
|
if (/^#flow\/.+$/.test(currentHash)) {
|
|
|
|
RED.workspaces.show(currentHash.substring(6));
|
|
|
|
}
|
2016-12-05 14:24:24 +01:00
|
|
|
|
|
|
|
var persistentNotifications = {};
|
|
|
|
RED.comms.subscribe("notification/#",function(topic,msg) {
|
|
|
|
var parts = topic.split("/");
|
|
|
|
var notificationId = parts[1];
|
|
|
|
if (msg.text) {
|
|
|
|
var text = RED._(msg.text,{default:msg.text});
|
|
|
|
if (!persistentNotifications.hasOwnProperty(notificationId)) {
|
|
|
|
persistentNotifications[notificationId] = RED.notify(text,msg.type,msg.timeout === undefined,msg.timeout);
|
|
|
|
} else {
|
|
|
|
persistentNotifications[notificationId].update(text,msg.timeout);
|
|
|
|
}
|
|
|
|
} else if (persistentNotifications.hasOwnProperty(notificationId)) {
|
|
|
|
persistentNotifications[notificationId].close();
|
|
|
|
delete persistentNotifications[notificationId];
|
|
|
|
}
|
|
|
|
});
|
2014-09-24 10:57:45 +02:00
|
|
|
RED.comms.subscribe("status/#",function(topic,msg) {
|
|
|
|
var parts = topic.split("/");
|
|
|
|
var node = RED.nodes.node(parts[1]);
|
|
|
|
if (node) {
|
2016-07-06 18:22:45 +02:00
|
|
|
if (msg.hasOwnProperty("text")) {
|
2015-07-08 09:02:23 +02:00
|
|
|
msg.text = node._(msg.text.toString(),{defaultValue:msg.text.toString()});
|
2015-07-02 00:02:50 +02:00
|
|
|
}
|
2014-09-24 10:57:45 +02:00
|
|
|
node.status = msg;
|
2017-01-09 15:18:59 +01:00
|
|
|
node.dirty = true;
|
|
|
|
RED.view.redraw();
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
2014-09-24 10:57:45 +02:00
|
|
|
});
|
|
|
|
RED.comms.subscribe("node/#",function(topic,msg) {
|
|
|
|
var i,m;
|
|
|
|
var typeList;
|
|
|
|
var info;
|
|
|
|
if (topic == "node/added") {
|
|
|
|
var addedTypes = [];
|
2016-12-01 16:27:29 +01:00
|
|
|
msg.forEach(function(m) {
|
2014-09-24 10:57:45 +02:00
|
|
|
var id = m.id;
|
|
|
|
RED.nodes.addNodeSet(m);
|
2015-03-26 12:38:51 +01:00
|
|
|
addedTypes = addedTypes.concat(m.types);
|
2016-03-12 23:53:07 +01:00
|
|
|
RED.i18n.loadCatalog(id, function() {
|
|
|
|
$.get('nodes/'+id, function(data) {
|
|
|
|
$("body").append(data);
|
|
|
|
});
|
2015-03-26 12:38:51 +01:00
|
|
|
});
|
2016-12-01 16:27:29 +01:00
|
|
|
});
|
2014-09-24 10:57:45 +02:00
|
|
|
if (addedTypes.length) {
|
|
|
|
typeList = "<ul><li>"+addedTypes.join("</li><li>")+"</li></ul>";
|
2015-07-01 00:42:03 +02:00
|
|
|
RED.notify(RED._("palette.event.nodeAdded", {count:addedTypes.length})+typeList,"success");
|
2014-09-24 10:57:45 +02:00
|
|
|
}
|
|
|
|
} else if (topic == "node/removed") {
|
|
|
|
for (i=0;i<msg.length;i++) {
|
|
|
|
m = msg[i];
|
|
|
|
info = RED.nodes.removeNodeSet(m.id);
|
|
|
|
if (info.added) {
|
|
|
|
typeList = "<ul><li>"+m.types.join("</li><li>")+"</li></ul>";
|
2015-07-01 00:42:03 +02:00
|
|
|
RED.notify(RED._("palette.event.nodeRemoved", {count:m.types.length})+typeList,"success");
|
2014-09-24 10:57:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (topic == "node/enabled") {
|
|
|
|
if (msg.types) {
|
|
|
|
info = RED.nodes.getNodeSet(msg.id);
|
|
|
|
if (info.added) {
|
|
|
|
RED.nodes.enableNodeSet(msg.id);
|
2014-08-28 01:35:07 +02:00
|
|
|
typeList = "<ul><li>"+msg.types.join("</li><li>")+"</li></ul>";
|
2015-07-01 00:42:03 +02:00
|
|
|
RED.notify(RED._("palette.event.nodeEnabled", {count:msg.types.length})+typeList,"success");
|
2014-09-24 10:57:45 +02:00
|
|
|
} else {
|
|
|
|
$.get('nodes/'+msg.id, function(data) {
|
|
|
|
$("body").append(data);
|
|
|
|
typeList = "<ul><li>"+msg.types.join("</li><li>")+"</li></ul>";
|
2015-07-01 00:42:03 +02:00
|
|
|
RED.notify(RED._("palette.event.nodeAdded", {count:msg.types.length})+typeList,"success");
|
2014-09-24 10:57:45 +02:00
|
|
|
});
|
2014-11-07 13:28:19 +01:00
|
|
|
}
|
2014-09-24 10:57:45 +02:00
|
|
|
}
|
|
|
|
} else if (topic == "node/disabled") {
|
|
|
|
if (msg.types) {
|
|
|
|
RED.nodes.disableNodeSet(msg.id);
|
|
|
|
typeList = "<ul><li>"+msg.types.join("</li><li>")+"</li></ul>";
|
2015-07-01 00:42:03 +02:00
|
|
|
RED.notify(RED._("palette.event.nodeDisabled", {count:msg.types.length})+typeList,"success");
|
2014-09-24 10:57:45 +02:00
|
|
|
}
|
2017-01-22 00:46:44 +01:00
|
|
|
} else if (topic == "node/upgraded") {
|
|
|
|
RED.notify(RED._("palette.event.nodeUpgraded", {module:msg.module,version:msg.version}),"success");
|
|
|
|
RED.nodes.registry.setModulePendingUpdated(msg.module,msg.version);
|
2014-08-07 14:46:03 +02:00
|
|
|
}
|
2016-03-03 00:34:24 +01:00
|
|
|
// Refresh flow library to ensure any examples are updated
|
|
|
|
RED.library.loadFlowLibrary();
|
2014-09-24 10:57:45 +02:00
|
|
|
});
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-08 17:18:24 +02:00
|
|
|
function showAbout() {
|
|
|
|
$.get('red/about', function(data) {
|
|
|
|
var aboutHeader = '<div style="text-align:center;">'+
|
|
|
|
'<img width="50px" src="red/images/node-red-icon.svg" />'+
|
|
|
|
'</div>';
|
|
|
|
|
|
|
|
RED.sidebar.info.set(aboutHeader+marked(data));
|
|
|
|
RED.sidebar.info.show();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-11-12 14:21:39 +01:00
|
|
|
function loadEditor() {
|
2016-09-30 21:33:27 +02:00
|
|
|
var menuOptions = [];
|
|
|
|
menuOptions.push({id:"menu-item-view-menu",label:RED._("menu.label.view.view"),options:[
|
2016-12-04 23:59:43 +01:00
|
|
|
{id:"menu-item-view-show-grid",label:RED._("menu.label.view.showGrid"),toggle:true,onselect:"core:toggle-show-grid"},
|
|
|
|
{id:"menu-item-view-snap-grid",label:RED._("menu.label.view.snapGrid"),toggle:true,onselect:"core:toggle-snap-grid"},
|
|
|
|
{id:"menu-item-status",label:RED._("menu.label.displayStatus"),toggle:true,onselect:"core:toggle-status", selected: true},
|
2016-09-30 21:33:27 +02:00
|
|
|
null,
|
2016-10-28 09:37:33 +02:00
|
|
|
// {id:"menu-item-bidi",label:RED._("menu.label.view.textDir"),options:[
|
|
|
|
// {id:"menu-item-bidi-default",toggle:"text-direction",label:RED._("menu.label.view.defaultDir"),selected: true, onselect:function(s) { if(s){RED.text.bidi.setTextDirection("")}}},
|
|
|
|
// {id:"menu-item-bidi-ltr",toggle:"text-direction",label:RED._("menu.label.view.ltr"), onselect:function(s) { if(s){RED.text.bidi.setTextDirection("ltr")}}},
|
|
|
|
// {id:"menu-item-bidi-rtl",toggle:"text-direction",label:RED._("menu.label.view.rtl"), onselect:function(s) { if(s){RED.text.bidi.setTextDirection("rtl")}}},
|
|
|
|
// {id:"menu-item-bidi-auto",toggle:"text-direction",label:RED._("menu.label.view.auto"), onselect:function(s) { if(s){RED.text.bidi.setTextDirection("auto")}}}
|
|
|
|
// ]},
|
|
|
|
// null,
|
2016-12-04 23:59:43 +01:00
|
|
|
{id:"menu-item-sidebar",label:RED._("menu.label.sidebar.show"),toggle:true,onselect:"core:toggle-sidebar", selected: true}
|
2016-09-30 21:33:27 +02:00
|
|
|
]});
|
|
|
|
menuOptions.push(null);
|
|
|
|
menuOptions.push({id:"menu-item-import",label:RED._("menu.label.import"),options:[
|
2017-01-11 12:35:48 +01:00
|
|
|
{id:"menu-item-import-clipboard",label:RED._("menu.label.clipboard"),onselect:"core:show-import-dialog"},
|
2016-09-30 21:33:27 +02:00
|
|
|
{id:"menu-item-import-library",label:RED._("menu.label.library"),options:[]}
|
|
|
|
]});
|
|
|
|
menuOptions.push({id:"menu-item-export",label:RED._("menu.label.export"),disabled:true,options:[
|
2017-01-11 12:35:48 +01:00
|
|
|
{id:"menu-item-export-clipboard",label:RED._("menu.label.clipboard"),disabled:true,onselect:"core:show-export-dialog"},
|
2016-12-04 23:59:43 +01:00
|
|
|
{id:"menu-item-export-library",label:RED._("menu.label.library"),disabled:true,onselect:"core:library-export"}
|
2016-09-30 21:33:27 +02:00
|
|
|
]});
|
|
|
|
menuOptions.push(null);
|
2016-12-04 23:59:43 +01:00
|
|
|
menuOptions.push({id:"menu-item-search",label:RED._("menu.label.search"),onselect:"core:search"});
|
2016-09-30 21:33:27 +02:00
|
|
|
menuOptions.push(null);
|
2016-12-04 23:59:43 +01:00
|
|
|
menuOptions.push({id:"menu-item-config-nodes",label:RED._("menu.label.displayConfig"),onselect:"core:show-config-tab"});
|
2016-09-30 21:33:27 +02:00
|
|
|
menuOptions.push({id:"menu-item-workspace",label:RED._("menu.label.flows"),options:[
|
2016-12-04 23:59:43 +01:00
|
|
|
{id:"menu-item-workspace-add",label:RED._("menu.label.add"),onselect:"core:add-flow"},
|
|
|
|
{id:"menu-item-workspace-edit",label:RED._("menu.label.rename"),onselect:"core:edit-flow"},
|
|
|
|
{id:"menu-item-workspace-delete",label:RED._("menu.label.delete"),onselect:"core:remove-flow"}
|
2016-09-30 21:33:27 +02:00
|
|
|
]});
|
|
|
|
menuOptions.push({id:"menu-item-subflow",label:RED._("menu.label.subflows"), options: [
|
2016-12-04 23:59:43 +01:00
|
|
|
{id:"menu-item-subflow-create",label:RED._("menu.label.createSubflow"),onselect:"core:create-subflow"},
|
|
|
|
{id:"menu-item-subflow-convert",label:RED._("menu.label.selectionToSubflow"),disabled:true,onselect:"core:convert-to-subflow"},
|
2016-09-30 21:33:27 +02:00
|
|
|
]});
|
|
|
|
menuOptions.push(null);
|
|
|
|
if (RED.settings.theme('palette.editable') !== false) {
|
|
|
|
RED.palette.editor.init();
|
2016-12-04 23:59:43 +01:00
|
|
|
menuOptions.push({id:"menu-item-edit-palette",label:RED._("menu.label.editPalette"),onselect:"core:manage-palette"});
|
2016-09-30 21:33:27 +02:00
|
|
|
menuOptions.push(null);
|
|
|
|
}
|
|
|
|
|
2016-12-04 23:59:43 +01:00
|
|
|
menuOptions.push({id:"menu-item-keyboard-shortcuts",label:RED._("menu.label.keyboardShortcuts"),onselect:"core:show-help"});
|
2017-01-06 14:33:23 +01:00
|
|
|
menuOptions.push({id:"menu-item-show-tips",label:RED._("menu.label.showTips"),toggle:true,selected:true,onselect:"core:toggle-show-tips"});
|
2016-09-30 21:33:27 +02:00
|
|
|
menuOptions.push({id:"menu-item-help",
|
|
|
|
label: RED.settings.theme("menu.menu-item-help.label","Node-RED website"),
|
|
|
|
href: RED.settings.theme("menu.menu-item-help.url","http://nodered.org/docs")
|
2014-11-12 14:21:39 +01:00
|
|
|
});
|
2016-12-04 23:59:43 +01:00
|
|
|
menuOptions.push({id:"menu-item-node-red-version", label:"v"+RED.settings.version, onselect: "core:show-about" });
|
2016-09-30 21:33:27 +02:00
|
|
|
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-03-16 00:07:57 +01:00
|
|
|
RED.user.init();
|
2014-11-12 14:21:39 +01:00
|
|
|
RED.library.init();
|
|
|
|
RED.palette.init();
|
|
|
|
RED.sidebar.init();
|
2015-03-12 01:08:47 +01:00
|
|
|
RED.subflow.init();
|
2015-03-13 00:38:37 +01:00
|
|
|
RED.workspaces.init();
|
|
|
|
RED.clipboard.init();
|
2016-09-30 00:46:29 +02:00
|
|
|
RED.search.init();
|
2014-11-12 14:21:39 +01:00
|
|
|
RED.view.init();
|
2015-05-26 22:52:23 +02:00
|
|
|
RED.editor.init();
|
2016-12-04 23:59:43 +01:00
|
|
|
RED.keyboard.init();
|
2016-12-06 23:37:21 +01:00
|
|
|
RED.diff.init();
|
2016-12-04 23:59:43 +01:00
|
|
|
|
|
|
|
RED.menu.init({id:"btn-sidemenu",options: menuOptions});
|
|
|
|
|
2015-04-13 12:35:52 +02:00
|
|
|
RED.deploy.init(RED.settings.theme("deployButton",null));
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2016-12-04 23:59:43 +01:00
|
|
|
RED.actions.add("core:show-about", showAbout);
|
|
|
|
|
2014-11-12 14:21:39 +01:00
|
|
|
RED.comms.connect();
|
2015-03-15 23:54:55 +01:00
|
|
|
|
|
|
|
$("#main-container").show();
|
|
|
|
$(".header-toolbar").show();
|
|
|
|
|
2016-12-04 23:59:43 +01:00
|
|
|
|
2014-11-12 14:21:39 +01:00
|
|
|
loadNodeList();
|
|
|
|
}
|
|
|
|
|
2014-11-11 11:15:02 +01:00
|
|
|
$(function() {
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2014-11-11 11:15:02 +01:00
|
|
|
if ((window.location.hostname !== "localhost") && (window.location.hostname !== "127.0.0.1")) {
|
2015-04-13 10:48:49 +02:00
|
|
|
document.title = document.title+" : "+window.location.hostname;
|
2014-11-11 11:15:02 +01:00
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-02-26 22:29:56 +01:00
|
|
|
ace.require("ace/ext/language_tools");
|
|
|
|
|
2015-07-08 18:07:14 +02:00
|
|
|
RED.i18n.init(function() {
|
|
|
|
RED.settings.init(loadEditor);
|
|
|
|
})
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
2014-08-08 01:01:35 +02:00
|
|
|
})();
|