2015-03-13 00:38:37 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2015 IBM Corp.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
RED.workspaces = (function() {
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-03-13 00:38:37 +01:00
|
|
|
var activeWorkspace = 0;
|
|
|
|
var workspaceIndex = 0;
|
|
|
|
|
|
|
|
function addWorkspace(ws) {
|
|
|
|
if (ws) {
|
|
|
|
workspace_tabs.addTab(ws);
|
|
|
|
workspace_tabs.resize();
|
|
|
|
} else {
|
|
|
|
var tabId = RED.nodes.id();
|
|
|
|
do {
|
|
|
|
workspaceIndex += 1;
|
2015-07-08 23:12:52 +02:00
|
|
|
} while($("#workspace-tabs a[title='"+RED._('workspace.defaultName',{number:workspaceIndex})+"']").size() !== 0);
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-07-08 23:12:52 +02:00
|
|
|
ws = {type:"tab",id:tabId,label:RED._('workspace.defaultName',{number:workspaceIndex})};
|
2015-03-13 00:38:37 +01:00
|
|
|
RED.nodes.addWorkspace(ws);
|
|
|
|
workspace_tabs.addTab(ws);
|
|
|
|
workspace_tabs.activateTab(tabId);
|
2015-03-15 22:54:36 +01:00
|
|
|
RED.history.push({t:'add',workspaces:[ws],dirty:RED.nodes.dirty()});
|
|
|
|
RED.nodes.dirty(true);
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function deleteWorkspace(ws,force) {
|
|
|
|
if (workspace_tabs.count() == 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var nodes = [];
|
|
|
|
if (!force) {
|
2015-03-16 00:31:38 +01:00
|
|
|
nodes = RED.nodes.filterNodes({z:ws.id});
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
|
|
|
if (force || nodes.length === 0) {
|
|
|
|
removeWorkspace(ws);
|
|
|
|
var historyEvent = RED.nodes.removeWorkspace(ws.id);
|
|
|
|
historyEvent.t = 'delete';
|
2015-03-15 22:54:36 +01:00
|
|
|
historyEvent.dirty = RED.nodes.dirty();
|
2015-03-13 00:38:37 +01:00
|
|
|
historyEvent.workspaces = [ws];
|
|
|
|
RED.history.push(historyEvent);
|
2015-03-15 22:54:36 +01:00
|
|
|
RED.nodes.dirty(true);
|
2016-01-14 16:22:00 +01:00
|
|
|
RED.sidebar.config.refresh();
|
2015-03-13 00:38:37 +01:00
|
|
|
} else {
|
|
|
|
$( "#node-dialog-delete-workspace" ).dialog('option','workspace',ws);
|
2015-07-01 00:42:03 +02:00
|
|
|
$( "#node-dialog-delete-workspace-content" ).text(RED._("workspace.delete",{label:ws.label}));
|
2015-03-13 00:38:37 +01:00
|
|
|
$( "#node-dialog-delete-workspace" ).dialog('open');
|
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
}
|
2015-03-13 00:38:37 +01:00
|
|
|
function showRenameWorkspaceDialog(id) {
|
|
|
|
var ws = RED.nodes.workspace(id);
|
|
|
|
$( "#node-dialog-rename-workspace" ).dialog("option","workspace",ws);
|
|
|
|
|
|
|
|
if (workspace_tabs.count() == 1) {
|
|
|
|
$( "#node-dialog-rename-workspace").next().find(".leftButton")
|
|
|
|
.prop('disabled',true)
|
|
|
|
.addClass("ui-state-disabled");
|
|
|
|
} else {
|
|
|
|
$( "#node-dialog-rename-workspace").next().find(".leftButton")
|
|
|
|
.prop('disabled',false)
|
|
|
|
.removeClass("ui-state-disabled");
|
|
|
|
}
|
|
|
|
|
|
|
|
$( "#node-input-workspace-name" ).val(ws.label);
|
|
|
|
$( "#node-dialog-rename-workspace" ).dialog("open");
|
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-05-26 22:52:23 +02:00
|
|
|
var workspace_tabs;
|
|
|
|
function createWorkspaceTabs(){
|
|
|
|
workspace_tabs = RED.tabs.create({
|
|
|
|
id: "workspace-tabs",
|
|
|
|
onchange: function(tab) {
|
|
|
|
var event = {
|
|
|
|
old: activeWorkspace
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
2015-05-26 22:52:23 +02:00
|
|
|
activeWorkspace = tab.id;
|
|
|
|
event.workspace = activeWorkspace;
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.emit("workspace:change",event);
|
2015-10-16 22:56:20 +02:00
|
|
|
RED.sidebar.config.refresh();
|
2015-03-13 00:38:37 +01:00
|
|
|
},
|
2015-05-26 22:52:23 +02:00
|
|
|
ondblclick: function(tab) {
|
|
|
|
if (tab.type != "subflow") {
|
|
|
|
showRenameWorkspaceDialog(tab.id);
|
|
|
|
} else {
|
|
|
|
RED.editor.editSubflow(RED.nodes.subflow(tab.id));
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
|
|
|
},
|
2015-05-26 22:52:23 +02:00
|
|
|
onadd: function(tab) {
|
2015-09-27 21:18:21 +02:00
|
|
|
RED.menu.addItem("menu-item-workspace",{
|
|
|
|
id:"menu-item-workspace-menu-"+tab.id.replace(".","-"),
|
2015-05-26 22:52:23 +02:00
|
|
|
label:tab.label,
|
|
|
|
onselect:function() {
|
|
|
|
workspace_tabs.activateTab(tab.id);
|
|
|
|
}
|
|
|
|
});
|
2015-09-27 21:18:21 +02:00
|
|
|
RED.menu.setDisabled("menu-item-workspace-delete",workspace_tabs.count() == 1);
|
2015-05-26 22:52:23 +02:00
|
|
|
},
|
|
|
|
onremove: function(tab) {
|
2015-09-27 21:18:21 +02:00
|
|
|
RED.menu.setDisabled("menu-item-workspace-delete",workspace_tabs.count() == 1);
|
|
|
|
RED.menu.removeItem("menu-item-workspace-menu-"+tab.id.replace(".","-"));
|
2015-07-03 19:31:37 +02:00
|
|
|
},
|
|
|
|
minimumActiveTabWidth: 150
|
2015-05-26 22:52:23 +02:00
|
|
|
});
|
2015-07-01 00:42:03 +02:00
|
|
|
|
|
|
|
|
2015-05-26 22:52:23 +02:00
|
|
|
$("#node-dialog-rename-workspace form" ).submit(function(e) { e.preventDefault();});
|
|
|
|
$( "#node-dialog-rename-workspace" ).dialog({
|
|
|
|
modal: true,
|
|
|
|
autoOpen: false,
|
|
|
|
width: 500,
|
2015-07-01 00:42:03 +02:00
|
|
|
title: RED._("workspace.renameSheet"),
|
2015-05-26 22:52:23 +02:00
|
|
|
buttons: [
|
|
|
|
{
|
|
|
|
class: 'leftButton',
|
2015-07-01 00:42:03 +02:00
|
|
|
text: RED._("common.label.delete"),
|
2015-05-26 22:52:23 +02:00
|
|
|
click: function() {
|
|
|
|
var workspace = $(this).dialog('option','workspace');
|
|
|
|
$( this ).dialog( "close" );
|
|
|
|
deleteWorkspace(workspace);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2015-07-01 00:42:03 +02:00
|
|
|
text: RED._("common.label.ok"),
|
2015-05-26 22:52:23 +02:00
|
|
|
click: function() {
|
|
|
|
var workspace = $(this).dialog('option','workspace');
|
|
|
|
var label = $( "#node-input-workspace-name" ).val();
|
|
|
|
if (workspace.label != label) {
|
|
|
|
workspace_tabs.renameTab(workspace.id,label);
|
|
|
|
RED.nodes.dirty(true);
|
2016-01-13 11:30:24 +01:00
|
|
|
RED.sidebar.config.refresh();
|
2015-09-27 21:18:21 +02:00
|
|
|
$("#menu-item-workspace-menu-"+workspace.id.replace(".","-")).text(label);
|
2015-05-26 22:52:23 +02:00
|
|
|
}
|
|
|
|
$( this ).dialog( "close" );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2015-07-01 00:42:03 +02:00
|
|
|
text: RED._("common.label.cancel"),
|
2015-05-26 22:52:23 +02:00
|
|
|
click: function() {
|
|
|
|
$( this ).dialog( "close" );
|
|
|
|
}
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
2015-05-26 22:52:23 +02:00
|
|
|
],
|
|
|
|
open: function(e) {
|
|
|
|
RED.keyboard.disable();
|
2015-03-13 00:38:37 +01:00
|
|
|
},
|
2015-05-26 22:52:23 +02:00
|
|
|
close: function(e) {
|
|
|
|
RED.keyboard.enable();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$( "#node-dialog-delete-workspace" ).dialog({
|
|
|
|
modal: true,
|
|
|
|
autoOpen: false,
|
|
|
|
width: 500,
|
2015-07-01 00:42:03 +02:00
|
|
|
title: RED._("workspace.confirmDelete"),
|
2015-05-26 22:52:23 +02:00
|
|
|
buttons: [
|
|
|
|
{
|
2015-07-01 00:42:03 +02:00
|
|
|
text: RED._("common.label.ok"),
|
2015-05-26 22:52:23 +02:00
|
|
|
click: function() {
|
|
|
|
var workspace = $(this).dialog('option','workspace');
|
|
|
|
deleteWorkspace(workspace,true);
|
|
|
|
$( this ).dialog( "close" );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2015-07-01 00:42:03 +02:00
|
|
|
text: RED._("common.label.cancel"),
|
2015-05-26 22:52:23 +02:00
|
|
|
click: function() {
|
|
|
|
$( this ).dialog( "close" );
|
|
|
|
}
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
2015-05-26 22:52:23 +02:00
|
|
|
],
|
|
|
|
open: function(e) {
|
|
|
|
RED.keyboard.disable();
|
|
|
|
},
|
|
|
|
close: function(e) {
|
|
|
|
RED.keyboard.enable();
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
|
|
|
|
2015-05-26 22:52:23 +02:00
|
|
|
});
|
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-03-13 00:38:37 +01:00
|
|
|
function init() {
|
2015-05-26 22:52:23 +02:00
|
|
|
createWorkspaceTabs();
|
2015-03-13 00:38:37 +01:00
|
|
|
$('#btn-workspace-add-tab').on("click",function(e) {addWorkspace(); e.preventDefault()});
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.on("sidebar:resize",workspace_tabs.resize);
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-09-27 21:18:21 +02:00
|
|
|
RED.menu.setAction('menu-item-workspace-delete',function() {
|
2015-03-13 00:38:37 +01:00
|
|
|
deleteWorkspace(RED.nodes.workspace(activeWorkspace));
|
|
|
|
});
|
2015-07-14 00:21:03 +02:00
|
|
|
|
|
|
|
$(window).resize(function() {
|
|
|
|
workspace_tabs.resize();
|
|
|
|
});
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-03-13 00:38:37 +01:00
|
|
|
function removeWorkspace(ws) {
|
|
|
|
if (!ws) {
|
|
|
|
deleteWorkspace(RED.nodes.workspace(activeWorkspace));
|
|
|
|
} else {
|
|
|
|
if (workspace_tabs.contains(ws.id)) {
|
|
|
|
workspace_tabs.removeTab(ws.id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-23 23:49:48 +02:00
|
|
|
|
2015-03-13 00:38:37 +01:00
|
|
|
return {
|
|
|
|
init: init,
|
|
|
|
add: addWorkspace,
|
|
|
|
remove: removeWorkspace,
|
2015-07-01 00:42:03 +02:00
|
|
|
|
2015-03-13 00:38:37 +01:00
|
|
|
edit: function(id) {
|
|
|
|
showRenameWorkspaceDialog(id||activeWorkspace);
|
|
|
|
},
|
|
|
|
contains: function(id) {
|
|
|
|
return workspace_tabs.contains(id);
|
|
|
|
},
|
|
|
|
count: function() {
|
|
|
|
return workspace_tabs.count();
|
|
|
|
},
|
|
|
|
active: function() {
|
|
|
|
return activeWorkspace
|
|
|
|
},
|
|
|
|
show: function(id) {
|
|
|
|
if (!workspace_tabs.contains(id)) {
|
|
|
|
var sf = RED.nodes.subflow(id);
|
|
|
|
if (sf) {
|
2015-07-30 12:03:37 +02:00
|
|
|
addWorkspace({type:"subflow",id:id,icon:"red/images/subflow_tab.png",label:sf.name, closeable: true});
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
2015-07-01 00:42:03 +02:00
|
|
|
}
|
2015-03-13 00:38:37 +01:00
|
|
|
workspace_tabs.activateTab(id);
|
|
|
|
},
|
|
|
|
refresh: function() {
|
|
|
|
RED.nodes.eachSubflow(function(sf) {
|
|
|
|
if (workspace_tabs.contains(sf.id)) {
|
2015-07-30 12:03:37 +02:00
|
|
|
workspace_tabs.renameTab(sf.id,sf.name);
|
2015-03-13 00:38:37 +01:00
|
|
|
}
|
|
|
|
});
|
2015-10-16 22:56:20 +02:00
|
|
|
RED.sidebar.config.refresh();
|
2015-03-13 00:38:37 +01:00
|
|
|
},
|
|
|
|
resize: function() {
|
|
|
|
workspace_tabs.resize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})();
|