diff options
Diffstat (limited to 'Source/WebInspectorUI/UserInterface/Views/DetailsSection.js')
-rw-r--r-- | Source/WebInspectorUI/UserInterface/Views/DetailsSection.js | 155 |
1 files changed, 155 insertions, 0 deletions
diff --git a/Source/WebInspectorUI/UserInterface/Views/DetailsSection.js b/Source/WebInspectorUI/UserInterface/Views/DetailsSection.js new file mode 100644 index 000000000..3a4bbf7bf --- /dev/null +++ b/Source/WebInspectorUI/UserInterface/Views/DetailsSection.js @@ -0,0 +1,155 @@ +/* + * 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. + */ + +WebInspector.DetailsSection = class DetailsSection extends WebInspector.Object +{ + constructor(identifier, title, groups, optionsElement, defaultCollapsedSettingValue) + { + super(); + + console.assert(identifier); + + this._element = document.createElement("div"); + this._element.classList.add(identifier, "details-section"); + + this._headerElement = document.createElement("div"); + this._headerElement.addEventListener("click", this._headerElementClicked.bind(this)); + this._headerElement.className = "header"; + this._element.appendChild(this._headerElement); + + if (optionsElement instanceof HTMLElement) { + this._optionsElement = optionsElement; + this._optionsElement.classList.add("options"); + this._optionsElement.addEventListener("mousedown", this._optionsElementMouseDown.bind(this)); + this._optionsElement.addEventListener("mouseup", this._optionsElementMouseUp.bind(this)); + this._headerElement.appendChild(this._optionsElement); + } + + this._titleElement = document.createElement("span"); + this._headerElement.appendChild(this._titleElement); + + this._contentElement = document.createElement("div"); + this._contentElement.className = "content"; + this._element.appendChild(this._contentElement); + + this._identifier = identifier; + this.title = title; + this.groups = groups || [new WebInspector.DetailsSectionGroup]; + + this._collapsedSetting = new WebInspector.Setting(identifier + "-details-section-collapsed", !!defaultCollapsedSettingValue); + this.collapsed = this._collapsedSetting.value; + this._expandedByUser = false; + } + + // Public + + get element() + { + return this._element; + } + + get identifier() + { + return this._identifier; + } + + get title() + { + return this._titleElement.textContent; + } + + set title(title) + { + this._titleElement.textContent = title; + } + + get collapsed() + { + return this._element.classList.contains(WebInspector.DetailsSection.CollapsedStyleClassName); + } + + set collapsed(flag) + { + if (flag) + this._element.classList.add(WebInspector.DetailsSection.CollapsedStyleClassName); + else + this._element.classList.remove(WebInspector.DetailsSection.CollapsedStyleClassName); + + this._collapsedSetting.value = flag || false; + + this.dispatchEventToListeners(WebInspector.DetailsSection.Event.CollapsedStateChanged, {collapsed: this._collapsedSetting.value}); + } + + get groups() + { + return this._groups; + } + + set groups(groups) + { + this._contentElement.removeChildren(); + + this._groups = groups || []; + + for (var i = 0; i < this._groups.length; ++i) + this._contentElement.appendChild(this._groups[i].element); + } + + get expandedByUser() + { + return this._expandedByUser; + } + + // Private + + _headerElementClicked(event) + { + if (event.target.isSelfOrDescendant(this._optionsElement)) + return; + + var collapsed = this.collapsed; + this.collapsed = !collapsed; + this._expandedByUser = collapsed; + + this._element.scrollIntoViewIfNeeded(false); + } + + _optionsElementMouseDown(event) + { + this._headerElement.classList.add(WebInspector.DetailsSection.MouseOverOptionsElementStyleClassName); + } + + _optionsElementMouseUp(event) + { + this._headerElement.classList.remove(WebInspector.DetailsSection.MouseOverOptionsElementStyleClassName); + } +}; + +WebInspector.DetailsSection.CollapsedStyleClassName = "collapsed"; +WebInspector.DetailsSection.MouseOverOptionsElementStyleClassName = "mouse-over-options-element"; + +WebInspector.DetailsSection.Event = { + CollapsedStateChanged: "details-section-collapsed-state-changed" +}; |