Closed Bug 1520389 Opened 5 years ago Closed 5 years ago

Implement the selector highlighter in the new rules view

Categories

(DevTools :: Inspector: Rules, enhancement, P3)

enhancement

Tracking

(firefox66 fixed)

RESOLVED FIXED
Firefox 66
Tracking Status
firefox66 --- fixed

People

(Reporter: gl, Assigned: gl)

References

(Blocks 1 open bug)

Details

Attachments

(1 file, 1 obsolete file)

No description provided.
Depends on: 1519988
Attached patch 1520389.patch [1.0] (obsolete) — Splinter Review
Attachment #9036822 - Flags: review?(rcaliman)
Summary: Implement selector highlighter in the new rules view → Implement the selector highlighter in the new rules view
Comment on attachment 9036822 [details] [diff] [review]
1520389.patch [1.0]

Review of attachment 9036822 [details] [diff] [review]:
-----------------------------------------------------------------

::: devtools/client/inspector/rules/components/SelectorHighlighter.js
@@ +24,5 @@
> +  constructor(props) {
> +    super(props);
> +
> +    this.state = {
> +      // An unique selector to the current Rule. This is used to check if the

s/An/A

@@ +25,5 @@
> +    super(props);
> +
> +    this.state = {
> +      // An unique selector to the current Rule. This is used to check if the
> +      // selector highlighter matches the highlighted selector and should be highlighted.

This comment is a bit of a tongue twister :)
Suggestion: A unique selector to the current Rule. This is checked against the value of any existing highlighted selector in order mark the toggled state of the component.

::: devtools/client/inspector/rules/models/rule.js
@@ +189,5 @@
> +  async getUniqueSelector() {
> +    let selector = "";
> +
> +    if (this.domRule.selectors) {
> +      // This is a "normal" rule with a selector.

s/"normal"/style

@@ +197,5 @@
> +      // selector from the node which rule this is inherited from.
> +      selector = await this.inherited.getUniqueSelector();
> +    } else {
> +      // This is an inline style from the current node.
> +      selector = this.elementStyle.ruleView.inspector.selectionCssSelector;

This is making a reference to the old (current) Rule view. It will break when we remove it.

::: devtools/client/inspector/rules/new-rules.js
@@ +127,5 @@
> +   *
> +   * @return {HighlighterOverlay}.
> +   */
> +  get highlighters() {
> +    if (!this._highlighters) {

Why do we need to set `this._highlighters`? 

This logic is similar to what's going on in `inspector.js`:

https://searchfox.org/mozilla-central/rev/bee8cf15c901b9f4b0c074c9977da4bbebc506e3/devtools/client/inspector/inspector.js#192-197

So returning directly `this.inspector.highlighters` would go through the process of getting it lazily from the inspector and caching into `this._highlighters` in `inspector.js`

@@ +151,5 @@
> +      return this._selectorHighlighter;
> +    }
> +
> +    try {
> +      const front = this.inspector.inspector;

I'm not sure how to review this. Yulia did a recent refactoring in the Changes panel with regards to accessing fronts to avoid some of the race condition pitfalls we had:

https://searchfox.org/mozilla-central/rev/bee8cf15c901b9f4b0c074c9977da4bbebc506e3/devtools/client/inspector/changes/ChangesView.js#51-61

I will ask for her review on this particular bit of code to make sure we're following the recommended way to access fronts.

@@ +246,5 @@
> +        selector,
> +      });
> +
> +      this.highlighters.selectorHighlighterShown = selector;
> +      this.emit("ruleview-selectorhighlighter-toggled", true);

This event seems to only be used by tests now. Perhaps add a comment here and on the other `emit()` so we know that, if we refactor the tests to rely on Redux state, this event and the emitter can be removed.
Attachment #9036822 - Flags: review?(ystartsev)
Attachment #9036822 - Attachment is obsolete: true
Attachment #9036822 - Flags: review?(ystartsev)
Attachment #9036822 - Flags: review?(rcaliman)
Attachment #9037123 - Flags: review?(ystartsev)
Attachment #9037123 - Flags: review?(rcaliman)

(In reply to Razvan Caliman [:rcaliman] from comment #3)

Comment on attachment 9036822 [details] [diff] [review]
1520389.patch [1.0]

Review of attachment 9036822 [details] [diff] [review]:

::: devtools/client/inspector/rules/components/SelectorHighlighter.js
@@ +24,5 @@

  • constructor(props) {
  • super(props);
  • this.state = {
  •  // An unique selector to the current Rule. This is used to check if the
    

s/An/A

@@ +25,5 @@

  • super(props);
  • this.state = {
  •  // An unique selector to the current Rule. This is used to check if the
    
  •  // selector highlighter matches the highlighted selector and should be highlighted.
    

This comment is a bit of a tongue twister :)
Suggestion: A unique selector to the current Rule. This is checked against
the value of any existing highlighted selector in order mark the toggled
state of the component.

::: devtools/client/inspector/rules/models/rule.js
@@ +189,5 @@

  • async getUniqueSelector() {
  • let selector = "";
  • if (this.domRule.selectors) {
  •  // This is a "normal" rule with a selector.
    

s/"normal"/style

@@ +197,5 @@

  •  // selector from the node which rule this is inherited from.
    
  •  selector = await this.inherited.getUniqueSelector();
    
  • } else {
  •  // This is an inline style from the current node.
    
  •  selector = this.elementStyle.ruleView.inspector.selectionCssSelector;
    

This is making a reference to the old (current) Rule view. It will break
when we remove it.

We should be ok since we pass the reference to the new Rules view in ElementStyle. https://searchfox.org/mozilla-central/source/devtools/client/inspector/rules/new-rules.js#162.

We can still mitigate this in the future by ensuring we have a reference to the inspector in ElementStyle as well.

::: devtools/client/inspector/rules/new-rules.js
@@ +127,5 @@

    • @return {HighlighterOverlay}.
  • */
  • get highlighters() {
  • if (!this._highlighters) {

Why do we need to set this._highlighters?

This logic is similar to what's going on in inspector.js:

https://searchfox.org/mozilla-central/rev/
bee8cf15c901b9f4b0c074c9977da4bbebc506e3/devtools/client/inspector/inspector.
js#192-197

So returning directly this.inspector.highlighters would go through the
process of getting it lazily from the inspector and caching into
this._highlighters in inspector.js

@@ +151,5 @@

  •  return this._selectorHighlighter;
    
  • }
  • try {
  •  const front = this.inspector.inspector;
    

I'm not sure how to review this. Yulia did a recent refactoring in the
Changes panel with regards to accessing fronts to avoid some of the race
condition pitfalls we had:

https://searchfox.org/mozilla-central/rev/
bee8cf15c901b9f4b0c074c9977da4bbebc506e3/devtools/client/inspector/changes/
ChangesView.js#51-61

I will ask for her review on this particular bit of code to make sure we're
following the recommended way to access fronts.

This bit on the SelectorHighlighter was refactored by Yulia in Bug 1508660.
https://searchfox.org/mozilla-central/source/devtools/client/inspector/rules/rules.js#265-267

@@ +246,5 @@

  •    selector,
    
  •  });
    
  •  this.highlighters.selectorHighlighterShown = selector;
    
  •  this.emit("ruleview-selectorhighlighter-toggled", true);
    

This event seems to only be used by tests now. Perhaps add a comment here
and on the other emit() so we know that, if we refactor the tests to rely
on Redux state, this event and the emitter can be removed.

Blocks: 1520689
Comment on attachment 9037123 [details] [diff] [review]
1520389.patch [2.0]

Review of attachment 9037123 [details] [diff] [review]:
-----------------------------------------------------------------

I took a look. The front access looks fine for now -- we do the same in a few spots in the codebase.

::: devtools/client/inspector/rules/new-rules.js
@@ +147,5 @@
> +      return this._selectorHighlighter;
> +    }
> +
> +    try {
> +      const front = this.inspector.inspector;

this looks fine as a way to get the front. 

If you have a target present, you can get the front via `target.getCachedFront(frontName)` but the inspector is a special case due to its destruction path. At the moment we have a separate function `target.getInspector()`. 

But since no target is in this code, and you are passing the front via the inspector object, its fine to use it. We should at some point rename it to inspectorFront but there hasn't been time to do that yet.
Attachment #9037123 - Flags: review?(ystartsev) → review+
Comment on attachment 9037123 [details] [diff] [review]
1520389.patch [2.0]

Review of attachment 9037123 [details] [diff] [review]:
-----------------------------------------------------------------

Thank you, Yulia, for the extra review! And thank you, Gabriel, for the clarifications & fixes!

::: devtools/client/inspector/rules/new-rules.js
@@ +92,5 @@
>        this.elementStyle.destroy();
>      }
>  
>      this._dummyElement = null;
> +    this._highlighters = null;

`this._highlighters` is no longer used.
Attachment #9037123 - Flags: review?(rcaliman) → review+
Pushed by gabriel.luong@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/55fc0688ea18
Implement the selector highlighter in the new rules view. r=rcaliman
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 66
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: