2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2015-01-18 10:35:32 +01:00
|
|
|
* Copyright 2013, 2015 IBM Corp.
|
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.
|
|
|
|
**/
|
2014-08-08 01:01:35 +02:00
|
|
|
var RED = (function() {
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
|
2014-02-16 01:39:30 +01:00
|
|
|
function loadSettings() {
|
2014-10-30 15:19:44 +01:00
|
|
|
RED.settings.init(loadNodeList);
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
2014-10-30 15:19:44 +01: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);
|
|
|
|
loadNodes();
|
|
|
|
}
|
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);
|
|
|
|
$(".palette-spinner").hide();
|
|
|
|
$(".palette-scroll").show();
|
|
|
|
$("#palette-search").show();
|
|
|
|
loadFlows();
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function loadFlows() {
|
2014-09-24 10:57:45 +02:00
|
|
|
$.ajax({
|
|
|
|
headers: {
|
|
|
|
"Accept":"application/json"
|
|
|
|
},
|
|
|
|
cache: false,
|
|
|
|
url: 'flows',
|
|
|
|
success: function(nodes) {
|
|
|
|
RED.nodes.import(nodes);
|
2015-03-15 22:54:36 +01:00
|
|
|
RED.nodes.dirty(false);
|
2015-03-12 12:21:05 +01:00
|
|
|
RED.view.redraw(true);
|
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) {
|
|
|
|
node.status = msg;
|
|
|
|
if (statusEnabled) {
|
|
|
|
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;
|
2014-11-07 13:28:19 +01:00
|
|
|
|
2014-09-24 10:57:45 +02:00
|
|
|
if (topic == "node/added") {
|
|
|
|
var addedTypes = [];
|
|
|
|
for (i=0;i<msg.length;i++) {
|
|
|
|
m = msg[i];
|
|
|
|
var id = m.id;
|
|
|
|
RED.nodes.addNodeSet(m);
|
2015-03-26 12:38:51 +01:00
|
|
|
addedTypes = addedTypes.concat(m.types);
|
|
|
|
$.get('nodes/'+id, function(data) {
|
|
|
|
$("body").append(data);
|
|
|
|
});
|
2014-08-07 14:46:03 +02:00
|
|
|
}
|
2014-09-24 10:57:45 +02:00
|
|
|
if (addedTypes.length) {
|
|
|
|
typeList = "<ul><li>"+addedTypes.join("</li><li>")+"</li></ul>";
|
|
|
|
RED.notify("Node"+(addedTypes.length!=1 ? "s":"")+" added to palette:"+typeList,"success");
|
|
|
|
}
|
|
|
|
} 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>";
|
|
|
|
RED.notify("Node"+(m.types.length!=1 ? "s":"")+" removed from palette:"+typeList,"success");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} 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>";
|
2014-09-24 10:57:45 +02:00
|
|
|
RED.notify("Node"+(msg.types.length!=1 ? "s":"")+" enabled:"+typeList,"success");
|
|
|
|
} else {
|
|
|
|
$.get('nodes/'+msg.id, function(data) {
|
|
|
|
$("body").append(data);
|
|
|
|
typeList = "<ul><li>"+msg.types.join("</li><li>")+"</li></ul>";
|
|
|
|
RED.notify("Node"+(msg.types.length!=1 ? "s":"")+" added to palette:"+typeList,"success");
|
|
|
|
});
|
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>";
|
|
|
|
RED.notify("Node"+(msg.types.length!=1 ? "s":"")+" disabled:"+typeList,"success");
|
|
|
|
}
|
2014-08-07 14:46:03 +02:00
|
|
|
}
|
2014-09-24 10:57:45 +02:00
|
|
|
});
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-05-11 00:33:02 +02:00
|
|
|
var statusEnabled = false;
|
2014-08-20 22:58:54 +02:00
|
|
|
function toggleStatus(state) {
|
|
|
|
statusEnabled = state;
|
2014-05-11 00:33:02 +02:00
|
|
|
RED.view.status(statusEnabled);
|
|
|
|
}
|
2014-09-04 09:19:37 +02:00
|
|
|
|
2014-11-12 14:21:39 +01:00
|
|
|
function loadEditor() {
|
|
|
|
RED.menu.init({id:"btn-sidemenu",
|
|
|
|
options: [
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-sidebar",label:"Sidebar",toggle:true,onselect:RED.sidebar.toggleSidebar, selected: true},
|
|
|
|
{id:"menu-item-status",label:"Display node status",toggle:true,onselect:toggleStatus, selected: true},
|
2014-11-12 14:21:39 +01:00
|
|
|
null,
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-import",label:"Import",options:[
|
|
|
|
{id:"menu-item-import-clipboard",label:"Clipboard",onselect:RED.clipboard.import},
|
|
|
|
{id:"menu-item-import-library",label:"Library",options:[]}
|
2014-11-12 14:21:39 +01:00
|
|
|
]},
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-export",label:"Export",disabled:true,options:[
|
|
|
|
{id:"menu-item-export-clipboard",label:"Clipboard",disabled:true,onselect:RED.clipboard.export},
|
|
|
|
{id:"menu-item-export-library",label:"Library",disabled:true,onselect:RED.library.export}
|
2014-11-12 14:21:39 +01:00
|
|
|
]},
|
|
|
|
null,
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-config-nodes",label:"Configuration nodes",onselect:RED.sidebar.config.show},
|
2014-11-12 14:21:39 +01:00
|
|
|
null,
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-subflow",label:"Subflows", options: [
|
|
|
|
{id:"menu-item-subflow-create",label:"Create subflow",onselect:RED.subflow.createSubflow},
|
|
|
|
{id:"menu-item-subflow-convert",label:"Selection to subflow",disabled:true,onselect:RED.subflow.convertToSubflow},
|
2014-11-12 14:21:39 +01:00
|
|
|
]},
|
|
|
|
null,
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-workspace",label:"Workspaces",options:[
|
|
|
|
{id:"menu-item-workspace-add",label:"Add",onselect:RED.workspaces.add},
|
|
|
|
{id:"menu-item-workspace-edit",label:"Rename",onselect:RED.workspaces.edit},
|
|
|
|
{id:"menu-item-workspace-delete",label:"Delete",onselect:RED.workspaces.remove},
|
2014-11-12 14:21:39 +01:00
|
|
|
null
|
|
|
|
]},
|
|
|
|
null,
|
2015-04-13 17:48:38 +02:00
|
|
|
{id:"menu-item-keyboard-shortcuts",label:"Keyboard Shortcuts",onselect:RED.keyboard.showHelp},
|
|
|
|
{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")
|
2015-04-13 12:35:52 +02:00
|
|
|
}
|
2014-11-12 14:21:39 +01: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();
|
2014-11-12 14:21:39 +01:00
|
|
|
RED.view.init();
|
2015-04-13 10:48:49 +02:00
|
|
|
|
2015-04-13 12:35:52 +02:00
|
|
|
RED.deploy.init(RED.settings.theme("deployButton",null));
|
2014-11-12 14:21:39 +01:00
|
|
|
|
2015-03-14 23:16:07 +01:00
|
|
|
RED.keyboard.add(/* ? */ 191,{shift:true},function(){RED.keyboard.showHelp();d3.event.preventDefault();});
|
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();
|
|
|
|
|
2014-11-12 14:21:39 +01:00
|
|
|
loadNodeList();
|
|
|
|
}
|
|
|
|
|
2014-11-11 11:15:02 +01:00
|
|
|
$(function() {
|
|
|
|
|
|
|
|
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-01-18 10:35:32 +01:00
|
|
|
|
2015-02-26 22:29:56 +01:00
|
|
|
ace.require("ace/ext/language_tools");
|
|
|
|
|
2014-12-10 15:16:07 +01:00
|
|
|
RED.settings.init(loadEditor);
|
2013-09-05 16:02:48 +02:00
|
|
|
});
|
|
|
|
|
2014-11-07 13:28:19 +01:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
return {
|
|
|
|
};
|
2014-08-08 01:01:35 +02:00
|
|
|
})();
|