mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Tidy up tab switching
This commit is contained in:
parent
6d4a7c73b5
commit
fb5b45c655
@ -76,8 +76,36 @@ RED.view = function() {
|
|||||||
} else {
|
} else {
|
||||||
$("#workspace-toolbar").hide();
|
$("#workspace-toolbar").hide();
|
||||||
}
|
}
|
||||||
|
var chart = $("#chart");
|
||||||
|
if (activeWorkspace != 0) {
|
||||||
|
workspaceScrollPositions[activeWorkspace] = {
|
||||||
|
left:chart.scrollLeft(),
|
||||||
|
top:chart.scrollTop()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
var scrollStartLeft = chart.scrollLeft();
|
||||||
|
var scrollStartTop = chart.scrollTop();
|
||||||
|
|
||||||
RED.view.setWorkspace(tab.id);
|
activeWorkspace = tab.id;
|
||||||
|
if (workspaceScrollPositions[activeWorkspace]) {
|
||||||
|
chart.scrollLeft(workspaceScrollPositions[activeWorkspace].left);
|
||||||
|
chart.scrollTop(workspaceScrollPositions[activeWorkspace].top);
|
||||||
|
} else {
|
||||||
|
chart.scrollLeft(0);
|
||||||
|
chart.scrollTop(0);
|
||||||
|
}
|
||||||
|
var scrollDeltaLeft = chart.scrollLeft() - scrollStartLeft;
|
||||||
|
var scrollDeltaTop = chart.scrollTop() - scrollStartTop;
|
||||||
|
if (mouse_position != null) {
|
||||||
|
mouse_position[0] += scrollDeltaLeft;
|
||||||
|
mouse_position[1] += scrollDeltaTop;
|
||||||
|
}
|
||||||
|
|
||||||
|
clearSelection();
|
||||||
|
RED.nodes.eachNode(function(n) {
|
||||||
|
n.dirty = true;
|
||||||
|
});
|
||||||
|
redraw();
|
||||||
},
|
},
|
||||||
ondblclick: function(tab) {
|
ondblclick: function(tab) {
|
||||||
showRenameWorkspaceDialog(tab.id);
|
showRenameWorkspaceDialog(tab.id);
|
||||||
@ -1236,38 +1264,6 @@ RED.view = function() {
|
|||||||
getWorkspace: function() {
|
getWorkspace: function() {
|
||||||
return activeWorkspace;
|
return activeWorkspace;
|
||||||
},
|
},
|
||||||
setWorkspace: function(z) {
|
|
||||||
var chart = $("#chart");
|
|
||||||
if (activeWorkspace != 0) {
|
|
||||||
workspaceScrollPositions[activeWorkspace] = {
|
|
||||||
left:chart.scrollLeft(),
|
|
||||||
top:chart.scrollTop()
|
|
||||||
};
|
|
||||||
}
|
|
||||||
var scrollStartLeft = chart.scrollLeft();
|
|
||||||
var scrollStartTop = chart.scrollTop();
|
|
||||||
|
|
||||||
activeWorkspace = z;
|
|
||||||
if (workspaceScrollPositions[activeWorkspace]) {
|
|
||||||
chart.scrollLeft(workspaceScrollPositions[activeWorkspace].left);
|
|
||||||
chart.scrollTop(workspaceScrollPositions[activeWorkspace].top);
|
|
||||||
} else {
|
|
||||||
chart.scrollLeft(0);
|
|
||||||
chart.scrollTop(0);
|
|
||||||
}
|
|
||||||
var scrollDeltaLeft = chart.scrollLeft() - scrollStartLeft;
|
|
||||||
var scrollDeltaTop = chart.scrollTop() - scrollStartTop;
|
|
||||||
if (mouse_position != null) {
|
|
||||||
mouse_position[0] += scrollDeltaLeft;
|
|
||||||
mouse_position[1] += scrollDeltaTop;
|
|
||||||
}
|
|
||||||
|
|
||||||
clearSelection();
|
|
||||||
RED.nodes.eachNode(function(n) {
|
|
||||||
n.dirty = true;
|
|
||||||
});
|
|
||||||
redraw();
|
|
||||||
},
|
|
||||||
redraw:redraw,
|
redraw:redraw,
|
||||||
dirty: function(d) {
|
dirty: function(d) {
|
||||||
if (d == null) {
|
if (d == null) {
|
||||||
@ -1279,12 +1275,6 @@ RED.view = function() {
|
|||||||
importNodes: importNodes,
|
importNodes: importNodes,
|
||||||
resize: function() {
|
resize: function() {
|
||||||
workspace_tabs.resize();
|
workspace_tabs.resize();
|
||||||
},
|
|
||||||
|
|
||||||
addFlow: function() {
|
|
||||||
var ws = {type:"subflow",id:RED.nodes.id(),label:"Flow 1", closeable: true};
|
|
||||||
RED.nodes.addWorkspace(ws);
|
|
||||||
workspace_tabs.addTab(ws);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}();
|
}();
|
||||||
|
Loading…
Reference in New Issue
Block a user