2014-02-26 23:58:44 +01:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2014-02-26 23:58:44 +01: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
|
|
|
RED.sidebar.info = (function() {
|
2015-02-10 17:55:50 +01:00
|
|
|
|
2015-01-29 21:47:30 +01:00
|
|
|
marked.setOptions({
|
|
|
|
renderer: new marked.Renderer(),
|
|
|
|
gfm: true,
|
|
|
|
tables: true,
|
|
|
|
breaks: false,
|
|
|
|
pedantic: false,
|
|
|
|
sanitize: true,
|
|
|
|
smartLists: true,
|
|
|
|
smartypants: false
|
|
|
|
});
|
2015-02-10 17:55:50 +01:00
|
|
|
|
2017-04-07 00:17:06 +02:00
|
|
|
var content;
|
|
|
|
var sections;
|
|
|
|
var nodeSection;
|
|
|
|
var infoSection;
|
|
|
|
var tipBox;
|
2014-02-26 23:58:44 +01:00
|
|
|
|
2017-04-05 17:19:23 +02:00
|
|
|
var expandedSections = {
|
2017-04-07 00:17:06 +02:00
|
|
|
"property": false
|
2017-04-05 17:19:23 +02:00
|
|
|
};
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-07-03 11:07:40 +02:00
|
|
|
function init() {
|
2017-04-07 00:17:06 +02:00
|
|
|
|
|
|
|
content = document.createElement("div");
|
|
|
|
content.className = "sidebar-node-info"
|
|
|
|
|
|
|
|
RED.actions.add("core:show-info-tab",show);
|
|
|
|
|
2017-04-07 12:21:30 +02:00
|
|
|
var stackContainer = $("<div>",{class:"sidebar-node-info-stack"}).appendTo(content);
|
|
|
|
|
2017-04-07 00:17:06 +02:00
|
|
|
sections = RED.stack.create({
|
2017-04-07 12:21:30 +02:00
|
|
|
container: stackContainer
|
2017-04-07 00:17:06 +02:00
|
|
|
}).hide();
|
|
|
|
|
|
|
|
nodeSection = sections.add({
|
|
|
|
title: "Node",
|
|
|
|
collapsible: false
|
|
|
|
});
|
|
|
|
infoSection = sections.add({
|
|
|
|
title: "Information",
|
|
|
|
collapsible: false
|
|
|
|
});
|
|
|
|
infoSection.content.css("padding","6px");
|
|
|
|
infoSection.container.css("border-bottom","none");
|
2017-04-07 12:21:30 +02:00
|
|
|
|
2017-04-07 13:36:06 +02:00
|
|
|
var tipContainer = $('<div class="node-info-tips"></div>').appendTo(content);
|
2017-04-07 12:21:30 +02:00
|
|
|
tipBox = $('<div class="node-info-tip"></div>').appendTo(tipContainer);
|
2017-04-07 13:24:39 +02:00
|
|
|
var tipButtons = $('<div class="node-info-tips-buttons"></div>').appendTo(tipContainer);
|
|
|
|
|
|
|
|
var tipRefresh = $('<a href="#" class="workspace-footer-button"><i class="fa fa-refresh"></a>').appendTo(tipButtons);
|
|
|
|
tipRefresh.click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
tips.next();
|
|
|
|
})
|
|
|
|
|
|
|
|
var tipClose = $('<a href="#" class="workspace-footer-button"><i class="fa fa-times"></a>').appendTo(tipButtons);
|
|
|
|
tipClose.click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
RED.actions.invoke("core:toggle-show-tips");
|
|
|
|
RED.notify("You can re-open the tips from the side menu");
|
|
|
|
});
|
2017-04-07 12:21:30 +02:00
|
|
|
|
2015-07-03 11:07:40 +02:00
|
|
|
RED.sidebar.addTab({
|
|
|
|
id: "info",
|
|
|
|
label: RED._("sidebar.info.label"),
|
|
|
|
name: RED._("sidebar.info.name"),
|
2016-05-29 23:31:29 +02:00
|
|
|
content: content,
|
|
|
|
enableOnEdit: true
|
2015-07-03 11:07:40 +02:00
|
|
|
});
|
2017-04-07 12:21:30 +02:00
|
|
|
|
|
|
|
tips.start();
|
|
|
|
|
2015-07-03 11:07:40 +02:00
|
|
|
}
|
|
|
|
|
2014-11-11 11:15:02 +01:00
|
|
|
function show() {
|
|
|
|
RED.sidebar.show("info");
|
|
|
|
}
|
2015-02-10 17:55:50 +01:00
|
|
|
|
2014-02-27 17:47:28 +01:00
|
|
|
function jsonFilter(key,value) {
|
2014-08-08 01:01:35 +02:00
|
|
|
if (key === "") {
|
2014-02-27 17:47:28 +01:00
|
|
|
return value;
|
|
|
|
}
|
|
|
|
var t = typeof value;
|
|
|
|
if ($.isArray(value)) {
|
|
|
|
return "[array:"+value.length+"]";
|
|
|
|
} else if (t === "object") {
|
|
|
|
return "[object]"
|
|
|
|
} else if (t === "string") {
|
|
|
|
if (value.length > 30) {
|
|
|
|
return value.substring(0,30)+" ...";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
2015-01-29 16:57:05 +01:00
|
|
|
|
2017-01-19 14:52:38 +01:00
|
|
|
function addTargetToExternalLinks(el) {
|
|
|
|
$(el).find("a").each(function(el) {
|
|
|
|
var href = $(this).attr('href');
|
|
|
|
if (/^https?:/.test(href)) {
|
|
|
|
$(this).attr('target','_blank');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return el;
|
|
|
|
}
|
2014-02-26 23:58:44 +01:00
|
|
|
function refresh(node) {
|
2017-04-07 00:17:06 +02:00
|
|
|
sections.show();
|
|
|
|
$(nodeSection.content).empty();
|
|
|
|
$(infoSection.content).empty();
|
|
|
|
|
2016-11-03 00:40:43 +01:00
|
|
|
var table = $('<table class="node-info"></table>');
|
|
|
|
var tableBody = $('<tbody>').appendTo(table);
|
2017-04-07 00:17:06 +02:00
|
|
|
var propRow;
|
2017-04-07 12:21:30 +02:00
|
|
|
var subflowNode;
|
2017-04-07 00:17:06 +02:00
|
|
|
if (node.type === "tab") {
|
|
|
|
nodeSection.title.html("Flow");
|
|
|
|
propRow = $('<tr class="node-info-node-row"><td>Name</td><td></td></tr>').appendTo(tableBody);
|
|
|
|
$(propRow.children()[1]).html(' '+(node.label||""))
|
|
|
|
propRow = $('<tr class="node-info-node-row"><td>'+RED._("sidebar.info.id")+"</td><td></td></tr>").appendTo(tableBody);
|
|
|
|
RED.utils.createObjectElement(node.id).appendTo(propRow.children()[1]);
|
2017-04-10 12:29:52 +02:00
|
|
|
propRow = $('<tr class="node-info-node-row"><td>Status</td><td></td></tr>').appendTo(tableBody);
|
2017-04-10 01:00:10 +02:00
|
|
|
$(propRow.children()[1]).html((!!!node.disabled)?"Enabled":"Disabled")
|
2017-04-07 00:17:06 +02:00
|
|
|
} else {
|
|
|
|
nodeSection.title.html("Node");
|
|
|
|
if (node.type !== "subflow" && node.name) {
|
|
|
|
$('<tr class="node-info-node-row"><td>'+RED._("common.label.name")+'</td><td> <span class="bidiAware" dir="'+RED.text.bidi.resolveBaseTextDir(node.name)+'">'+node.name+'</span></td></tr>').appendTo(tableBody);
|
2015-02-10 22:29:27 +01:00
|
|
|
}
|
2017-04-07 00:17:06 +02:00
|
|
|
$('<tr class="node-info-node-row"><td>'+RED._("sidebar.info.type")+"</td><td> "+node.type+"</td></tr>").appendTo(tableBody);
|
|
|
|
propRow = $('<tr class="node-info-node-row"><td>'+RED._("sidebar.info.id")+"</td><td></td></tr>").appendTo(tableBody);
|
|
|
|
RED.utils.createObjectElement(node.id).appendTo(propRow.children()[1]);
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2017-04-07 00:17:06 +02:00
|
|
|
var m = /^subflow(:(.+))?$/.exec(node.type);
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2017-04-07 00:17:06 +02:00
|
|
|
if (!m && node.type != "subflow" && node.type != "comment") {
|
|
|
|
if (node._def) {
|
|
|
|
var count = 0;
|
2017-04-10 12:29:52 +02:00
|
|
|
var defaults = node._def.defaults;
|
|
|
|
for (var n in defaults) {
|
|
|
|
if (n != "name" && defaults.hasOwnProperty(n)) {
|
2017-04-07 00:17:06 +02:00
|
|
|
var val = node[n];
|
|
|
|
var type = typeof val;
|
|
|
|
count++;
|
|
|
|
propRow = $('<tr class="node-info-property-row'+(expandedSections.property?"":" hide")+'"><td>'+n+"</td><td></td></tr>").appendTo(tableBody);
|
2017-04-10 12:29:52 +02:00
|
|
|
if (defaults[n].type) {
|
|
|
|
var configNode = RED.nodes.node(val);
|
|
|
|
if (!configNode) {
|
|
|
|
RED.utils.createObjectElement(undefined).appendTo(propRow.children()[1]);
|
|
|
|
} else {
|
|
|
|
var configLabel = RED.utils.getNodeLabel(configNode,val);
|
2017-04-10 15:33:21 +02:00
|
|
|
var container = propRow.children()[1];
|
|
|
|
|
|
|
|
var div = $('<span>',{class:""}).appendTo(container);
|
|
|
|
var nodeDiv = $('<div>',{class:"palette_node palette_node_small"}).appendTo(div);
|
|
|
|
var colour = configNode._def.color;
|
|
|
|
var icon_url = RED.utils.getNodeIcon(configNode._def);
|
|
|
|
nodeDiv.css({'backgroundColor':colour, "cursor":"pointer"});
|
|
|
|
var iconContainer = $('<div/>',{class:"palette_icon_container"}).appendTo(nodeDiv);
|
2017-04-10 12:29:52 +02:00
|
|
|
$('<div/>',{class:"palette_icon",style:"background-image: url("+icon_url+")"}).appendTo(iconContainer);
|
2017-04-10 15:33:21 +02:00
|
|
|
var nodeContainer = $('<span></span>').css({"verticalAlign":"top","marginLeft":"6px"}).html(configLabel).appendTo(container);
|
2017-04-10 12:29:52 +02:00
|
|
|
|
2017-04-10 15:33:21 +02:00
|
|
|
nodeDiv.on('dblclick',function() {
|
2017-04-10 12:29:52 +02:00
|
|
|
RED.editor.editConfig("", configNode.type, configNode.id);
|
|
|
|
})
|
2017-04-10 15:33:21 +02:00
|
|
|
|
2017-04-10 12:29:52 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RED.utils.createObjectElement(val).appendTo(propRow.children()[1]);
|
|
|
|
}
|
2017-04-07 00:17:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (count > 0) {
|
|
|
|
$('<tr class="node-info-property-expand blank"><td colspan="2"><a href="#" class=" node-info-property-header'+(expandedSections.property?" expanded":"")+'"><span class="node-info-property-show-more">show more</span><span class="node-info-property-show-less">show less</span> <i class="fa fa-caret-down"></i></a></td></tr>').appendTo(tableBody);
|
|
|
|
}
|
2014-02-25 00:35:11 +01:00
|
|
|
}
|
2017-04-07 00:17:06 +02:00
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2017-04-07 00:17:06 +02:00
|
|
|
if (m) {
|
|
|
|
if (m[2]) {
|
|
|
|
subflowNode = RED.nodes.subflow(m[2]);
|
|
|
|
} else {
|
|
|
|
subflowNode = node;
|
2014-02-26 23:58:44 +01:00
|
|
|
}
|
2017-04-07 00:17:06 +02:00
|
|
|
|
2017-04-10 12:29:52 +02:00
|
|
|
$('<tr class="blank"><th colspan="2">'+RED._("sidebar.info.subflow")+'</th></tr>').appendTo(tableBody);
|
2017-04-07 00:17:06 +02:00
|
|
|
|
|
|
|
var userCount = 0;
|
|
|
|
var subflowType = "subflow:"+subflowNode.id;
|
|
|
|
RED.nodes.eachNode(function(n) {
|
|
|
|
if (n.type === subflowType) {
|
|
|
|
userCount++;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('<tr class="node-info-subflow-row"><td>'+RED._("common.label.name")+'</td><td><span class="bidiAware" dir=\"'+RED.text.bidi.resolveBaseTextDir(subflowNode.name)+'">'+subflowNode.name+'</span></td></tr>').appendTo(tableBody);
|
|
|
|
$('<tr class="node-info-subflow-row"><td>'+RED._("sidebar.info.instances")+"</td><td>"+userCount+'</td></tr>').appendTo(tableBody);
|
2014-02-26 23:58:44 +01:00
|
|
|
}
|
|
|
|
}
|
2017-04-07 00:17:06 +02:00
|
|
|
|
|
|
|
$(table).appendTo(nodeSection.content);
|
2017-04-05 17:19:23 +02:00
|
|
|
|
|
|
|
var infoText = "";
|
|
|
|
|
2017-04-10 16:25:19 +02:00
|
|
|
if (!subflowNode && node.type !== "comment" && node.type !== "tab") {
|
2017-04-07 00:17:06 +02:00
|
|
|
var helpText = $("script[data-help-name='"+node.type+"']").html()||"";
|
2017-04-05 17:19:23 +02:00
|
|
|
infoText = helpText;
|
2017-04-10 16:25:19 +02:00
|
|
|
} else if (node.type === "tab") {
|
|
|
|
infoText = marked(node.info||"");
|
2015-02-10 22:29:27 +01:00
|
|
|
}
|
2017-04-10 16:25:19 +02:00
|
|
|
|
2015-10-23 23:14:21 +02:00
|
|
|
if (subflowNode) {
|
2017-04-07 00:17:06 +02:00
|
|
|
infoText = infoText + marked(subflowNode.info||"");
|
2015-10-23 23:14:21 +02:00
|
|
|
} else if (node._def && node._def.info) {
|
2015-01-17 22:36:16 +01:00
|
|
|
var info = node._def.info;
|
2016-10-10 00:00:28 +02:00
|
|
|
var textInfo = (typeof info === "function" ? info.call(node) : info);
|
2017-04-07 00:17:06 +02:00
|
|
|
// TODO: help
|
|
|
|
infoText = infoText + marked(textInfo);
|
2017-04-05 17:19:23 +02:00
|
|
|
}
|
|
|
|
if (infoText) {
|
2017-04-07 14:30:12 +02:00
|
|
|
var info = addTargetToExternalLinks($('<div class="node-help"><span class="bidiAware" dir=\"'+RED.text.bidi.resolveBaseTextDir(infoText)+'">'+infoText+'</span></div>')).appendTo(infoSection.content);
|
|
|
|
info.find(".bidiAware").contents().filter(function() { return this.nodeType === 3 && this.textContent.trim() !== "" }).wrap( "<span></span>" );
|
|
|
|
var foldingHeader = "H3";
|
|
|
|
info.find(foldingHeader).wrapInner('<a class="node-info-header expanded" href="#"></a>')
|
|
|
|
.find("a").prepend('<i class="fa fa-angle-right">').click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var isExpanded = $(this).hasClass('expanded');
|
|
|
|
var el = $(this).parent().next();
|
|
|
|
while(el.length === 1 && el[0].nodeName !== foldingHeader) {
|
|
|
|
el.toggle(!isExpanded);
|
|
|
|
el = el.next();
|
|
|
|
}
|
|
|
|
$(this).toggleClass('expanded',!isExpanded);
|
|
|
|
})
|
2015-01-17 22:36:16 +01:00
|
|
|
}
|
2015-01-29 16:57:05 +01:00
|
|
|
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2017-04-07 00:17:06 +02:00
|
|
|
$(".node-info-property-header").click(function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
expandedSections["property"] = !expandedSections["property"];
|
|
|
|
$(this).toggleClass("expanded",expandedSections["property"]);
|
|
|
|
$(".node-info-property-row").toggle(expandedSections["property"]);
|
|
|
|
});
|
2014-02-26 23:58:44 +01:00
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2017-01-06 00:33:19 +01:00
|
|
|
|
|
|
|
var tips = (function() {
|
2017-01-06 14:33:23 +01:00
|
|
|
var enabled = true;
|
|
|
|
var startDelay = 1000;
|
2017-01-09 23:09:06 +01:00
|
|
|
var cycleDelay = 15000;
|
2017-01-06 00:33:19 +01:00
|
|
|
var startTimeout;
|
|
|
|
var refreshTimeout;
|
|
|
|
var tipCount = -1;
|
|
|
|
|
2017-01-06 14:33:23 +01:00
|
|
|
RED.actions.add("core:toggle-show-tips",function(state) {
|
|
|
|
if (state === undefined) {
|
|
|
|
RED.menu.toggleSelected("menu-item-show-tips");
|
|
|
|
} else {
|
|
|
|
enabled = state;
|
|
|
|
if (enabled) {
|
2017-04-07 12:21:30 +02:00
|
|
|
startTips();
|
2017-01-06 14:33:23 +01:00
|
|
|
} else {
|
|
|
|
stopTips();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-01-06 00:33:19 +01:00
|
|
|
|
|
|
|
function setTip() {
|
|
|
|
var r = Math.floor(Math.random() * tipCount);
|
|
|
|
var tip = RED._("infotips:info.tip"+r);
|
|
|
|
|
|
|
|
var m;
|
|
|
|
while ((m=/({{(.*?)}})/.exec(tip))) {
|
|
|
|
var shortcut = RED.keyboard.getShortcut(m[2]);
|
|
|
|
if (shortcut) {
|
|
|
|
tip = tip.replace(m[1],RED.keyboard.formatKey(shortcut.key));
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while ((m=/(\[(.*?)\])/.exec(tip))) {
|
|
|
|
tip = tip.replace(m[1],RED.keyboard.formatKey(m[2]));
|
|
|
|
}
|
2017-04-07 00:17:06 +02:00
|
|
|
tipBox.html(tip).fadeIn(200);
|
2017-01-06 00:33:19 +01:00
|
|
|
if (startTimeout) {
|
|
|
|
startTimeout = null;
|
|
|
|
refreshTimeout = setInterval(cycleTips,cycleDelay);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function cycleTips() {
|
2017-04-07 00:17:06 +02:00
|
|
|
tipBox.fadeOut(300,function() {
|
2017-01-06 00:33:19 +01:00
|
|
|
setTip();
|
|
|
|
})
|
|
|
|
}
|
2017-01-06 14:33:23 +01:00
|
|
|
function startTips() {
|
2017-04-07 12:21:30 +02:00
|
|
|
$(".sidebar-node-info").addClass('show-tips');
|
2017-01-06 14:33:23 +01:00
|
|
|
if (enabled) {
|
2017-01-06 00:33:19 +01:00
|
|
|
if (!startTimeout && !refreshTimeout) {
|
|
|
|
if (tipCount === -1) {
|
|
|
|
do {
|
|
|
|
tipCount++;
|
|
|
|
} while(RED._("infotips:info.tip"+tipCount)!=="infotips:info.tip"+tipCount);
|
|
|
|
}
|
|
|
|
startTimeout = setTimeout(setTip,startDelay);
|
|
|
|
}
|
|
|
|
}
|
2016-11-14 20:10:02 +01:00
|
|
|
}
|
2017-01-06 14:33:23 +01:00
|
|
|
function stopTips() {
|
2017-04-07 12:21:30 +02:00
|
|
|
$(".sidebar-node-info").removeClass('show-tips');
|
2017-01-06 14:33:23 +01:00
|
|
|
clearInterval(refreshTimeout);
|
|
|
|
clearTimeout(startTimeout);
|
|
|
|
refreshTimeout = null;
|
|
|
|
startTimeout = null;
|
|
|
|
}
|
2017-04-07 13:24:39 +02:00
|
|
|
function nextTip() {
|
|
|
|
clearInterval(refreshTimeout);
|
|
|
|
startTimeout = true;
|
|
|
|
setTip();
|
|
|
|
}
|
2017-01-06 14:33:23 +01:00
|
|
|
return {
|
|
|
|
start: startTips,
|
2017-04-07 13:24:39 +02:00
|
|
|
stop: stopTips,
|
|
|
|
next: nextTip
|
2017-01-06 14:33:23 +01:00
|
|
|
}
|
2017-01-06 00:33:19 +01:00
|
|
|
})();
|
|
|
|
|
|
|
|
function clear() {
|
2017-04-07 00:17:06 +02:00
|
|
|
sections.hide();
|
2017-04-07 12:21:30 +02:00
|
|
|
//
|
2015-03-12 01:08:47 +01:00
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-07-18 16:33:31 +02:00
|
|
|
function set(html) {
|
2017-04-07 12:21:30 +02:00
|
|
|
// tips.stop();
|
2017-04-07 00:17:06 +02:00
|
|
|
sections.show();
|
2017-04-07 13:36:06 +02:00
|
|
|
nodeSection.container.hide();
|
2017-04-07 00:17:06 +02:00
|
|
|
$(infoSection.content).html(html);
|
2015-07-18 16:33:31 +02:00
|
|
|
}
|
2015-10-23 23:14:21 +02:00
|
|
|
|
2017-01-06 00:33:19 +01:00
|
|
|
|
|
|
|
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.on("view:selection-changed",function(selection) {
|
2015-03-12 01:08:47 +01:00
|
|
|
if (selection.nodes) {
|
|
|
|
if (selection.nodes.length == 1) {
|
|
|
|
var node = selection.nodes[0];
|
|
|
|
if (node.type === "subflow" && node.direction) {
|
|
|
|
refresh(RED.nodes.subflow(node.z));
|
|
|
|
} else {
|
|
|
|
refresh(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2017-04-07 00:17:06 +02:00
|
|
|
var activeWS = RED.workspaces.active();
|
|
|
|
|
|
|
|
var flow = RED.nodes.workspace(activeWS) || RED.nodes.subflow(activeWS);
|
|
|
|
if (flow) {
|
|
|
|
refresh(flow);
|
2015-03-12 01:08:47 +01:00
|
|
|
} else {
|
2017-03-16 17:29:19 +01:00
|
|
|
var workspace = RED.nodes.workspace(RED.workspaces.active());
|
|
|
|
if (workspace.info) {
|
|
|
|
refresh(workspace);
|
|
|
|
} else {
|
|
|
|
clear();
|
|
|
|
}
|
2015-03-12 01:08:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-01-29 16:57:05 +01:00
|
|
|
|
2014-02-26 23:58:44 +01:00
|
|
|
return {
|
2015-07-03 11:07:40 +02:00
|
|
|
init: init,
|
2014-11-11 11:15:02 +01:00
|
|
|
show: show,
|
2016-11-14 20:10:02 +01:00
|
|
|
refresh: refresh,
|
2015-07-18 16:33:31 +02:00
|
|
|
clear: clear,
|
|
|
|
set: set
|
2014-02-26 23:58:44 +01:00
|
|
|
}
|
2014-08-08 01:01:35 +02:00
|
|
|
})();
|