treestyletab/modules/pseudoTreeBuilder.js

191 lines
6.5 KiB
JavaScript
Raw Normal View History

2014-09-30 07:09:27 -04:00
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the Tree Style Tab.
*
* The Initial Developer of the Original Code is YUKI "Piro" Hiroshi.
* Portions created by the Initial Developer are Copyright (C) 2011-2016
2014-09-30 07:09:27 -04:00
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): YUKI "Piro" Hiroshi <piro.outsider.reflex@gmail.com>
* Tetsuharu OHZEKI <https://github.com/saneyuki>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ******/
var EXPORTED_SYMBOLS = ['PseudoTreeBuilder'];
2014-09-30 07:09:27 -04:00
const Cc = Components.classes;
const Ci = Components.interfaces;
Components.utils.import('resource://gre/modules/XPCOMUtils.jsm');
XPCOMUtils.defineLazyModuleGetter(this, 'TreeStyleTabBase', 'resource://treestyletab-modules/base.js');
var PseudoTreeBuilder = {
kFAVICON : 'treestyletab-pseudo-tree-favicon',
2016-02-15 06:26:14 -05:00
kROOT : 'treestyletab-pseudo-tree-root',
2014-09-30 07:09:27 -04:00
kROOTITEM : 'treestyletab-pseudo-tree-root-item',
kTREEITEM : 'treestyletab-pseudo-tree-item',
kTREEROW : 'treestyletab-pseudo-tree-row',
kTREECHILDREN : 'treestyletab-pseudo-tree-children',
kTAB_LINK_CLICK : 'nsDOMTSTPseudoTreeItemClick',
build : function TB_build(aTab)
{
if (!aTab)
return null;
var tree = this.createTabItem(aTab);
2016-02-15 06:26:14 -05:00
tree.className = this.kROOT;
2014-09-30 07:09:27 -04:00
2016-02-19 06:16:58 -05:00
var row = tree.querySelector('*|*.' + this.kTREEROW);
2014-09-30 07:09:27 -04:00
if (!row)
return;
2016-02-19 06:16:58 -05:00
row.className += ' ' + this.kROOTITEM;
2014-09-30 07:09:27 -04:00
tree.setAttribute('onclick',
('var doc = event.target.ownerDocument;\n' +
'var label = doc.evaluate(\n' +
' "ancestor-or-self::*[local-name()=\'label\' and contains(@class, \'text-link\')][1]",\n' +
' event.target,\n' +
' null,\n' +
' Components.interfaces.nsIDOMXPathResult.FIRST_ORDERED_NODE_TYPE,\n' +
' null\n' +
' ).singleNodeValue;\n' +
'if (label) {\n' +
' var customEvent = new doc.defaultView.CustomEvent(%EVENT_TYPE%, {\n' +
' bubbles : true,\n' +
' cancelable : true,\n' +
' detail : {\n' +
' id : label.getAttribute("tab-id"),\n' +
' sourceEvent : event\n' +
' }\n' +
' });\n' +
' event.target.dispatchEvent(customEvent);\n' +
'}').replace('%EVENT_TYPE%', JSON.stringify(this.kTAB_LINK_CLICK)));
2014-09-30 07:09:27 -04:00
return tree;
},
createTabItem : function TB_createTabItem(aTab)
{
var doc = aTab.ownerDocument;
var w = doc.defaultView;
var item = doc.createElement('vbox');
2016-02-15 05:18:42 -05:00
item.setAttribute('class', this.kTREEITEM);
2014-09-30 07:09:27 -04:00
var favicon = item.appendChild(doc.createElement('image'));
2014-09-30 07:09:27 -04:00
favicon.setAttribute('src', aTab.getAttribute('image') || 'chrome://mozapps/skin/places/defaultFavicon.png');
favicon.setAttribute('class', this.kFAVICON);
var label = item.appendChild(doc.createElement('label'));
2016-02-15 05:18:42 -05:00
label.setAttribute('flex', 1);
label.textContent = aTab.label;
2014-09-30 07:09:27 -04:00
var tooltip = aTab.label;
var uri = aTab.linkedBrowser.currentURI.spec;
if (w.isBlankPageURL ? !w.isBlankPageURL(uri) : (uri != 'about:blank')) tooltip += '\n' + uri;
label.setAttribute('tooltiptext', tooltip);
2016-02-15 05:18:42 -05:00
label.setAttribute('class', 'text-link');
2014-09-30 07:09:27 -04:00
label.setAttribute('tab-id', TreeStyleTabBase.getTabValue(aTab, TreeStyleTabBase.kID));
var row = doc.createElement('vbox');
2016-02-15 05:18:42 -05:00
row.setAttribute('class', this.kTREEROW);
row.appendChild(item);
2014-09-30 07:09:27 -04:00
var children = this.createTabChildren(aTab);
if (children) {
let container = doc.createElement('vbox');
2016-02-15 05:18:42 -05:00
container.appendChild(row);
2014-09-30 07:09:27 -04:00
container.appendChild(children);
return container;
}
else {
2016-02-15 05:18:42 -05:00
return row;
2014-09-30 07:09:27 -04:00
}
},
createTabChildren : function TB_createTabChildren(aTab)
{
var doc = aTab.ownerDocument;
var children = TreeStyleTabBase.getChildTabs(aTab);
if (!children.length)
return null;
var container = doc.createElement('vbox');
2016-02-15 05:18:42 -05:00
container.setAttribute('class', this.kTREECHILDREN);
2014-09-30 07:09:27 -04:00
for (let i = 0, maxi = children.length; i < maxi; i++)
{
container.appendChild(this.createTabItem(children[i]));
}
return container;
},
columnizeTree : function TB_columnizeTree(aTree, aOptions)
{
if (!aTree)
return;
aOptions = aOptions || {};
2016-03-05 01:53:26 -05:00
aOptions.columnWidth = aOptions.columnWidth || '20em';
2016-03-05 00:47:55 -05:00
var style = aTree.style;
2016-03-05 01:53:26 -05:00
style.columnWidth = style.MozColumnWidth = 'calc(' + aOptions.columnWidth + ')';
{
let computedStyle = aTree.ownerDocument.defaultView.getComputedStyle(aTree, null)
aTree.columnWidth = Number((computedStyle.MozColumnWidth || computedStyle.columnWidth).replace(/px/, ''));
}
style.columnGap = style.MozColumnGap = '0';
style.columnFill = style.MozColumnFill = 'auto';
2016-03-05 02:56:09 -05:00
style.columnCount = style.MozColumnCount = 'auto';
var containerBox = aOptions.containerBox || aTree.parentNode.boxObject;
var maxWidth = containerBox.width;
if (aTree.columnWidth * 2 <= maxWidth ||
aOptions.calculateCount) {
style.height = style.maxHeight =
Math.floor(containerBox.height * 0.9) + 'px';
if (this.getActualColumnCount(aTree) == 1)
style.columnWidth = style.MozColumnWidth = '';
}
2016-02-15 11:24:36 -05:00
else {
style.height = style.maxHeight = '';
}
2016-02-19 06:16:41 -05:00
},
getActualColumnCount : function TB_getActualColumnCount(aTree)
{
var range = aTree.ownerDocument.createRange();
range.selectNodeContents(aTree);
var rect = range.getBoundingClientRect();
range.detach();
return Math.floor(rect.width / aTree.columnWidth);
2014-09-30 07:09:27 -04:00
}
};