mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add info tips back to the sidebar
This commit is contained in:
parent
624befd704
commit
67da853146
@ -31,6 +31,7 @@ RED.sidebar.info = (function() {
|
|||||||
var nodeSection;
|
var nodeSection;
|
||||||
var infoSection;
|
var infoSection;
|
||||||
var tipBox;
|
var tipBox;
|
||||||
|
var tipContainer;
|
||||||
|
|
||||||
var expandedSections = {
|
var expandedSections = {
|
||||||
"property": false
|
"property": false
|
||||||
@ -41,13 +42,12 @@ RED.sidebar.info = (function() {
|
|||||||
content = document.createElement("div");
|
content = document.createElement("div");
|
||||||
content.className = "sidebar-node-info"
|
content.className = "sidebar-node-info"
|
||||||
|
|
||||||
tipBox = $('<div class="node-info-tip collapsed hide"></div>').appendTo(content);
|
|
||||||
|
|
||||||
|
|
||||||
RED.actions.add("core:show-info-tab",show);
|
RED.actions.add("core:show-info-tab",show);
|
||||||
|
|
||||||
|
var stackContainer = $("<div>",{class:"sidebar-node-info-stack"}).appendTo(content);
|
||||||
|
|
||||||
sections = RED.stack.create({
|
sections = RED.stack.create({
|
||||||
container: content
|
container: stackContainer
|
||||||
}).hide();
|
}).hide();
|
||||||
|
|
||||||
nodeSection = sections.add({
|
nodeSection = sections.add({
|
||||||
@ -60,6 +60,10 @@ RED.sidebar.info = (function() {
|
|||||||
});
|
});
|
||||||
infoSection.content.css("padding","6px");
|
infoSection.content.css("padding","6px");
|
||||||
infoSection.container.css("border-bottom","none");
|
infoSection.container.css("border-bottom","none");
|
||||||
|
|
||||||
|
tipContainer = $('<div class="node-info-tips"></div>').appendTo(content);
|
||||||
|
tipBox = $('<div class="node-info-tip"></div>').appendTo(tipContainer);
|
||||||
|
|
||||||
RED.sidebar.addTab({
|
RED.sidebar.addTab({
|
||||||
id: "info",
|
id: "info",
|
||||||
label: RED._("sidebar.info.label"),
|
label: RED._("sidebar.info.label"),
|
||||||
@ -67,6 +71,9 @@ RED.sidebar.info = (function() {
|
|||||||
content: content,
|
content: content,
|
||||||
enableOnEdit: true
|
enableOnEdit: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
tips.start();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function show() {
|
function show() {
|
||||||
@ -100,7 +107,6 @@ RED.sidebar.info = (function() {
|
|||||||
return el;
|
return el;
|
||||||
}
|
}
|
||||||
function refresh(node) {
|
function refresh(node) {
|
||||||
tips.stop();
|
|
||||||
sections.show();
|
sections.show();
|
||||||
$(nodeSection.content).empty();
|
$(nodeSection.content).empty();
|
||||||
$(infoSection.content).empty();
|
$(infoSection.content).empty();
|
||||||
@ -108,6 +114,7 @@ RED.sidebar.info = (function() {
|
|||||||
var table = $('<table class="node-info"></table>');
|
var table = $('<table class="node-info"></table>');
|
||||||
var tableBody = $('<tbody>').appendTo(table);
|
var tableBody = $('<tbody>').appendTo(table);
|
||||||
var propRow;
|
var propRow;
|
||||||
|
var subflowNode;
|
||||||
if (node.type === "tab") {
|
if (node.type === "tab") {
|
||||||
nodeSection.title.html("Flow");
|
nodeSection.title.html("Flow");
|
||||||
propRow = $('<tr class="node-info-node-row"><td>Name</td><td></td></tr>').appendTo(tableBody);
|
propRow = $('<tr class="node-info-node-row"><td>Name</td><td></td></tr>').appendTo(tableBody);
|
||||||
@ -127,7 +134,6 @@ RED.sidebar.info = (function() {
|
|||||||
RED.utils.createObjectElement(node.id).appendTo(propRow.children()[1]);
|
RED.utils.createObjectElement(node.id).appendTo(propRow.children()[1]);
|
||||||
|
|
||||||
var m = /^subflow(:(.+))?$/.exec(node.type);
|
var m = /^subflow(:(.+))?$/.exec(node.type);
|
||||||
var subflowNode;
|
|
||||||
|
|
||||||
if (!m && node.type != "subflow" && node.type != "comment") {
|
if (!m && node.type != "subflow" && node.type != "comment") {
|
||||||
if (node._def) {
|
if (node._def) {
|
||||||
@ -199,7 +205,6 @@ RED.sidebar.info = (function() {
|
|||||||
|
|
||||||
|
|
||||||
var tips = (function() {
|
var tips = (function() {
|
||||||
var started = false;
|
|
||||||
var enabled = true;
|
var enabled = true;
|
||||||
var startDelay = 1000;
|
var startDelay = 1000;
|
||||||
var cycleDelay = 15000;
|
var cycleDelay = 15000;
|
||||||
@ -213,9 +218,7 @@ RED.sidebar.info = (function() {
|
|||||||
} else {
|
} else {
|
||||||
enabled = state;
|
enabled = state;
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
if (started) {
|
startTips();
|
||||||
startTips();
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
stopTips();
|
stopTips();
|
||||||
}
|
}
|
||||||
@ -250,7 +253,7 @@ RED.sidebar.info = (function() {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
function startTips() {
|
function startTips() {
|
||||||
started = true;
|
$(".sidebar-node-info").addClass('show-tips');
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
if (!startTimeout && !refreshTimeout) {
|
if (!startTimeout && !refreshTimeout) {
|
||||||
if (tipCount === -1) {
|
if (tipCount === -1) {
|
||||||
@ -263,12 +266,11 @@ RED.sidebar.info = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
function stopTips() {
|
function stopTips() {
|
||||||
started = false;
|
$(".sidebar-node-info").removeClass('show-tips');
|
||||||
clearInterval(refreshTimeout);
|
clearInterval(refreshTimeout);
|
||||||
clearTimeout(startTimeout);
|
clearTimeout(startTimeout);
|
||||||
refreshTimeout = null;
|
refreshTimeout = null;
|
||||||
startTimeout = null;
|
startTimeout = null;
|
||||||
tipBox.hide();
|
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
start: startTips,
|
start: startTips,
|
||||||
@ -277,13 +279,12 @@ RED.sidebar.info = (function() {
|
|||||||
})();
|
})();
|
||||||
|
|
||||||
function clear() {
|
function clear() {
|
||||||
console.log("clear');");
|
|
||||||
sections.hide();
|
sections.hide();
|
||||||
tips.start();
|
//
|
||||||
}
|
}
|
||||||
|
|
||||||
function set(html) {
|
function set(html) {
|
||||||
tips.stop();
|
// tips.stop();
|
||||||
sections.show();
|
sections.show();
|
||||||
$(infoSection.content).html(html);
|
$(infoSection.content).html(html);
|
||||||
}
|
}
|
||||||
|
@ -181,26 +181,51 @@ div.node-info {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.node-info-tip {
|
.sidebar-node-info-stack {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
.node-info-tips {
|
||||||
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 40%;
|
|
||||||
left:0;
|
left:0;
|
||||||
right:0;
|
right:0;
|
||||||
|
bottom: 0;
|
||||||
|
height: 150px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-top: 1px solid $secondary-border-color;
|
||||||
|
background-color: #fff;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.sidebar-node-info.show-tips {
|
||||||
|
.sidebar-node-info-stack {
|
||||||
|
bottom: 150px;
|
||||||
|
}
|
||||||
|
.node-info-tips {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.node-info-tips:before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
height: 100%;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-right: -0.25em; /* Adjusts for spacing */
|
||||||
|
}
|
||||||
|
|
||||||
|
.node-info-tip {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
width: calc(100% - 30px);
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
line-height: 1.9em;
|
line-height: 1.9em;
|
||||||
color : #bbb;
|
color : #bbb;
|
||||||
background-color: #fff;
|
|
||||||
@include disable-selection;
|
@include disable-selection;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
&.collapsed {
|
|
||||||
top: auto;
|
|
||||||
bottom: 0;
|
|
||||||
height: 150px;
|
|
||||||
border-top: 1px solid $secondary-border-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user