mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
110 lines
4.0 KiB
JavaScript
110 lines
4.0 KiB
JavaScript
/**
|
|
* 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() {
|
|
|
|
//$('#sidebar').tabs();
|
|
var sidebar_tabs = RED.tabs.create({
|
|
id:"sidebar-tabs",
|
|
onchange:function(id) {
|
|
$("#sidebar-content").children().hide();
|
|
$("#"+id).show();
|
|
}
|
|
});
|
|
function addTab(title,content) {
|
|
$("#sidebar-content").append(content);
|
|
$(content).hide();
|
|
sidebar_tabs.addTab({id:"tab-"+title,label:title});
|
|
//content.style.position = "absolute";
|
|
//$('#sidebar').tabs("refresh");
|
|
}
|
|
|
|
var content = document.createElement("div");
|
|
content.id = "tab-info";
|
|
content.style.paddingTop = "4px";
|
|
content.style.paddingLeft = "4px";
|
|
content.style.paddingRight = "4px";
|
|
|
|
addTab("info",content);
|
|
|
|
$('#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();
|
|
sidebarSeparator.chartWidth = $("#workspace").width();
|
|
sidebarSeparator.chartRight = winWidth-$("#workspace").width()-$("#workspace").offset().left-2;
|
|
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;
|
|
$("#workspace").css("right",newChartRight);
|
|
$("#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");
|
|
}
|
|
sidebar_tabs.resize();
|
|
RED.view.resize();
|
|
|
|
},
|
|
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() {
|
|
//if ($('#sidebar').tabs( "option", "active" ) === false) {
|
|
// $('#sidebar').tabs( "option", "active",0);
|
|
//}
|
|
var btnSidebar = $("#btn-sidebar");
|
|
btnSidebar.toggleClass("active");
|
|
|
|
if (!btnSidebar.hasClass("active")) {
|
|
$("#main-container").addClass("sidebar-closed");
|
|
} else {
|
|
$("#main-container").removeClass("sidebar-closed");
|
|
}
|
|
}
|
|
toggleSidebar();
|
|
|
|
|
|
return {
|
|
addTab: addTab
|
|
}
|
|
|
|
}();
|