2013-09-05 16:02:48 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2013-09-05 16:02:48 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
**/
|
2014-08-08 01:01:35 +02:00
|
|
|
RED.sidebar = (function() {
|
2013-09-05 16:02:48 +02:00
|
|
|
|
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();
|
2016-01-12 18:54:53 +01:00
|
|
|
$("#sidebar-footer").children().hide();
|
2015-07-03 11:07:40 +02:00
|
|
|
if (tab.onchange) {
|
|
|
|
tab.onchange.call(tab);
|
|
|
|
}
|
2016-05-29 23:31:29 +02:00
|
|
|
$(tab.wrapper).show();
|
2016-01-12 18:54:53 +01:00
|
|
|
if (tab.toolbar) {
|
|
|
|
$(tab.toolbar).show();
|
|
|
|
}
|
2014-01-25 23:31:43 +01:00
|
|
|
},
|
2014-02-21 10:54:50 +01:00
|
|
|
onremove: function(tab) {
|
2016-05-29 23:31:29 +02:00
|
|
|
$(tab.wrapper).hide();
|
2015-07-03 11:07:40 +02:00
|
|
|
if (tab.onremove) {
|
|
|
|
tab.onremove.call(tab);
|
|
|
|
}
|
2015-07-12 00:43:45 +02:00
|
|
|
},
|
2018-05-23 11:25:10 +02:00
|
|
|
// minimumActiveTabWidth: 70,
|
|
|
|
collapsible: true
|
2017-09-20 11:30:07 +02:00
|
|
|
// scrollable: true
|
2013-10-28 21:06:46 +01:00
|
|
|
});
|
2015-07-03 11:07:40 +02:00
|
|
|
|
|
|
|
var knownTabs = {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
function addTab(title,content,closeable,visible) {
|
|
|
|
var options;
|
|
|
|
if (typeof title === "string") {
|
|
|
|
// TODO: legacy support in case anyone uses this...
|
|
|
|
options = {
|
|
|
|
id: content.id,
|
|
|
|
label: title,
|
|
|
|
name: title,
|
|
|
|
content: content,
|
|
|
|
closeable: closeable,
|
|
|
|
visible: visible
|
|
|
|
}
|
|
|
|
} else if (typeof title === "object") {
|
|
|
|
options = title;
|
|
|
|
}
|
|
|
|
|
2018-05-23 11:25:10 +02:00
|
|
|
delete options.closeable;
|
2018-06-21 11:31:27 +02:00
|
|
|
|
2016-05-29 23:31:29 +02:00
|
|
|
options.wrapper = $('<div>',{style:"height:100%"}).appendTo("#sidebar-content")
|
|
|
|
options.wrapper.append(options.content);
|
|
|
|
options.wrapper.hide();
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2016-05-29 23:31:29 +02:00
|
|
|
if (!options.enableOnEdit) {
|
|
|
|
options.shade = $('<div>',{class:"sidebar-shade hide"}).appendTo(options.wrapper);
|
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2016-01-12 18:54:53 +01:00
|
|
|
if (options.toolbar) {
|
|
|
|
$("#sidebar-footer").append(options.toolbar);
|
|
|
|
$(options.toolbar).hide();
|
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
var id = options.id;
|
|
|
|
|
2016-01-09 21:39:03 +01:00
|
|
|
RED.menu.addItem("menu-item-view-menu",{
|
|
|
|
id:"menu-item-view-menu-"+options.id,
|
2015-07-03 11:07:40 +02:00
|
|
|
label:options.name,
|
|
|
|
onselect:function() {
|
|
|
|
showSidebar(options.id);
|
2015-07-09 17:48:53 +02:00
|
|
|
},
|
|
|
|
group: "sidebar-tabs"
|
2015-07-03 11:07:40 +02:00
|
|
|
});
|
|
|
|
|
2018-05-23 11:25:10 +02:00
|
|
|
options.iconClass = options.iconClass || "fa fa-square-o"
|
|
|
|
|
2015-07-03 11:07:40 +02:00
|
|
|
knownTabs[options.id] = options;
|
|
|
|
|
|
|
|
if (options.visible !== false) {
|
|
|
|
sidebar_tabs.addTab(knownTabs[options.id]);
|
|
|
|
}
|
2013-10-28 21:06:46 +01:00
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
|
2015-07-03 11:07:40 +02:00
|
|
|
function removeTab(id) {
|
|
|
|
sidebar_tabs.removeTab(id);
|
2016-05-29 23:31:29 +02:00
|
|
|
$(knownTabs[id].wrapper).remove();
|
|
|
|
if (knownTabs[id].footer) {
|
|
|
|
knownTabs[id].footer.remove();
|
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
delete knownTabs[id];
|
2016-01-09 21:39:03 +01:00
|
|
|
RED.menu.removeItem("menu-item-view-menu-"+id);
|
2014-08-28 01:35:07 +02:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
var sidebarSeparator = {};
|
|
|
|
$("#sidebar-separator").draggable({
|
|
|
|
axis: "x",
|
|
|
|
start:function(event,ui) {
|
2014-05-13 01:01:05 +02:00
|
|
|
sidebarSeparator.closing = false;
|
|
|
|
sidebarSeparator.opening = false;
|
2013-09-05 16:02:48 +02:00
|
|
|
var winWidth = $(window).width();
|
|
|
|
sidebarSeparator.start = ui.position.left;
|
2013-10-23 01:02:22 +02:00
|
|
|
sidebarSeparator.chartWidth = $("#workspace").width();
|
|
|
|
sidebarSeparator.chartRight = winWidth-$("#workspace").width()-$("#workspace").offset().left-2;
|
2016-05-08 23:50:55 +02:00
|
|
|
|
2015-04-13 17:48:38 +02:00
|
|
|
if (!RED.menu.isSelected("menu-item-sidebar")) {
|
2014-05-13 01:01:05 +02:00
|
|
|
sidebarSeparator.opening = true;
|
2015-07-14 00:21:03 +02:00
|
|
|
var newChartRight = 7;
|
2014-05-13 01:01:05 +02:00
|
|
|
$("#sidebar").addClass("closing");
|
|
|
|
$("#workspace").css("right",newChartRight);
|
2016-01-31 23:27:14 +01:00
|
|
|
$("#editor-stack").css("right",newChartRight+1);
|
2014-05-13 01:01:05 +02:00
|
|
|
$("#sidebar").width(0);
|
2015-04-13 17:48:38 +02:00
|
|
|
RED.menu.setSelected("menu-item-sidebar",true);
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.emit("sidebar:resize");
|
2014-05-13 01:01:05 +02:00
|
|
|
}
|
|
|
|
sidebarSeparator.width = $("#sidebar").width();
|
2013-09-05 16:02:48 +02:00
|
|
|
},
|
|
|
|
drag: function(event,ui) {
|
|
|
|
var d = ui.position.left-sidebarSeparator.start;
|
|
|
|
var newSidebarWidth = sidebarSeparator.width-d;
|
2014-05-13 01:01:05 +02:00
|
|
|
if (sidebarSeparator.opening) {
|
2015-07-12 00:43:45 +02:00
|
|
|
newSidebarWidth -= 3;
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-05-13 01:01:05 +02:00
|
|
|
if (newSidebarWidth > 150) {
|
|
|
|
if (sidebarSeparator.chartWidth+d < 200) {
|
|
|
|
ui.position.left = 200+sidebarSeparator.start-sidebarSeparator.chartWidth;
|
|
|
|
d = ui.position.left-sidebarSeparator.start;
|
|
|
|
newSidebarWidth = sidebarSeparator.width-d;
|
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-05-13 01:01:05 +02:00
|
|
|
if (newSidebarWidth < 150) {
|
|
|
|
if (!sidebarSeparator.closing) {
|
|
|
|
$("#sidebar").addClass("closing");
|
|
|
|
sidebarSeparator.closing = true;
|
|
|
|
}
|
|
|
|
if (!sidebarSeparator.opening) {
|
|
|
|
newSidebarWidth = 150;
|
|
|
|
ui.position.left = sidebarSeparator.width-(150 - sidebarSeparator.start);
|
|
|
|
d = ui.position.left-sidebarSeparator.start;
|
|
|
|
}
|
|
|
|
} else if (newSidebarWidth > 150 && (sidebarSeparator.closing || sidebarSeparator.opening)) {
|
2013-09-05 16:02:48 +02:00
|
|
|
sidebarSeparator.closing = false;
|
|
|
|
$("#sidebar").removeClass("closing");
|
|
|
|
}
|
2014-05-13 01:01:05 +02:00
|
|
|
|
|
|
|
var newChartRight = sidebarSeparator.chartRight-d;
|
|
|
|
$("#workspace").css("right",newChartRight);
|
2016-01-31 23:27:14 +01:00
|
|
|
$("#editor-stack").css("right",newChartRight+1);
|
2014-05-13 01:01:05 +02:00
|
|
|
$("#sidebar").width(newSidebarWidth);
|
|
|
|
|
2013-10-28 21:06:46 +01:00
|
|
|
sidebar_tabs.resize();
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.emit("sidebar:resize");
|
2013-09-05 16:02:48 +02:00
|
|
|
},
|
|
|
|
stop:function(event,ui) {
|
|
|
|
if (sidebarSeparator.closing) {
|
|
|
|
$("#sidebar").removeClass("closing");
|
2015-04-13 17:48:38 +02:00
|
|
|
RED.menu.setSelected("menu-item-sidebar",false);
|
2014-05-13 01:01:05 +02:00
|
|
|
if ($("#sidebar").width() < 180) {
|
|
|
|
$("#sidebar").width(180);
|
2015-07-14 00:21:03 +02:00
|
|
|
$("#workspace").css("right",187);
|
2016-01-31 23:27:14 +01:00
|
|
|
$("#editor-stack").css("right",188);
|
2014-05-13 01:01:05 +02:00
|
|
|
}
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2014-05-13 01:01:05 +02:00
|
|
|
$("#sidebar-separator").css("left","auto");
|
2015-07-14 00:21:03 +02:00
|
|
|
$("#sidebar-separator").css("right",($("#sidebar").width()+2)+"px");
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.emit("sidebar:resize");
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
|
|
|
});
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-08-20 22:58:54 +02:00
|
|
|
function toggleSidebar(state) {
|
|
|
|
if (!state) {
|
2013-09-05 16:02:48 +02:00
|
|
|
$("#main-container").addClass("sidebar-closed");
|
|
|
|
} else {
|
|
|
|
$("#main-container").removeClass("sidebar-closed");
|
2014-10-30 15:19:44 +01:00
|
|
|
sidebar_tabs.resize();
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-07-10 20:49:31 +02:00
|
|
|
RED.events.emit("sidebar:resize");
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-01-25 23:31:43 +01:00
|
|
|
function showSidebar(id) {
|
2014-11-11 11:15:02 +01:00
|
|
|
if (id) {
|
2015-07-03 11:07:40 +02:00
|
|
|
if (!containsTab(id)) {
|
|
|
|
sidebar_tabs.addTab(knownTabs[id]);
|
|
|
|
}
|
|
|
|
sidebar_tabs.activateTab(id);
|
|
|
|
if (!RED.menu.isSelected("menu-item-sidebar")) {
|
|
|
|
RED.menu.setSelected("menu-item-sidebar",true);
|
|
|
|
}
|
2014-11-11 11:15:02 +01:00
|
|
|
}
|
2014-01-25 23:31:43 +01:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-01-25 23:31:43 +01:00
|
|
|
function containsTab(id) {
|
2015-07-03 11:07:40 +02:00
|
|
|
return sidebar_tabs.contains(id);
|
2014-01-25 23:31:43 +01:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-11-11 11:15:02 +01:00
|
|
|
function init () {
|
2016-12-04 23:59:43 +01:00
|
|
|
RED.actions.add("core:toggle-sidebar",function(state){
|
|
|
|
if (state === undefined) {
|
|
|
|
RED.menu.toggleSelected("menu-item-sidebar");
|
|
|
|
} else {
|
|
|
|
toggleSidebar(state);
|
|
|
|
}
|
|
|
|
});
|
2014-11-11 11:15:02 +01:00
|
|
|
showSidebar();
|
2015-07-03 11:07:40 +02:00
|
|
|
RED.sidebar.info.init();
|
2015-10-16 22:56:20 +02:00
|
|
|
RED.sidebar.config.init();
|
2018-06-21 11:31:27 +02:00
|
|
|
RED.sidebar.context.init();
|
2015-05-31 13:58:42 +02:00
|
|
|
// hide info bar at start if screen rather narrow...
|
2016-12-04 23:59:43 +01:00
|
|
|
if ($(window).width() < 600) { RED.menu.setSelected("menu-item-sidebar",false); }
|
2014-11-11 11:15:02 +01:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2013-09-05 16:02:48 +02:00
|
|
|
return {
|
2014-11-11 11:15:02 +01:00
|
|
|
init: init,
|
2014-01-25 23:31:43 +01:00
|
|
|
addTab: addTab,
|
2014-08-28 01:35:07 +02:00
|
|
|
removeTab: removeTab,
|
2014-01-25 23:31:43 +01:00
|
|
|
show: showSidebar,
|
2014-08-20 22:58:54 +02:00
|
|
|
containsTab: containsTab,
|
2015-03-02 23:55:34 +01:00
|
|
|
toggleSidebar: toggleSidebar,
|
2013-09-05 16:02:48 +02:00
|
|
|
}
|
2015-07-03 11:07:40 +02:00
|
|
|
|
2014-08-08 01:01:35 +02:00
|
|
|
})();
|