2013-09-05 16:02:48 +02:00
|
|
|
/**
|
|
|
|
* Copyright 2013 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.sidebar = function() {
|
|
|
|
|
2013-10-28 21:06:46 +01:00
|
|
|
//$('#sidebar').tabs();
|
|
|
|
var sidebar_tabs = RED.tabs.create({
|
|
|
|
id:"sidebar-tabs",
|
2014-02-21 10:54:50 +01:00
|
|
|
onchange:function(tab) {
|
2013-10-28 21:06:46 +01:00
|
|
|
$("#sidebar-content").children().hide();
|
2014-02-21 10:54:50 +01:00
|
|
|
$("#"+tab.id).show();
|
2014-01-25 23:31:43 +01:00
|
|
|
},
|
2014-02-21 10:54:50 +01:00
|
|
|
onremove: function(tab) {
|
|
|
|
$("#"+tab.id).remove();
|
2013-10-28 21:06:46 +01:00
|
|
|
}
|
|
|
|
});
|
2014-01-25 23:31:43 +01:00
|
|
|
function addTab(title,content,closeable) {
|
2013-10-28 21:06:46 +01:00
|
|
|
$("#sidebar-content").append(content);
|
|
|
|
$(content).hide();
|
2014-01-25 23:31:43 +01:00
|
|
|
sidebar_tabs.addTab({id:"tab-"+title,label:title,closeable:closeable});
|
2013-10-28 21:06:46 +01:00
|
|
|
//content.style.position = "absolute";
|
|
|
|
//$('#sidebar').tabs("refresh");
|
|
|
|
}
|
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
$('#btn-sidebar').click(function() {toggleSidebar();});
|
|
|
|
RED.keyboard.add(/* SPACE */ 32,{ctrl:true},function(){toggleSidebar();d3.event.preventDefault();});
|
|
|
|
|
|
|
|
var sidebarSeparator = {};
|
|
|
|
$("#sidebar-separator").draggable({
|
|
|
|
axis: "x",
|
|
|
|
start:function(event,ui) {
|
|
|
|
var winWidth = $(window).width();
|
|
|
|
sidebarSeparator.start = ui.position.left;
|
|
|
|
sidebarSeparator.width = $("#sidebar").width();
|
2013-10-23 01:02:22 +02:00
|
|
|
sidebarSeparator.chartWidth = $("#workspace").width();
|
|
|
|
sidebarSeparator.chartRight = winWidth-$("#workspace").width()-$("#workspace").offset().left-2;
|
2013-09-05 16:02:48 +02:00
|
|
|
sidebarSeparator.closing = false;
|
|
|
|
},
|
|
|
|
drag: function(event,ui) {
|
|
|
|
var d = ui.position.left-sidebarSeparator.start;
|
|
|
|
var newSidebarWidth = sidebarSeparator.width-d;
|
|
|
|
|
|
|
|
if (newSidebarWidth > 180 && sidebarSeparator.chartWidth+d > 200) {
|
|
|
|
var newChartRight = sidebarSeparator.chartRight-d;
|
2013-10-23 01:02:22 +02:00
|
|
|
$("#workspace").css("right",newChartRight);
|
2013-09-05 16:02:48 +02:00
|
|
|
$("#chart-zoom-controls").css("right",newChartRight+20);
|
|
|
|
$("#sidebar").width(newSidebarWidth);
|
|
|
|
}
|
|
|
|
if (newSidebarWidth < 150 && !sidebarSeparator.closing) {
|
|
|
|
$("#sidebar").addClass("closing");
|
|
|
|
sidebarSeparator.closing = true;
|
|
|
|
}
|
|
|
|
if (newSidebarWidth >= 150 && sidebarSeparator.closing) {
|
|
|
|
sidebarSeparator.closing = false;
|
|
|
|
$("#sidebar").removeClass("closing");
|
|
|
|
}
|
2013-10-28 21:06:46 +01:00
|
|
|
sidebar_tabs.resize();
|
2013-10-23 11:44:08 +02:00
|
|
|
RED.view.resize();
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
},
|
|
|
|
stop:function(event,ui) {
|
|
|
|
$("#sidebar-separator").css("left","auto");
|
|
|
|
$("#sidebar-separator").css("right",($("#sidebar").width()+15)+"px");
|
|
|
|
if (sidebarSeparator.closing) {
|
|
|
|
$("#sidebar").removeClass("closing");
|
|
|
|
toggleSidebar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function toggleSidebar() {
|
2013-10-28 21:06:46 +01:00
|
|
|
//if ($('#sidebar').tabs( "option", "active" ) === false) {
|
|
|
|
// $('#sidebar').tabs( "option", "active",0);
|
|
|
|
//}
|
2013-09-05 16:02:48 +02:00
|
|
|
var btnSidebar = $("#btn-sidebar");
|
|
|
|
btnSidebar.toggleClass("active");
|
|
|
|
|
|
|
|
if (!btnSidebar.hasClass("active")) {
|
|
|
|
$("#main-container").addClass("sidebar-closed");
|
|
|
|
} else {
|
|
|
|
$("#main-container").removeClass("sidebar-closed");
|
|
|
|
}
|
|
|
|
}
|
2013-09-17 00:16:14 +02:00
|
|
|
toggleSidebar();
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2014-01-25 23:31:43 +01:00
|
|
|
function showSidebar(id) {
|
|
|
|
if (!$("#btn-sidebar").hasClass("active")) {
|
|
|
|
toggleSidebar();
|
|
|
|
}
|
|
|
|
sidebar_tabs.activateTab("tab-"+id);
|
|
|
|
}
|
|
|
|
|
|
|
|
function containsTab(id) {
|
|
|
|
return sidebar_tabs.contains("tab-"+id);
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
|
|
|
return {
|
2014-01-25 23:31:43 +01:00
|
|
|
addTab: addTab,
|
|
|
|
show: showSidebar,
|
|
|
|
containsTab: containsTab
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}();
|