1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
/*
* Copyright (C) 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.VisualStyleSelectorSection = class VisualStyleSelectorSection extends WI.DetailsSection
{
constructor()
{
let selectorSection = {element: document.createElement("div")};
selectorSection.element.classList.add("selectors");
let controlElement = document.createElement("div");
controlElement.classList.add("controls");
super("visual-style-selector-section", WI.UIString("Style Rules"), [selectorSection], controlElement);
this._nodeStyles = null;
this._currentSelectorElement = document.createElement("div");
this._currentSelectorElement.classList.add("current-selector");
let currentSelectorIconElement = document.createElement("img");
currentSelectorIconElement.classList.add("icon");
this._currentSelectorElement.appendChild(currentSelectorIconElement);
this._currentSelectorText = document.createElement("span");
this._currentSelectorElement.appendChild(this._currentSelectorText);
this._headerElement.appendChild(this._currentSelectorElement);
let selectorListElement = document.createElement("ol");
selectorListElement.classList.add("selector-list");
selectorSection.element.appendChild(selectorListElement);
this._selectors = new WI.TreeOutline(selectorListElement);
this._selectors.disclosureButtons = false;
this._selectors.addEventListener(WI.TreeOutline.Event.SelectionDidChange, this._selectorChanged, this);
this._newInspectorRuleSelector = null;
let addGlyphElement = useSVGSymbol("Images/Plus13.svg", "visual-style-selector-section-add-rule", WI.UIString("Add new rule"));
addGlyphElement.addEventListener("click", this._addNewRuleClick.bind(this));
addGlyphElement.addEventListener("contextmenu", this._addNewRuleContextMenu.bind(this));
controlElement.appendChild(addGlyphElement);
this._headerElement.addEventListener("mouseover", this._handleMouseOver.bind(this));
this._headerElement.addEventListener("mouseout", this._handleMouseOut.bind(this));
}
// Public
update(nodeStyles)
{
let style = this.currentStyle();
if (style)
this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol] = style;
if (nodeStyles)
this._nodeStyles = nodeStyles;
if (!this._nodeStyles)
return;
this._selectors.removeChildren();
let previousRule = null;
// Pseudo Styles
let pseudoRules = [];
let pseudoElements = this._nodeStyles.pseudoElements;
for (let pseudoIdentifier in pseudoElements)
pseudoRules = pseudoRules.concat(pseudoElements[pseudoIdentifier].matchedRules);
let orderedPseudoRules = uniqueOrderedRules(pseudoRules);
// Reverse the array to ensure that splicing the array will not mess with the order.
if (orderedPseudoRules.length)
orderedPseudoRules.reverse();
function createSelectorItem(style, title, subtitle) {
let selector = new WI.VisualStyleSelectorTreeItem(this, style, title, subtitle);
selector.addEventListener(WI.VisualStyleSelectorTreeItem.Event.CheckboxChanged, this._treeElementCheckboxToggled, this);
this._selectors.appendChild(selector);
if (style.isInspectorRule() && this._newInspectorRuleSelector === style.selectorText && !style.hasProperties()) {
selector.select(true);
selector.element.scrollIntoView();
this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol] = style;
this._newInspectorRuleSelector = null;
return;
}
if (this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol] === style) {
selector.select(true);
selector.element.scrollIntoView();
}
}
function uniqueOrderedRules(orderedRules)
{
if (!orderedRules || !orderedRules.length)
return new Array;
let uniqueRules = new Map;
for (let rule of orderedRules) {
if (!uniqueRules.has(rule.id))
uniqueRules.set(rule.id, rule);
}
return Array.from(uniqueRules.values());
}
function insertAllMatchingPseudoRules(force)
{
if (!orderedPseudoRules.length)
return;
if (force) {
for (let i = orderedPseudoRules.length - 1; i >= 0; --i) {
let pseudoRule = orderedPseudoRules[i];
createSelectorItem.call(this, pseudoRule.style, pseudoRule.selectorText, pseudoRule.mediaText);
}
orderedPseudoRules = [];
}
if (!previousRule)
return;
for (let i = orderedPseudoRules.length - 1; i >= 0; --i) {
let pseudoRule = orderedPseudoRules[i];
if (!pseudoRule.selectorIsGreater(previousRule.mostSpecificSelector))
continue;
createSelectorItem.call(this, pseudoRule.style, pseudoRule.selectorText, pseudoRule.mediaText);
previousRule = pseudoRule;
orderedPseudoRules.splice(i, 1);
}
}
if (this._nodeStyles.inlineStyle) {
if (!this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol])
this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol] = this._nodeStyles.inlineStyle;
// Inline Style
createSelectorItem.call(this, this._nodeStyles.inlineStyle, WI.UIString("This Element"));
} else if (!this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol])
this._nodeStyles[WI.VisualStyleSelectorSection.LastSelectedRuleSymbol] = this._nodeStyles.matchedRules[0].style;
// Matched Rules
for (let rule of uniqueOrderedRules(this._nodeStyles.matchedRules)) {
if (rule.type === WI.CSSStyleSheet.Type.UserAgent) {
insertAllMatchingPseudoRules.call(this, true);
continue;
}
insertAllMatchingPseudoRules.call(this);
createSelectorItem.call(this, rule.style, rule.selectorText, rule.mediaText);
previousRule = rule;
}
// Just in case there are any remaining pseudo-styles.
insertAllMatchingPseudoRules.call(this, true);
// Inherited Rules
for (let inherited of this._nodeStyles.inheritedRules) {
if (!inherited.matchedRules || !inherited.matchedRules.length)
continue;
let divider = null;
for (let rule of uniqueOrderedRules(inherited.matchedRules)) {
if (rule.type === WI.CSSStyleSheet.Type.UserAgent)
continue;
if (!divider) {
let dividerText = WI.UIString("Inherited from %s").format(inherited.node.displayName);
divider = new WI.GeneralTreeElement("section-divider", dividerText);
divider.selectable = false;
this._selectors.appendChild(divider);
}
createSelectorItem.call(this, rule.style, rule.selectorText, rule.mediaText);
}
}
this._newInspectorRuleSelector = null;
}
currentStyle()
{
if (!this._nodeStyles || !this._selectors.selectedTreeElement)
return null;
return this._selectors.selectedTreeElement.representedObject;
}
treeItemForStyle(style)
{
for (let item of this._selectors.children) {
if (item.representedObject === style)
return item;
}
return null;
}
selectEmptyStyleTreeItem(style)
{
if (style.hasProperties())
return false;
let treeItem = this.treeItemForStyle(style);
if (!treeItem)
return false;
treeItem.select(true, true);
return true;
}
// Private
_selectorChanged(event)
{
let selectedTreeElement = event.data.selectedElement;
if (!selectedTreeElement)
return;
// The class needs to be completely reset as the previously selected treeElement most likely had
// a different icon className and it is simpler to regenerate the class than to find out which
// class was previously applied.
this._currentSelectorElement.className = "current-selector " + selectedTreeElement.iconClassName;
let selectorText = selectedTreeElement.mainTitle;
let mediaText = selectedTreeElement.subtitle;
if (mediaText && mediaText.length)
selectorText += " \u2014 " + mediaText; // em-dash
this._currentSelectorText.textContent = selectorText;
this.dispatchEventToListeners(WI.VisualStyleSelectorSection.Event.SelectorChanged);
}
_addNewRuleClick(event)
{
if (!this._nodeStyles || this._nodeStyles.node.isInUserAgentShadowTree())
return;
let selector = this.currentStyle().selectorText;
let existingRules = this._nodeStyles.rulesForSelector(selector);
for (let rule of existingRules) {
if (this.selectEmptyStyleTreeItem(rule.style))
return;
}
this._newInspectorRuleSelector = selector;
this._nodeStyles.addRule(selector);
}
_addNewRuleContextMenu(event)
{
if (!this._nodeStyles || this._nodeStyles.node.isInUserAgentShadowTree())
return;
let styleSheets = WI.cssStyleManager.styleSheets.filter(styleSheet => styleSheet.hasInfo() && !styleSheet.isInlineStyleTag() && !styleSheet.isInlineStyleAttributeStyleSheet());
if (!styleSheets.length)
return;
let contextMenu = WI.ContextMenu.createFromEvent(event);
const handler = null;
const disabled = true;
contextMenu.appendItem(WI.UIString("Available Style Sheets"), handler, disabled);
for (let styleSheet of styleSheets) {
contextMenu.appendItem(styleSheet.displayName, () => {
const text = "";
this._nodeStyles.addRule(this.currentStyle().selectorText, text, styleSheet.id);
});
}
}
_treeElementCheckboxToggled(event)
{
let style = this.currentStyle();
if (!style)
return;
let styleText = style.text;
if (!styleText || !styleText.length)
return;
// Comment or uncomment the style text.
let newStyleText = "";
let styleEnabled = event && event.data && event.data.enabled;
if (styleEnabled)
newStyleText = styleText.replace(/\s*(\/\*|\*\/)\s*/g, "");
else
newStyleText = "/* " + styleText.replace(/(\s*;(?!$)\s*)/g, "$1 *//* ") + " */";
style.text = newStyleText;
style[WI.VisualStyleDetailsPanel.StyleDisabledSymbol] = !styleEnabled;
this.dispatchEventToListeners(WI.VisualStyleSelectorSection.Event.SelectorChanged);
}
_handleMouseOver()
{
if (!this.collapsed)
return;
let style = this.currentStyle();
if (!style)
return;
if (!style.ownerRule) {
WI.domTreeManager.highlightDOMNode(style.node.id);
return;
}
WI.domTreeManager.highlightSelector(style.ownerRule.selectorText, style.node.ownerDocument.frameIdentifier);
}
_handleMouseOut()
{
if (!this.collapsed)
return;
WI.domTreeManager.hideDOMNodeHighlight();
}
};
WI.VisualStyleSelectorSection.LastSelectedRuleSymbol = Symbol("visual-style-selector-section-last-selected-rule");
WI.VisualStyleSelectorSection.Event = {
SelectorChanged: "visual-style-selector-section-selector-changed"
};
|