mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Ensure config list refreshes properly on tab delete
This commit is contained in:
parent
17e3b71d9c
commit
51afed4041
@ -187,24 +187,26 @@ RED.sidebar.config = (function() {
|
|||||||
getOrCreateCategory("global",globalCategories);
|
getOrCreateCategory("global",globalCategories);
|
||||||
|
|
||||||
RED.nodes.eachWorkspace(function(ws) {
|
RED.nodes.eachWorkspace(function(ws) {
|
||||||
validList[ws.id] = true;
|
validList[ws.id.replace(/\./g,"-")] = true;
|
||||||
getOrCreateCategory(ws.id,flowCategories,ws.label);
|
getOrCreateCategory(ws.id,flowCategories,ws.label);
|
||||||
})
|
})
|
||||||
RED.nodes.eachSubflow(function(sf) {
|
RED.nodes.eachSubflow(function(sf) {
|
||||||
validList[sf.id] = true;
|
validList[sf.id.replace(/\./g,"-")] = true;
|
||||||
getOrCreateCategory(sf.id,subflowCategories,sf.name);
|
getOrCreateCategory(sf.id,subflowCategories,sf.name);
|
||||||
})
|
})
|
||||||
// $(".workspace-config-node-category").each(function() {
|
$(".workspace-config-node-category").each(function() {
|
||||||
// if (!validList[$(this).attr('id').substring("workspace-config-node-category-".length)]) {
|
var id = $(this).attr('id').substring("workspace-config-node-category-".length);
|
||||||
// $(this).remove();
|
if (!validList[id]) {
|
||||||
// }
|
$(this).remove();
|
||||||
// })
|
delete categories[id];
|
||||||
|
}
|
||||||
|
})
|
||||||
var globalConfigNodes = [];
|
var globalConfigNodes = [];
|
||||||
var configList = {};
|
var configList = {};
|
||||||
RED.nodes.eachConfig(function(cn) {
|
RED.nodes.eachConfig(function(cn) {
|
||||||
if (cn.z) {//} == RED.workspaces.active()) {
|
if (cn.z) {//} == RED.workspaces.active()) {
|
||||||
configList[cn.z] = configList[cn.z]||[];
|
configList[cn.z.replace(/\./g,"-")] = configList[cn.z.replace(/\./g,"-")]||[];
|
||||||
configList[cn.z].push(cn);
|
configList[cn.z.replace(/\./g,"-")].push(cn);
|
||||||
} else if (!cn.z) {
|
} else if (!cn.z) {
|
||||||
globalConfigNodes.push(cn);
|
globalConfigNodes.push(cn);
|
||||||
}
|
}
|
||||||
|
@ -54,6 +54,7 @@ RED.workspaces = (function() {
|
|||||||
historyEvent.workspaces = [ws];
|
historyEvent.workspaces = [ws];
|
||||||
RED.history.push(historyEvent);
|
RED.history.push(historyEvent);
|
||||||
RED.nodes.dirty(true);
|
RED.nodes.dirty(true);
|
||||||
|
RED.sidebar.config.refresh();
|
||||||
} else {
|
} else {
|
||||||
$( "#node-dialog-delete-workspace" ).dialog('option','workspace',ws);
|
$( "#node-dialog-delete-workspace" ).dialog('option','workspace',ws);
|
||||||
$( "#node-dialog-delete-workspace-content" ).text(RED._("workspace.delete",{label:ws.label}));
|
$( "#node-dialog-delete-workspace-content" ).text(RED._("workspace.delete",{label:ws.label}));
|
||||||
|
Loading…
Reference in New Issue
Block a user