mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
make treelist of subflow/config nodes initialy has empty placeholder
This commit is contained in:
parent
842cd1ecf0
commit
4f3cb3103e
@ -20,6 +20,7 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
children: []
|
children: []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
id: "__subflow__",
|
||||||
label: RED._("menu.label.subflows"),
|
label: RED._("menu.label.subflows"),
|
||||||
children: []
|
children: []
|
||||||
},
|
},
|
||||||
@ -272,6 +273,9 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
subflowList.treeList.addChild(getEmptyItem("__subflow__"));
|
||||||
|
globalConfigNodes.treeList.addChild(getEmptyItem("__global__"));
|
||||||
|
|
||||||
RED.events.on("projects:load", onProjectLoad)
|
RED.events.on("projects:load", onProjectLoad)
|
||||||
|
|
||||||
RED.events.on("flows:add", onFlowAdd)
|
RED.events.on("flows:add", onFlowAdd)
|
||||||
@ -358,6 +362,10 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
} else {
|
} else {
|
||||||
objects[sf.id].children.push(getEmptyItem(sf.id));
|
objects[sf.id].children.push(getEmptyItem(sf.id));
|
||||||
}
|
}
|
||||||
|
if (empties["__subflow__"]) {
|
||||||
|
empties["__subflow__"].treeList.remove();
|
||||||
|
delete empties["__subflow__"];
|
||||||
|
}
|
||||||
subflowList.treeList.addChild(objects[sf.id])
|
subflowList.treeList.addChild(objects[sf.id])
|
||||||
updateSearch();
|
updateSearch();
|
||||||
}
|
}
|
||||||
@ -384,13 +392,8 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
} else {
|
} else {
|
||||||
existingObject.element.find(".red-ui-info-outline-item-label").html(" ");
|
existingObject.element.find(".red-ui-info-outline-item-label").html(" ");
|
||||||
}
|
}
|
||||||
var oldParent = existingObject.parent;
|
if (parent !== existingObject.parent.id) {
|
||||||
var oldParentID = oldParent.id;
|
|
||||||
if (parent !== oldParentID) {
|
|
||||||
existingObject.treeList.remove(true);
|
existingObject.treeList.remove(true);
|
||||||
if (oldParent.children.length === 0) {
|
|
||||||
objects[oldParentID].treeList.addChild(getEmptyItem(oldParentID));
|
|
||||||
}
|
|
||||||
if (parent === "__global__") {
|
if (parent === "__global__") {
|
||||||
globalConfigNodes.treeList.addChild(existingObject);
|
globalConfigNodes.treeList.addChild(existingObject);
|
||||||
} else {
|
} else {
|
||||||
@ -443,8 +446,8 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
delete missingParents[n.id]
|
delete missingParents[n.id]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var parent = n.g||n.z;
|
var parent = n.g||n.z||"__global__";
|
||||||
if (parent) {
|
if (parent !== "__global__") {
|
||||||
if (objects[parent]) {
|
if (objects[parent]) {
|
||||||
if (empties[parent]) {
|
if (empties[parent]) {
|
||||||
empties[parent].treeList.remove();
|
empties[parent].treeList.remove();
|
||||||
@ -460,8 +463,12 @@ RED.sidebar.info.outliner = (function() {
|
|||||||
missingParents[parent].push(objects[n.id])
|
missingParents[parent].push(objects[n.id])
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (empties[parent]) {
|
||||||
|
empties[parent].treeList.remove();
|
||||||
|
delete empties[parent];
|
||||||
|
}
|
||||||
// No parent - add to Global flow list
|
// No parent - add to Global flow list
|
||||||
globalConfigNodes.treeList.addChild(objects[n.id])
|
globalConfigNodes.treeList.addChild(objects[n.id]);
|
||||||
}
|
}
|
||||||
objects[n.id].element.toggleClass("red-ui-info-outline-item-disabled", !!n.d)
|
objects[n.id].element.toggleClass("red-ui-info-outline-item-disabled", !!n.d)
|
||||||
updateSearch();
|
updateSearch();
|
||||||
|
Loading…
Reference in New Issue
Block a user