160 lines
4.6 KiB
JavaScript
160 lines
4.6 KiB
JavaScript
/*
|
|
* Copyright (C) 2013, 2015 Apple Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
* THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
WI.StyleDetailsPanel = class StyleDetailsPanel extends WI.View
|
|
{
|
|
constructor(delegate, className, identifier, label)
|
|
{
|
|
super();
|
|
|
|
this._delegate = delegate || null;
|
|
|
|
this.element.classList.add(className);
|
|
|
|
this._navigationInfo = {identifier, label};
|
|
|
|
this._nodeStyles = null;
|
|
}
|
|
|
|
// Public
|
|
|
|
get navigationInfo()
|
|
{
|
|
return this._navigationInfo;
|
|
}
|
|
|
|
get nodeStyles()
|
|
{
|
|
return this._nodeStyles;
|
|
}
|
|
|
|
get supportsNewRule()
|
|
{
|
|
// Overridden by subclasses if needed.
|
|
return false;
|
|
}
|
|
|
|
get supportsToggleCSSClassList()
|
|
{
|
|
// Overriden by subclasses if needed.
|
|
return false;
|
|
}
|
|
|
|
get supportsToggleCSSForcedPseudoClass()
|
|
{
|
|
// Overriden by subclasses if needed.
|
|
return false;
|
|
}
|
|
|
|
attached()
|
|
{
|
|
super.attached();
|
|
|
|
this._refreshNodeStyles();
|
|
}
|
|
|
|
markAsNeedsRefresh(domNode)
|
|
{
|
|
console.assert(domNode);
|
|
if (!domNode)
|
|
return;
|
|
|
|
if (!this._nodeStyles || this._nodeStyles.node !== domNode) {
|
|
if (this._nodeStyles) {
|
|
this._nodeStyles.removeEventListener(WI.DOMNodeStyles.Event.Refreshed, this.nodeStylesRefreshed, this);
|
|
this._nodeStyles.removeEventListener(WI.DOMNodeStyles.Event.NeedsRefresh, this._nodeStylesNeedsRefreshed, this);
|
|
}
|
|
|
|
this._nodeStyles = WI.cssManager.stylesForNode(domNode);
|
|
|
|
this.dispatchEventToListeners(WI.StyleDetailsPanel.Event.NodeChanged);
|
|
|
|
console.assert(this._nodeStyles);
|
|
if (!this._nodeStyles)
|
|
return;
|
|
|
|
this._nodeStyles.addEventListener(WI.DOMNodeStyles.Event.Refreshed, this.nodeStylesRefreshed, this);
|
|
this._nodeStyles.addEventListener(WI.DOMNodeStyles.Event.NeedsRefresh, this._nodeStylesNeedsRefreshed, this);
|
|
|
|
this._forceSignificantChange = true;
|
|
}
|
|
|
|
if (this.isAttached)
|
|
this._refreshNodeStyles();
|
|
}
|
|
|
|
refresh(significantChange)
|
|
{
|
|
// Implemented by subclasses.
|
|
}
|
|
|
|
// Protected
|
|
|
|
nodeStylesRefreshed(event)
|
|
{
|
|
if (this.isAttached)
|
|
this._refreshPreservingScrollPosition(event.data.significantChange);
|
|
}
|
|
|
|
// Private
|
|
|
|
_refreshNodeStyles()
|
|
{
|
|
if (!this._nodeStyles)
|
|
return;
|
|
this._nodeStyles.refresh();
|
|
}
|
|
|
|
_refreshPreservingScrollPosition(significantChange)
|
|
{
|
|
significantChange = this._forceSignificantChange || significantChange || false;
|
|
|
|
let previousScrollTop = 0;
|
|
|
|
// Only remember the scroll position if the previous node is the same as this one.
|
|
if (this.element.parentNode && this._previousRefreshNodeIdentifier === this._nodeStyles.node.id)
|
|
previousScrollTop = this.element.parentNode.scrollTop;
|
|
|
|
this.refresh(significantChange);
|
|
|
|
this._previousRefreshNodeIdentifier = this._nodeStyles.node.id;
|
|
|
|
if (this.element.parentNode)
|
|
this.element.parentNode.scrollTop = previousScrollTop;
|
|
|
|
this._forceSignificantChange = false;
|
|
}
|
|
|
|
_nodeStylesNeedsRefreshed(event)
|
|
{
|
|
if (this.isAttached)
|
|
this._refreshNodeStyles();
|
|
}
|
|
};
|
|
|
|
WI.StyleDetailsPanel.Event = {
|
|
NodeChanged: "style-details-panel-node-changed",
|
|
};
|