/usr/share/GNUstep/SOGo/WebServerResources/SOGoTabsController.js is in sogo-common 2.2.17a-1.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | /* -*- Mode: java; tab-width: 2; c-label-minimum-indentation: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
function SOGoTabsController() {
}
SOGoTabsController.prototype = {
container: null,
firstTab: null,
activeTab: null,
list: null,
offset: 0,
createScrollButtons: function STC_createScrollButtons() {
var scrollToolbar = createElement("div", null, "scrollToolbar");
scrollToolbar.hide();
var lnk = createElement("a", null,
[ "leftScrollButton",
"scrollButton", "smallToolbarButton"],
{ href: "#" },
null, scrollToolbar);
var span = createElement("span");
lnk.appendChild(span);
span.appendChild(document.createTextNode("<"));
this.onScrollLeftBound = this.onScrollLeft.bindAsEventListener(this);
lnk.observe("click", this.onScrollLeftBound, false);
var lnk = createElement("a", null,
[ "rightScrollButton",
"scrollButton", "smallToolbarButton"],
{ href: "#" },
null, scrollToolbar);
var span = createElement("span");
lnk.appendChild(span);
span.appendChild(document.createTextNode(">"));
this.onScrollRightBound = this.onScrollRight.bindAsEventListener(this);
lnk.observe("click", this.onScrollRightBound, false);
this.container.appendChild(scrollToolbar);
this.scrollToolbar = scrollToolbar;
},
onScrollLeft: function(event) {
if (this.offset < 0) {
var offset = this.offset + 20;
if (offset > 0) {
offset = 0;
}
this.list.setStyle("margin-left: " + offset + "px;");
// log("offset: " + offset);
this.offset = offset;
}
event.stop();
},
onScrollRight: function(event) {
if (this.offset > this.minOffset) {
var offset = this.offset - 20;
if (offset < this.minOffset) {
offset = this.minOffset;
}
this.list.setStyle("margin-left: " + offset + "px;");
// log("offset: " + offset);
this.offset = offset;
}
event.stop();
},
attachToTabsContainer: function STC_attachToTabsContainer(container) {
this.container = container;
container.controller = this;
this.onTabMouseDownBound = this.onTabMouseDown.bindAsEventListener(this);
this.onTabClickBound = this.onTabClick.bindAsEventListener(this);
var list = container.childNodesWithTag("ul");
if (list.length > 0) {
this.list = $(list[0]);
var nodes = this.list.childNodesWithTag("li");
if (nodes.length > 0) {
this.firstTab = $(nodes[0]);
for (var i = 0; i < nodes.length; i++) {
var currentNode = $(nodes[i]);
currentNode.observe("mousedown", this.onTabMouseDownBound, false);
currentNode.observe("click", this.onTabClickBound, false);
if (currentNode.hasClassName("active"))
this.activeTab = currentNode;
//$(currentNode.getAttribute("target")).hide();
}
this.firstTab.addClassName("first");
if (this.activeTab == null) {
this.activeTab = this.firstTab;
this.activeTab.addClassName("active");
}
var last = nodes.length - 1;
this.lastTab = $(nodes[last]);
var target = $(this.activeTab.getAttribute("target"));
target.addClassName("active");
}
this.onWindowResizeBound = this.onWindowResize.bindAsEventListener(this);
Event.observe(window, "resize", this.onWindowResizeBound, false);
}
this.createScrollButtons();
this.recomputeMinOffset();
},
onWindowResize: function STC_onWindowResize(event) {
this.recomputeMinOffset();
},
recomputeMinOffset: function() {
var tabsWidth = (this.lastTab.offsetLeft + this.lastTab.clientWidth
- this.firstTab.offsetLeft
+ 4);
this.minOffset = (this.container.clientWidth - tabsWidth - 40);
if (this.minOffset < -40) {
this.scrollToolbar.show();
} else {
this.scrollToolbar.hide();
if (this.offset < 0) {
this.list.setStyle("margin-left: 0px;");
this.offset = 0;
}
}
},
onTabMouseDown: function STC_onTabMouseDown(event) {
event.stop();
},
onTabClick: function STC_onTabClick(event) {
var clickedTab = getTarget(event);
if (clickedTab.nodeType == 1) {
while (clickedTab.tagName.toLowerCase() != "li") {
clickedTab = $(clickedTab.parentNode);
}
var content = $(clickedTab.getAttribute("target"));
var oldContent = $(this.activeTab.getAttribute("target"));
oldContent.removeClassName("active");
this.activeTab.removeClassName("active"); // previous LI
this.activeTab = $(clickedTab);
this.activeTab.addClassName("active"); // current LI
content.addClassName("active");
this.activeTab.fire("tabs:click", content.id);
content.select('.tabsContainer').each(function(c) {
// When the tab contains an inner tabs container,
// show or hide the tabs navigation arrows of this
// inner container
c.controller.recomputeMinOffset();
});
// Prototype alternative
//oldContent.removeClassName("active");
//container.activeTab.removeClassName("active"); // previous LI
//container.activeTab = node;
//container.activeTab.addClassName("active"); // current LI
//container.activeTab.hide();
//oldContent.hide();
//content.show();
//container.activeTab = node;
//container.activeTab.show();
}
}
}
|