UNPKG

strong-arc

Version:

A visual suite for the StrongLoop API Platform

1,379 lines (1,185 loc) 58.4 kB
/* * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> * Copyright (C) 2009 Joseph Pecoraro * * 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. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE 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 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. */ /** * @constructor * @implements {WebInspector.Searchable} * @implements {WebInspector.TargetManager.Observer} * @extends {WebInspector.Panel} */ WebInspector.ElementsPanel = function() { WebInspector.Panel.call(this, "elements"); this.registerRequiredCSS("elementsPanel.css"); this.setHideOnDetach(); this._splitView = new WebInspector.SplitView(true, true, "elementsPanelSplitViewState", 325, 325); this._splitView.addEventListener(WebInspector.SplitView.Events.SidebarSizeChanged, this._updateTreeOutlineVisibleWidth.bind(this)); this._splitView.show(this.element); this._searchableView = new WebInspector.SearchableView(this); this._searchableView.setMinimumSize(25, 19); this._searchableView.show(this._splitView.mainElement()); var stackElement = this._searchableView.element; this.contentElement = stackElement.createChild("div"); this.contentElement.id = "elements-content"; this.contentElement.classList.add("outline-disclosure"); this.contentElement.classList.add("source-code"); if (!WebInspector.settings.domWordWrap.get()) this.contentElement.classList.add("nowrap"); WebInspector.settings.domWordWrap.addChangeListener(this._domWordWrapSettingChanged.bind(this)); this.contentElement.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), true); this._splitView.sidebarElement().addEventListener("contextmenu", this._sidebarContextMenuEventFired.bind(this), false); var crumbsContainer = stackElement.createChild("div"); crumbsContainer.id = "elements-crumbs"; this.crumbsElement = crumbsContainer.createChild("div", "crumbs"); this.crumbsElement.addEventListener("mousemove", this._mouseMovedInCrumbs.bind(this), false); this.crumbsElement.addEventListener("mouseout", this._mouseMovedOutOfCrumbs.bind(this), false); this.sidebarPanes = {}; this.sidebarPanes.platformFonts = new WebInspector.PlatformFontsSidebarPane(); this.sidebarPanes.computedStyle = new WebInspector.ComputedStyleSidebarPane(); this.sidebarPanes.styles = new WebInspector.StylesSidebarPane(this.sidebarPanes.computedStyle, this._setPseudoClassForNode.bind(this)); this.sidebarPanes.styles.addEventListener(WebInspector.StylesSidebarPane.Events.SelectorEditingStarted, this._onEditingSelectorStarted.bind(this)); this.sidebarPanes.styles.addEventListener(WebInspector.StylesSidebarPane.Events.SelectorEditingEnded, this._onEditingSelectorEnded.bind(this)); this._matchedStylesFilterBoxContainer = document.createElement("div"); this._matchedStylesFilterBoxContainer.className = "sidebar-pane-filter-box"; this._computedStylesFilterBoxContainer = document.createElement("div"); this._computedStylesFilterBoxContainer.className = "sidebar-pane-filter-box"; this.sidebarPanes.styles.setFilterBoxContainers(this._matchedStylesFilterBoxContainer, this._computedStylesFilterBoxContainer); this.sidebarPanes.metrics = new WebInspector.MetricsSidebarPane(); this.sidebarPanes.properties = new WebInspector.PropertiesSidebarPane(); this.sidebarPanes.domBreakpoints = WebInspector.domBreakpointsSidebarPane.createProxy(this); this.sidebarPanes.eventListeners = new WebInspector.EventListenersSidebarPane(); this.sidebarPanes.styles.addEventListener(WebInspector.SidebarPane.EventTypes.wasShown, this.updateStyles.bind(this, false)); this.sidebarPanes.metrics.addEventListener(WebInspector.SidebarPane.EventTypes.wasShown, this.updateMetrics.bind(this)); this.sidebarPanes.platformFonts.addEventListener(WebInspector.SidebarPane.EventTypes.wasShown, this.updatePlatformFonts.bind(this)); this.sidebarPanes.properties.addEventListener(WebInspector.SidebarPane.EventTypes.wasShown, this.updateProperties.bind(this)); this.sidebarPanes.eventListeners.addEventListener(WebInspector.SidebarPane.EventTypes.wasShown, this.updateEventListeners.bind(this)); this.sidebarPanes.styles.addEventListener("style edited", this._stylesPaneEdited, this); this.sidebarPanes.styles.addEventListener("style property toggled", this._stylesPaneEdited, this); this.sidebarPanes.metrics.addEventListener("metrics edited", this._metricsPaneEdited, this); this._extensionSidebarPanes = []; WebInspector.dockController.addEventListener(WebInspector.DockController.Events.DockSideChanged, this._dockSideChanged.bind(this)); WebInspector.settings.splitVerticallyWhenDockedToRight.addChangeListener(this._dockSideChanged.bind(this)); this._dockSideChanged(); this._popoverHelper = new WebInspector.PopoverHelper(this.element, this._getPopoverAnchor.bind(this), this._showPopover.bind(this)); this._popoverHelper.setTimeout(0); /** @type {!Array.<!WebInspector.ElementsTreeOutline>} */ this._treeOutlines = []; /** @type {!Map.<!WebInspector.Target, !WebInspector.ElementsTreeOutline>} */ this._targetToTreeOutline = new Map(); WebInspector.targetManager.observeTargets(this); WebInspector.settings.showUAShadowDOM.addChangeListener(this._showUAShadowDOMChanged.bind(this)); WebInspector.targetManager.addModelListener(WebInspector.DOMModel, WebInspector.DOMModel.Events.DocumentUpdated, this._documentUpdatedEvent, this); WebInspector.targetManager.addModelListener(WebInspector.CSSStyleModel, WebInspector.CSSStyleModel.Events.ModelWasEnabled, this._updateSidebars, this); } WebInspector.ElementsPanel.prototype = { _onEditingSelectorStarted: function() { for (var i = 0; i < this._treeOutlines.length; ++i) this._treeOutlines[i].setPickNodeMode(true); }, _onEditingSelectorEnded: function() { for (var i = 0; i < this._treeOutlines.length; ++i) this._treeOutlines[i].setPickNodeMode(false); }, /** * @param {!WebInspector.Target} target */ targetAdded: function(target) { var treeOutline = new WebInspector.ElementsTreeOutline(target, true, true, this._populateContextMenu.bind(this), this._setPseudoClassForNode.bind(this)); treeOutline.wireToDOMModel(); treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, this._selectedNodeChanged, this); treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.NodePicked, this._onNodePicked, this); treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.ElementsTreeUpdated, this._updateBreadcrumbIfNeeded, this); this._treeOutlines.push(treeOutline); this._targetToTreeOutline.set(target, treeOutline); // Perform attach if necessary. if (this.isShowing()) this.wasShown(); }, /** * @param {!WebInspector.Target} target */ targetRemoved: function(target) { var treeOutline = this._targetToTreeOutline.remove(target); treeOutline.unwireFromDOMModel(); this._treeOutlines.remove(treeOutline); treeOutline.element.remove(); }, /** * @return {?WebInspector.ElementsTreeOutline} */ _firstTreeOutlineDeprecated: function() { return this._treeOutlines[0] || null; }, _updateTreeOutlineVisibleWidth: function() { if (!this._treeOutlines.length) return; var width = this._splitView.element.offsetWidth; if (this._splitView.isVertical()) width -= this._splitView.sidebarSize(); for (var i = 0; i < this._treeOutlines.length; ++i) { this._treeOutlines[i].setVisibleWidth(width); this._treeOutlines[i].updateSelection(); } this.updateBreadcrumbSizes(); }, /** * @return {!Element} */ defaultFocusedElement: function() { return this._treeOutlines.length ? this._treeOutlines[0].element : this.element; }, /** * @return {!WebInspector.SearchableView} */ searchableView: function() { return this._searchableView; }, wasShown: function() { for (var i = 0; i < this._treeOutlines.length; ++i) { var treeOutline = this._treeOutlines[i]; // Attach heavy component lazily if (treeOutline.element.parentElement !== this.contentElement) this.contentElement.appendChild(treeOutline.element); } WebInspector.Panel.prototype.wasShown.call(this); this.updateBreadcrumb(); for (var i = 0; i < this._treeOutlines.length; ++i) { var treeOutline = this._treeOutlines[i]; treeOutline.updateSelection(); treeOutline.setVisible(true); if (!treeOutline.rootDOMNode) if (treeOutline.domModel().existingDocument()) this._documentUpdated(treeOutline.domModel(), treeOutline.domModel().existingDocument()); else treeOutline.domModel().requestDocument(); } }, willHide: function() { for (var i = 0; i < this._treeOutlines.length; ++i) { var treeOutline = this._treeOutlines[i]; treeOutline.domModel().hideDOMNodeHighlight(); treeOutline.setVisible(false); // Detach heavy component on hide this.contentElement.removeChild(treeOutline.element); } this._popoverHelper.hidePopover(); WebInspector.Panel.prototype.willHide.call(this); }, onResize: function() { this._updateTreeOutlineVisibleWidth(); }, omitDefaultSelection: function() { this._omitDefaultSelection = true; }, stopOmittingDefaultSelection: function() { delete this._omitDefaultSelection; }, /** * @param {!WebInspector.DOMNode} node * @param {string} pseudoClass * @param {boolean} enable */ _setPseudoClassForNode: function(node, pseudoClass, enable) { if (!node || !node.target().cssModel.forcePseudoState(node, pseudoClass, enable)) return; this._treeOutlineForNode(node).updateOpenCloseTags(node); this._metricsPaneEdited(); this._stylesPaneEdited(); WebInspector.notifications.dispatchEventToListeners(WebInspector.UserMetrics.UserAction, { action: WebInspector.UserMetrics.UserActionNames.ForcedElementState, selector: WebInspector.DOMPresentationUtils.fullQualifiedSelector(node, false), enabled: enable, state: pseudoClass }); }, /** * @param {!WebInspector.Event} event */ _onNodePicked: function(event) { if (!this.sidebarPanes.styles.isEditingSelector()) return; this.sidebarPanes.styles.updateEditingSelectorForNode(/** @type {!WebInspector.DOMNode} */(event.data)); }, /** * @param {!WebInspector.Event} event */ _selectedNodeChanged: function(event) { var selectedNode = /** @type {?WebInspector.DOMNode} */ (event.data); for (var i = 0; i < this._treeOutlines.length; ++i) { if (!selectedNode || selectedNode.domModel() !== this._treeOutlines[i].domModel()) this._treeOutlines[i].selectDOMNode(null); } if (!selectedNode && this._lastValidSelectedNode) this._selectedPathOnReset = this._lastValidSelectedNode.path(); this.updateBreadcrumb(false); this._updateSidebars(); if (selectedNode) { ConsoleAgent.addInspectedNode(selectedNode.id); this._lastValidSelectedNode = selectedNode; } WebInspector.notifications.dispatchEventToListeners(WebInspector.NotificationService.Events.SelectedNodeChanged); }, _updateSidebars: function() { for (var pane in this.sidebarPanes) this.sidebarPanes[pane].needsUpdate = true; this.updateStyles(true); this.updateMetrics(); this.updatePlatformFonts(); this.updateProperties(); this.updateEventListeners(); }, _reset: function() { delete this.currentQuery; }, /** * @param {!WebInspector.Event} event */ _documentUpdatedEvent: function(event) { this._documentUpdated(/** @type {!WebInspector.DOMModel} */ (event.target), /** @type {?WebInspector.DOMDocument} */ (event.data)); }, /** * @param {!WebInspector.DOMModel} domModel * @param {?WebInspector.DOMDocument} inspectedRootDocument */ _documentUpdated: function(domModel, inspectedRootDocument) { this._reset(); this.searchCanceled(); var treeOutline = this._targetToTreeOutline.get(domModel.target()); treeOutline.rootDOMNode = inspectedRootDocument; if (!inspectedRootDocument) { if (this.isShowing()) domModel.requestDocument(); return; } WebInspector.domBreakpointsSidebarPane.restoreBreakpoints(domModel.target()); /** * @this {WebInspector.ElementsPanel} * @param {?WebInspector.DOMNode} candidateFocusNode */ function selectNode(candidateFocusNode) { if (!candidateFocusNode) candidateFocusNode = inspectedRootDocument.body || inspectedRootDocument.documentElement; if (!candidateFocusNode) return; this.selectDOMNode(candidateFocusNode); if (treeOutline.selectedTreeElement) treeOutline.selectedTreeElement.expand(); } /** * @param {?DOMAgent.NodeId} nodeId * @this {WebInspector.ElementsPanel} */ function selectLastSelectedNode(nodeId) { if (this.selectedDOMNode()) { // Focused node has been explicitly set while reaching out for the last selected node. return; } var node = nodeId ? domModel.nodeForId(nodeId) : null; selectNode.call(this, node); } if (this._omitDefaultSelection) return; if (this._selectedPathOnReset) domModel.pushNodeByPathToFrontend(this._selectedPathOnReset, selectLastSelectedNode.bind(this)); else selectNode.call(this, null); delete this._selectedPathOnReset; }, searchCanceled: function() { delete this._searchQuery; this._hideSearchHighlights(); this._searchableView.updateSearchMatchesCount(0); delete this._currentSearchResultIndex; delete this._searchResults; var targets = WebInspector.targetManager.targets(); for (var i = 0; i < targets.length; ++i) targets[i].domModel.cancelSearch(); }, /** * @param {string} query * @param {boolean} shouldJump * @param {boolean=} jumpBackwards */ performSearch: function(query, shouldJump, jumpBackwards) { // Call searchCanceled since it will reset everything we need before doing a new search. this.searchCanceled(); const whitespaceTrimmedQuery = query.trim(); if (!whitespaceTrimmedQuery.length) return; this._searchQuery = query; var targets = WebInspector.targetManager.targets(); var promises = []; for (var i = 0; i < targets.length; ++i) promises.push(targets[i].domModel.performSearchPromise(whitespaceTrimmedQuery, WebInspector.settings.showUAShadowDOM.get())); Promise.all(promises).then(resultCountCallback.bind(this)); /** * @param {!Array.<number>} resultCounts * @this {WebInspector.ElementsPanel} */ function resultCountCallback(resultCounts) { /** * @type {!Array.<{target: !WebInspector.Target, index: number, node: (?WebInspector.DOMNode|undefined)}>} */ this._searchResults = []; for (var i = 0; i < resultCounts.length; ++i) { var resultCount = resultCounts[i]; for (var j = 0; j < resultCount; ++j) this._searchResults.push({target: targets[i], index: j, node: undefined}); } this._searchableView.updateSearchMatchesCount(this._searchResults.length); if (!this._searchResults.length) return; this._currentSearchResultIndex = -1; if (shouldJump) this._jumpToSearchResult(jumpBackwards ? -1 : 0); } }, _contextMenuEventFired: function(event) { if (this.sidebarPanes.styles.isEditingSelector()) return; var contextMenu = new WebInspector.ContextMenu(event); for (var i = 0; i < this._treeOutlines.length; ++i) this._treeOutlines[i].populateContextMenu(contextMenu, event); contextMenu.show(); }, _domWordWrapSettingChanged: function(event) { if (event.data) this.contentElement.classList.remove("nowrap"); else this.contentElement.classList.add("nowrap"); var selectedNode = this.selectedDOMNode(); if (!selectedNode) return; var treeElement = this._treeElementForNode(selectedNode); if (treeElement) treeElement.updateSelection(); // Recalculate selection highlight dimensions. }, switchToAndFocus: function(node) { // Reset search restore. this._searchableView.cancelSearch(); WebInspector.inspectorView.setCurrentPanel(this); this.selectDOMNode(node, true); }, _populateContextMenu: function(contextMenu, node) { // Add debbuging-related actions contextMenu.appendSeparator(); var pane = WebInspector.domBreakpointsSidebarPane; pane.populateNodeContextMenu(node, contextMenu); }, /** * @param {!Element} element * @param {!Event} event * @return {!Element|!AnchorBox|undefined} */ _getPopoverAnchor: function(element, event) { var anchor = element.enclosingNodeOrSelfWithClass("webkit-html-resource-link"); if (!anchor || !anchor.href) return; var treeOutlineElement = anchor.enclosingNodeOrSelfWithClass("elements-tree-outline"); if (!treeOutlineElement) return; for (var i = 0; i < this._treeOutlines.length; ++i) { if (this._treeOutlines[i].element !== treeOutlineElement) continue; var resource = this._treeOutlines[i].target().resourceTreeModel.resourceForURL(anchor.href); if (!resource || resource.type !== WebInspector.resourceTypes.Image) return; anchor.removeAttribute("title"); return anchor; } }, /** * @param {!WebInspector.DOMNode} node * @param {function()} callback */ _loadDimensionsForNode: function(node, callback) { if (!node.nodeName() || node.nodeName().toLowerCase() !== "img") { callback(); return; } node.resolveToObject("", resolvedNode); function resolvedNode(object) { if (!object) { callback(); return; } object.callFunctionJSON(dimensions, undefined, callback); object.release(); /** * @return {!{offsetWidth: number, offsetHeight: number, naturalWidth: number, naturalHeight: number}} * @suppressReceiverCheck * @this {!Element} */ function dimensions() { return { offsetWidth: this.offsetWidth, offsetHeight: this.offsetHeight, naturalWidth: this.naturalWidth, naturalHeight: this.naturalHeight }; } } }, /** * @param {!Element} anchor * @param {!WebInspector.Popover} popover */ _showPopover: function(anchor, popover) { var listItem = anchor.enclosingNodeOrSelfWithNodeName("li"); // We get here for CSS properties, too. if (listItem && listItem.treeElement && listItem.treeElement.treeOutline instanceof WebInspector.ElementsTreeOutline) { var node = /** @type {!WebInspector.DOMNode} */ (listItem.treeElement.representedObject); this._loadDimensionsForNode(node, WebInspector.DOMPresentationUtils.buildImagePreviewContents.bind(WebInspector.DOMPresentationUtils, node.target(), anchor.href, true, showPopover)); } else { var node = this.selectedDOMNode(); if (node) WebInspector.DOMPresentationUtils.buildImagePreviewContents(node.target(), anchor.href, true, showPopover); } /** * @param {!Element=} contents */ function showPopover(contents) { if (!contents) return; popover.setCanShrink(false); popover.show(contents, anchor); } }, _jumpToSearchResult: function(index) { this._hideSearchHighlights(); this._currentSearchResultIndex = (index + this._searchResults.length) % this._searchResults.length; this._highlightCurrentSearchResult(); }, jumpToNextSearchResult: function() { if (!this._searchResults) return; this._jumpToSearchResult(this._currentSearchResultIndex + 1); }, jumpToPreviousSearchResult: function() { if (!this._searchResults) return; this._jumpToSearchResult(this._currentSearchResultIndex - 1); }, _highlightCurrentSearchResult: function() { var index = this._currentSearchResultIndex; var searchResults = this._searchResults; var searchResult = searchResults[index]; if (searchResult.node === null) { this._searchableView.updateCurrentMatchIndex(index); return; } /** * @param {?WebInspector.DOMNode} node * @this {WebInspector.ElementsPanel} */ function searchCallback(node) { searchResult.node = node; this._highlightCurrentSearchResult(); } if (typeof searchResult.node === "undefined") { // No data for slot, request it. searchResult.target.domModel.searchResult(searchResult.index, searchCallback.bind(this)); return; } this._searchableView.updateCurrentMatchIndex(index); var treeElement = this._treeElementForNode(searchResult.node); if (treeElement) { treeElement.highlightSearchResults(this._searchQuery); treeElement.reveal(); var matches = treeElement.listItemElement.getElementsByClassName("highlighted-search-result"); if (matches.length) matches[0].scrollIntoViewIfNeeded(); } }, _hideSearchHighlights: function() { if (!this._searchResults || !this._searchResults.length || this._currentSearchResultIndex < 0) return; var searchResult = this._searchResults[this._currentSearchResultIndex]; if (!searchResult.node) return; var treeOutline = this._targetToTreeOutline.get(searchResult.target); var treeElement = treeOutline.findTreeElement(searchResult.node); if (treeElement) treeElement.hideSearchHighlights(); }, /** * @return {?WebInspector.DOMNode} */ selectedDOMNode: function() { for (var i = 0; i < this._treeOutlines.length; ++i) { var treeOutline = this._treeOutlines[i]; if (treeOutline.selectedDOMNode()) return treeOutline.selectedDOMNode(); } return null; }, /** * @param {!WebInspector.DOMNode} node * @param {boolean=} focus */ selectDOMNode: function(node, focus) { for (var i = 0; i < this._treeOutlines.length; ++i) { var treeOutline = this._treeOutlines[i]; if (treeOutline.target() === node.target()) treeOutline.selectDOMNode(node, focus); else treeOutline.selectDOMNode(null); } }, /** * @param {!WebInspector.Event} event */ _updateBreadcrumbIfNeeded: function(event) { var nodes = /** @type {!Array.<!WebInspector.DOMNode>} */ (event.data || []); if (!nodes.length) return; var crumbs = this.crumbsElement; for (var crumb = crumbs.firstChild; crumb; crumb = crumb.nextSibling) { if (nodes.indexOf(crumb.representedObject) !== -1) { this.updateBreadcrumb(true); return; } } }, _stylesPaneEdited: function() { // Once styles are edited, the Metrics pane should be updated. this.sidebarPanes.metrics.needsUpdate = true; this.updateMetrics(); this.sidebarPanes.platformFonts.needsUpdate = true; this.updatePlatformFonts(); }, _metricsPaneEdited: function() { // Once metrics are edited, the Styles pane should be updated. this.sidebarPanes.styles.needsUpdate = true; this.updateStyles(true); }, _mouseMovedInCrumbs: function(event) { var nodeUnderMouse = document.elementFromPoint(event.pageX, event.pageY); var crumbElement = nodeUnderMouse.enclosingNodeOrSelfWithClass("crumb"); var node = /** @type {?WebInspector.DOMNode} */ (crumbElement ? crumbElement.representedObject : null); if (node) node.highlight(); }, _mouseMovedOutOfCrumbs: function(event) { var nodeUnderMouse = document.elementFromPoint(event.pageX, event.pageY); if (nodeUnderMouse && nodeUnderMouse.isDescendant(this.crumbsElement)) return; for (var i = 0; i < this._treeOutlines.length; ++i) this._treeOutlines[i].domModel().hideDOMNodeHighlight(); }, /** * @param {boolean=} forceUpdate */ updateBreadcrumb: function(forceUpdate) { if (!this.isShowing()) return; var crumbs = this.crumbsElement; var handled = false; var crumb = crumbs.firstChild; while (crumb) { if (crumb.representedObject === this.selectedDOMNode()) { crumb.classList.add("selected"); handled = true; } else { crumb.classList.remove("selected"); } crumb = crumb.nextSibling; } if (handled && !forceUpdate) { // We don't need to rebuild the crumbs, but we need to adjust sizes // to reflect the new focused or root node. this.updateBreadcrumbSizes(); return; } crumbs.removeChildren(); var panel = this; function selectCrumbFunction(event) { var crumb = event.currentTarget; if (crumb.classList.contains("collapsed")) { // Clicking a collapsed crumb will expose the hidden crumbs. if (crumb === panel.crumbsElement.firstChild) { // If the focused crumb is the first child, pick the farthest crumb // that is still hidden. This allows the user to expose every crumb. var currentCrumb = crumb; while (currentCrumb) { var hidden = currentCrumb.classList.contains("hidden"); var collapsed = currentCrumb.classList.contains("collapsed"); if (!hidden && !collapsed) break; crumb = currentCrumb; currentCrumb = currentCrumb.nextSibling; } } panel.updateBreadcrumbSizes(crumb); } else panel.selectDOMNode(crumb.representedObject, true); event.preventDefault(); } for (var current = this.selectedDOMNode(); current; current = current.parentNode) { if (current.nodeType() === Node.DOCUMENT_NODE) continue; crumb = document.createElement("span"); crumb.className = "crumb"; crumb.representedObject = current; crumb.addEventListener("mousedown", selectCrumbFunction, false); var crumbTitle = ""; switch (current.nodeType()) { case Node.ELEMENT_NODE: if (current.pseudoType()) crumbTitle = "::" + current.pseudoType(); else WebInspector.DOMPresentationUtils.decorateNodeLabel(current, crumb); break; case Node.TEXT_NODE: crumbTitle = WebInspector.UIString("(text)"); break; case Node.COMMENT_NODE: crumbTitle = "<!-->"; break; case Node.DOCUMENT_TYPE_NODE: crumbTitle = "<!DOCTYPE>"; break; case Node.DOCUMENT_FRAGMENT_NODE: crumbTitle = current.shadowRootType() ? "#shadow-root" : current.nodeNameInCorrectCase(); break; default: crumbTitle = current.nodeNameInCorrectCase(); } if (!crumb.childNodes.length) { var nameElement = document.createElement("span"); nameElement.textContent = crumbTitle; crumb.appendChild(nameElement); crumb.title = crumbTitle; } if (current === this.selectedDOMNode()) crumb.classList.add("selected"); crumbs.insertBefore(crumb, crumbs.firstChild); } this.updateBreadcrumbSizes(); }, /** * @param {!Element=} focusedCrumb */ updateBreadcrumbSizes: function(focusedCrumb) { if (!this.isShowing()) return; var crumbs = this.crumbsElement; if (!crumbs.firstChild) return; var selectedIndex = 0; var focusedIndex = 0; var selectedCrumb; // Reset crumb styles. for (var i = 0; i < crumbs.childNodes.length; ++i) { var crumb = crumbs.childNodes[i]; // Find the selected crumb and index. if (!selectedCrumb && crumb.classList.contains("selected")) { selectedCrumb = crumb; selectedIndex = i; } // Find the focused crumb index. if (crumb === focusedCrumb) focusedIndex = i; crumb.classList.remove("compact", "collapsed", "hidden"); } // Layout 1: Measure total and normal crumb sizes var contentElementWidth = this.contentElement.offsetWidth; var normalSizes = []; for (var i = 0; i < crumbs.childNodes.length; ++i) { var crumb = crumbs.childNodes[i]; normalSizes[i] = crumb.offsetWidth; } // Layout 2: Measure collapsed crumb sizes var compactSizes = []; for (var i = 0; i < crumbs.childNodes.length; ++i) { var crumb = crumbs.childNodes[i]; crumb.classList.add("compact"); } for (var i = 0; i < crumbs.childNodes.length; ++i) { var crumb = crumbs.childNodes[i]; compactSizes[i] = crumb.offsetWidth; } // Layout 3: Measure collapsed crumb size crumbs.firstChild.classList.add("collapsed"); var collapsedSize = crumbs.firstChild.offsetWidth; // Clean up. for (var i = 0; i < crumbs.childNodes.length; ++i) { var crumb = crumbs.childNodes[i]; crumb.classList.remove("compact", "collapsed"); } function crumbsAreSmallerThanContainer() { var totalSize = 0; for (var i = 0; i < crumbs.childNodes.length; ++i) { var crumb = crumbs.childNodes[i]; if (crumb.classList.contains("hidden")) continue; if (crumb.classList.contains("collapsed")) { totalSize += collapsedSize; continue; } totalSize += crumb.classList.contains("compact") ? compactSizes[i] : normalSizes[i]; } const rightPadding = 10; return totalSize + rightPadding < contentElementWidth; } if (crumbsAreSmallerThanContainer()) return; // No need to compact the crumbs, they all fit at full size. var BothSides = 0; var AncestorSide = -1; var ChildSide = 1; /** * @param {function(!Element)} shrinkingFunction * @param {number} direction */ function makeCrumbsSmaller(shrinkingFunction, direction) { var significantCrumb = focusedCrumb || selectedCrumb; var significantIndex = significantCrumb === selectedCrumb ? selectedIndex : focusedIndex; function shrinkCrumbAtIndex(index) { var shrinkCrumb = crumbs.childNodes[index]; if (shrinkCrumb && shrinkCrumb !== significantCrumb) shrinkingFunction(shrinkCrumb); if (crumbsAreSmallerThanContainer()) return true; // No need to compact the crumbs more. return false; } // Shrink crumbs one at a time by applying the shrinkingFunction until the crumbs // fit in the container or we run out of crumbs to shrink. if (direction) { // Crumbs are shrunk on only one side (based on direction) of the signifcant crumb. var index = (direction > 0 ? 0 : crumbs.childNodes.length - 1); while (index !== significantIndex) { if (shrinkCrumbAtIndex(index)) return true; index += (direction > 0 ? 1 : -1); } } else { // Crumbs are shrunk in order of descending distance from the signifcant crumb, // with a tie going to child crumbs. var startIndex = 0; var endIndex = crumbs.childNodes.length - 1; while (startIndex != significantIndex || endIndex != significantIndex) { var startDistance = significantIndex - startIndex; var endDistance = endIndex - significantIndex; if (startDistance >= endDistance) var index = startIndex++; else var index = endIndex--; if (shrinkCrumbAtIndex(index)) return true; } } // We are not small enough yet, return false so the caller knows. return false; } function coalesceCollapsedCrumbs() { var crumb = crumbs.firstChild; var collapsedRun = false; var newStartNeeded = false; var newEndNeeded = false; while (crumb) { var hidden = crumb.classList.contains("hidden"); if (!hidden) { var collapsed = crumb.classList.contains("collapsed"); if (collapsedRun && collapsed) { crumb.classList.add("hidden"); crumb.classList.remove("compact"); crumb.classList.remove("collapsed"); if (crumb.classList.contains("start")) { crumb.classList.remove("start"); newStartNeeded = true; } if (crumb.classList.contains("end")) { crumb.classList.remove("end"); newEndNeeded = true; } continue; } collapsedRun = collapsed; if (newEndNeeded) { newEndNeeded = false; crumb.classList.add("end"); } } else collapsedRun = true; crumb = crumb.nextSibling; } if (newStartNeeded) { crumb = crumbs.lastChild; while (crumb) { if (!crumb.classList.contains("hidden")) { crumb.classList.add("start"); break; } crumb = crumb.previousSibling; } } } /** * @param {!Element} crumb */ function compact(crumb) { if (crumb.classList.contains("hidden")) return; crumb.classList.add("compact"); } /** * @param {!Element} crumb * @param {boolean=} dontCoalesce */ function collapse(crumb, dontCoalesce) { if (crumb.classList.contains("hidden")) return; crumb.classList.add("collapsed"); crumb.classList.remove("compact"); if (!dontCoalesce) coalesceCollapsedCrumbs(); } if (!focusedCrumb) { // When not focused on a crumb we can be biased and collapse less important // crumbs that the user might not care much about. // Compact child crumbs. if (makeCrumbsSmaller(compact, ChildSide)) return; // Collapse child crumbs. if (makeCrumbsSmaller(collapse, ChildSide)) return; } // Compact ancestor crumbs, or from both sides if focused. if (makeCrumbsSmaller(compact, focusedCrumb ? BothSides : AncestorSide)) return; // Collapse ancestor crumbs, or from both sides if focused. if (makeCrumbsSmaller(collapse, focusedCrumb ? BothSides : AncestorSide)) return; if (!selectedCrumb) return; // Compact the selected crumb. compact(selectedCrumb); if (crumbsAreSmallerThanContainer()) return; // Collapse the selected crumb as a last resort. Pass true to prevent coalescing. collapse(selectedCrumb, true); }, /** * @return {boolean} */ _cssModelEnabledForSelectedNode: function() { if (!this.selectedDOMNode()) return true; return this.selectedDOMNode().target().cssModel.isEnabled(); }, /** * @param {boolean=} forceUpdate */ updateStyles: function(forceUpdate) { if (!this._cssModelEnabledForSelectedNode()) return; var stylesSidebarPane = this.sidebarPanes.styles; var computedStylePane = this.sidebarPanes.computedStyle; if ((!stylesSidebarPane.isShowing() && !computedStylePane.isShowing()) || !stylesSidebarPane.needsUpdate) return; stylesSidebarPane.update(this.selectedDOMNode(), forceUpdate); stylesSidebarPane.needsUpdate = false; }, updateMetrics: function() { if (!this._cssModelEnabledForSelectedNode()) return; var metricsSidebarPane = this.sidebarPanes.metrics; if (!metricsSidebarPane.isShowing() || !metricsSidebarPane.needsUpdate) return; metricsSidebarPane.update(this.selectedDOMNode()); metricsSidebarPane.needsUpdate = false; }, updatePlatformFonts: function() { if (!this._cssModelEnabledForSelectedNode()) return; var platformFontsSidebar = this.sidebarPanes.platformFonts; if (!platformFontsSidebar.isShowing() || !platformFontsSidebar.needsUpdate) return; platformFontsSidebar.update(this.selectedDOMNode()); platformFontsSidebar.needsUpdate = false; }, updateProperties: function() { var propertiesSidebarPane = this.sidebarPanes.properties; if (!propertiesSidebarPane.isShowing() || !propertiesSidebarPane.needsUpdate) return; propertiesSidebarPane.update(this.selectedDOMNode()); propertiesSidebarPane.needsUpdate = false; }, updateEventListeners: function() { var eventListenersSidebarPane = this.sidebarPanes.eventListeners; if (!eventListenersSidebarPane.isShowing() || !eventListenersSidebarPane.needsUpdate) return; eventListenersSidebarPane.update(this.selectedDOMNode()); eventListenersSidebarPane.needsUpdate = false; }, /** * @param {!KeyboardEvent} event */ handleShortcut: function(event) { /** * @param {!WebInspector.ElementsTreeOutline} treeOutline * @this {WebInspector.ElementsPanel} */ function handleUndoRedo(treeOutline) { if (WebInspector.KeyboardShortcut.eventHasCtrlOrMeta(event) && !event.shiftKey && event.keyIdentifier === "U+005A") { // Z key treeOutline.target().domModel.undo(this._updateSidebars.bind(this)); event.handled = true; return; } var isRedoKey = WebInspector.isMac() ? event.metaKey && event.shiftKey && event.keyIdentifier === "U+005A" : // Z key event.ctrlKey && event.keyIdentifier === "U+0059"; // Y key if (isRedoKey) { treeOutline.target().domModel.redo(this._updateSidebars.bind(this)); event.handled = true; } } var treeOutline = null; for (var i = 0; i < this._treeOutlines.length; ++i) { if (this._treeOutlines[i].selectedDOMNode() === this._lastValidSelectedNode) treeOutline = this._treeOutlines[i]; } if (!treeOutline) return; if (!treeOutline.editing()) { handleUndoRedo.call(this, treeOutline); if (event.handled) return; } treeOutline.handleShortcut(event); }, /** * @param {?WebInspector.DOMNode} node * @return {?WebInspector.ElementsTreeOutline} */ _treeOutlineForNode: function(node) { if (!node) return null; return this._targetToTreeOutline.get(node.target()) || null; }, /** * @param {!WebInspector.DOMNode} node * @return {?WebInspector.ElementsTreeElement} */ _treeElementForNode: function(node) { var treeOutline = this._treeOutlineForNode(node); return /** @type {?WebInspector.ElementsTreeElement} */ (treeOutline.findTreeElement(node)); }, /** * @param {!Event} event */ handleCopyEvent: function(event) { if (!WebInspector.currentFocusElement().enclosingNodeOrSelfWithClass("elements-tree-outline")) return; var treeOutline = this._treeOutlineForNode(this.selectedDOMNode()); if (treeOutline) treeOutline.handleCopyOrCutKeyboardEvent(false, event); }, /** * @param {!Event} event */ handleCutEvent: function(event) { var treeOutline = this._treeOutlineForNode(this.selectedDOMNode()); if (treeOutline) treeOutline.handleCopyOrCutKeyboardEvent(true, event); }, /** * @param {!Event} event */ handlePasteEvent: function(event) { var treeOutline = this._treeOutlineForNode(this.selectedDOMNode()); if (treeOutline) treeOutline.handlePasteKeyboardEvent(event); }, /** * @param {!WebInspector.DOMNode} node * @return {!WebInspector.DOMNode} */ _leaveUserAgentShadowDOM: function(node) { var userAgentShadowRoot = node.ancestorUserAgentShadowRoot(); return userAgentShadowRoot ? /** @type {!WebInspector.DOMNode} */ (userAgentShadowRoot.parentNode) : node; }, /** * @param {!WebInspector.DOMNode} node */ revealAndSelectNode: function(node) { WebInspector.inspectorView.setCurrentPanel(this); node = WebInspector.settings.showUAShadowDOM.get() ? node : this._leaveUserAgentShadowDOM(node); node.highlightForTwoSeconds(); this.selectDOMNode(node, true); }, /** * @param {!Event} event * @param {!WebInspector.ContextMenu} contextMenu * @param {!Object} object */ appendApplicableItems: function(event, contextMenu, object) { if (!(object instanceof WebInspector.RemoteObject && (/** @type {!WebInspector.RemoteObject} */ (object)).isNode()) && !(object instanceof WebInspector.DOMNode) && !(object instanceof WebInspector.DeferredDOMNode)) { return; } // Skip adding "Reveal..." menu item for our own tree outline. if (this.element.isAncestor(/** @type {!Node} */ (event.target))) return; var commandCallback = WebInspector.Revealer.reveal.bind(WebInspector.Revealer, object); contextMenu.appendItem(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Elements panel" : "Reveal in Elements Panel", commandCallback); }, _sidebarContextMenuEventFired: function(event) { var contextMenu = new WebInspector.ContextMenu(event); contextMenu.show(); }, _dockSideChanged: function() { var vertically = WebInspector.dockController.isVertical() && WebInspector.settings.splitVerticallyWhenDockedToRight.get(); this._splitVertically(vertically); }, _showUAShadowDOMChanged: function() { for (var i = 0; i < this._treeOutlines.length; ++i) this._treeOutlines[i].update(); }, /** * @param {boolean} vertically */ _splitVertically: function(vertically) { if (this.sidebarPaneView && vertically === !this._splitView.isVertical()) return; if (this.sidebarPaneView) { this.sidebarPaneView.detach(); this._splitView.uninstallResizer(this.sidebarPaneView.headerElement()); } this._splitView.setVertical(!vertically); var computedPane = new WebInspector.SidebarPane(WebInspector.UIString("Computed")); computedPane.element.classList.add("composite"); computedPane.element.classList.add("fill"); var expandComputed = computedPane.expand.bind(computedPane); computedPane.bodyElement.classList.add("metrics-and-computed"); this.sidebarPanes.computedStyle.setExpandCallback(expandComputed); var matchedStylePanesWrapper = document.createElement("div"); matchedStylePanesWrapper.className = "style-panes-wrapper"; var computedStylePanesWrapper = document.createElement("div"); computedStylePanesWrapper.className = "style-panes-wrapper"; /** * @param {boolean} inComputedStyle * @this {WebInspector.ElementsPanel} */ function showMetrics(inComputedStyle) { if (inComputedStyle) this.sidebarPanes.metrics.show(computedStylePanesWrapper, this.sidebarPanes.computedStyle.element); else this.sidebarPanes.metrics.show(matchedStylePanesWrapper); } /** * @param {!WebInspector.Event} event * @this {WebInspector.ElementsPanel} */ function tabSelected(event) { var tabId = /** @type {string} */ (event.data.tabId); if (tabId === computedPane.title()) showMetrics.call(this, true); else if (tabId === stylesPane.title()) showMetrics.call(this, false); } this.sidebarPaneView = new WebInspector.SidebarTabbedPane(); if (vertically) { this._splitView.installResizer(this.sidebarPaneView.headerElement()); this.sidebarPanes.metrics.setExpandCallback(expandComputed); var compositePane = new