treestyletab/modules/browserUIShowHideObserver.js

241 lines
7.7 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) 2014-2015
2014-09-30 07:09:27 -04:00
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): YUKI "Piro" Hiroshi <piro.outsider.reflex@gmail.com>
* Infocatcher <https://github.com/Infocatcher>
*
* 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 = ['BrowserUIShowHideObserver'];
2014-09-30 07:09:27 -04:00
2015-10-26 03:43:25 -04:00
Components.utils.import('resource://gre/modules/XPCOMUtils.jsm');
2014-09-30 07:09:27 -04:00
Components.utils.import('resource://treestyletab-modules/constants.js');
2015-10-26 03:43:25 -04:00
XPCOMUtils.defineLazyModuleGetter(this, 'utils', 'resource://treestyletab-modules/utils.js', 'TreeStyleTabUtils');
function BrowserUIShowHideObserver(aOwner, aBox, aOptions) {
2014-09-30 07:09:27 -04:00
this.owner = aOwner;
this.box = aBox;
this.init(aOptions);
2014-09-30 07:09:27 -04:00
}
BrowserUIShowHideObserver.prototype = {
get MutationObserver()
{
var w = this.box.ownerDocument.defaultView;
return w.MutationObserver || w.MozMutationObserver;
},
init : function BrowserUIShowHideObserver_onInit(aOptions)
2014-09-30 07:09:27 -04:00
{
if (!this.MutationObserver)
return;
this.observer = new this.MutationObserver((function(aMutations, aObserver) {
this.onMutation(aMutations, aObserver);
}).bind(this));
var options = {
2014-09-30 07:09:27 -04:00
childList : true,
attributes : true,
subtree : true,
2015-10-26 03:32:31 -04:00
attributeOldValue: utils.isDebugging('browserUIShowHideObserver'),
2014-09-30 07:09:27 -04:00
attributeFilter : [
'hidden',
'collapsed',
'moz-collapsed', // Used in full screen mode
'disablechrome',
'width',
'height'
2014-09-30 07:09:27 -04:00
]
};
if (aOptions) {
Object.keys(options).forEach(function(aKey) {
if (aKey in aOptions)
options[aKey] = aOptions[aKey];
});
}
this.observer.observe(this.box, options);
2014-09-30 07:09:27 -04:00
},
onMutation : function BrowserUIShowHideObserver_onMutation(aMutations, aObserver)
{
aMutations.forEach(function(aMutation) {
2015-11-05 02:00:32 -05:00
try {
2015-11-05 02:08:15 -05:00
switch (aMutation.type)
{
case 'childList':
2015-11-05 04:08:22 -05:00
if (aMutation.target == this.box) {
this.dumpMutation(aMutation, 'BrowserUIShowHideObserver_onMutation/childList');
2015-11-05 02:08:15 -05:00
this.owner.browser.treeStyleTab.updateFloatingTabbar(TreeStyleTabConstants.kTABBAR_UPDATE_BY_WINDOW_RESIZE);
2015-11-05 04:08:22 -05:00
}
2015-11-05 02:08:15 -05:00
return;
2014-09-30 07:09:27 -04:00
2015-11-05 02:08:15 -05:00
case 'attributes':
this.onAttributeModified(aMutation, aObserver);
return;
}
2015-11-05 02:00:32 -05:00
}
catch(error) {
this.dumpMutation(aMutation, 'BrowserUIShowHideObserver_onMutation(error)');
Components.utils.reportError(error);
}
2014-09-30 07:09:27 -04:00
}, this);
},
destroy : function BrowserUIShowHideObserver_destroy()
{
if (this.observer) {
this.observer.disconnect();
delete this.observer;
}
delete this.box;
delete this.owner;
},
2015-11-05 02:00:32 -05:00
dumpMutation : function BrowserUIShowHideObserver_dumpMutation(aMutation, aDescription)
{
if (!utils.isDebugging('browserUIShowHideObserver'))
return;
var target = aMutation.target;
2015-11-05 02:45:09 -05:00
var ownerInformation = this.box.localName + '#' + this.box.id + '.' + this.box.className;
2015-11-05 02:00:32 -05:00
var targetInformation = target.localName + '#' + target.id + '.' + target.className;
var attributeInformation = '';
if (aMutation.attributeName)
attributeInformation = ' / ' +
2015-11-05 02:08:15 -05:00
aMutation.attributeName + ', ' +
aMutation.oldValue + ' => ' +
target.getAttribute(aMutation.attributeName);
2015-11-05 02:45:09 -05:00
dump(aDescription + ' ' +
ownerInformation + ' / ' +
targetInformation +
attributeInformation + '\n');
2015-11-05 02:00:32 -05:00
},
2014-09-30 07:09:27 -04:00
onAttributeModified : function BrowserUIShowHideObserver_onAttributeModified(aMutation, aObserver)
{
var TST = this.owner.browser.treeStyleTab;
if (this.handlingAttrChange ||
TST.notifyingRenderedEvent)
2014-09-30 07:09:27 -04:00
return;
var target = aMutation.target;
var state = this.serializeBoxState(target);
if (target.__treestyletab_mutationObserver_lastState == state)
return;
if (
// ignore modifications of each tab
TST.getTabFromChild(target) ||
// ignore modifications in the location bar (ex. identity icon)
2015-09-28 08:42:05 -04:00
TST.evaluateXPath(
'ancestor-or-self::xul:textbox',
target,
2015-09-28 08:42:05 -04:00
Components.interfaces.nsIDOMXPathResult.FIRST_ORDERED_NODE_TYPE
).singleNodeValue
)
return;
var tabbar = this.owner.browser.tabContainer;
var placeHolder = TST.tabStripPlaceHolder;
var tabbarVisibilityMismatching = false;
{
let toolbarVisible = !TST.ownerToolbar.collapsed;
let tabbarVisible = tabbar.visible;
let placeHolderVisible = !placeHolder.collapsed;
tabbarVisibilityMismatching = (
toolbarVisible != placeHolderVisible ||
tabbarVisible != placeHolderVisible
);
}
var tabbarMatrixMismatching = false;
{
let tabbarBox = tabbar.boxObject;
let tabbarMatrix = JSON.stringify({
x: tabbarBox.screenX,
y: tabbarBox.screenY,
w: tabbarBox.width,
h: tabbarBox.height
});
let placeHolderBox = placeHolder.boxObject;
let placeHolderMatrix = JSON.stringify({
x: placeHolderBox.screenX,
y: placeHolderBox.screenY,
w: placeHolderBox.width,
h: placeHolderBox.height
});
tabbarMatrixMismatching = tabbarMatrix != placeHolderMatrix;
}
2014-09-30 07:09:27 -04:00
if (
// I must ignore show/hide of elements managed by TST,
// to avoid infinity loop.
TST.evaluateXPath(
'ancestor-or-self::xul:*[@' + TreeStyleTabConstants.kTAB_STRIP_ELEMENT + '="true"]',
target,
Components.interfaces.nsIDOMXPathResult.FIRST_ORDERED_NODE_TYPE
).singleNodeValue &&
2014-09-30 07:09:27 -04:00
// However, I have to synchronize visibility of the real
// tab bar and the placeholder's one. If they have
// different visibility, then the tab bar is shown or
// hidden by "auto hide tab bar" feature of someone
// (Pale Moon, Tab Mix Plus, etc.)
!tabbarVisibilityMismatching &&
!tabbarMatrixMismatching
2014-09-30 07:09:27 -04:00
)
return;
2015-11-05 02:00:32 -05:00
this.dumpMutation(aMutation, 'BrowserUIShowHideObserver_onAttributeModified');
2015-09-25 01:36:01 -04:00
2014-09-30 07:09:27 -04:00
this.handlingAttrChange = true;
TST.updateFloatingTabbar(TreeStyleTabConstants.kTABBAR_UPDATE_BY_WINDOW_RESIZE);
var w = this.box.ownerDocument.defaultView;
w.setTimeout((function() {
target.__treestyletab_mutationObserver_lastState = this.serializeBoxState(target);
2014-09-30 07:09:27 -04:00
this.handlingAttrChange = false;
}).bind(this), 10);
},
serializeBoxState : function BrowserUIShowHideObserver_serializeBoxState(aElement)
{
aElement = aElement || this.box;
var box = aElement.boxObject || {}; // Some times there is no boxObject (ex. HTML element)
return JSON.stringify({
width : box.width || 0,
height : box.height || 0,
hidden : Boolean(aElement.hidden),
collapsed : Boolean(aElement.collapsed)
});
2014-09-30 07:09:27 -04:00
}
};