Closed Bug 1592763 Opened 5 years ago Closed 5 years ago

ChangesView should use TargetList API to list to changes coming from actors from all the frames

Categories

(DevTools :: Inspector: Changes, defect, P1)

defect

Tracking

(firefox72 fixed)

RESOLVED FIXED
Firefox 72
Tracking Status
firefox72 --- fixed

People

(Reporter: gl, Assigned: daisuke)

References

(Blocks 1 open bug)

Details

(Whiteboard: dt-fission-reserve)

Attachments

(1 file, 1 obsolete file)

We need to make use of the TargetList API to listen to changes coming from actors from all frames. In the current setup, only changes from the ChangesFront associated with the inspector.currentTarget at the time of Changes panel init would be listening for changes.

Proposed changes in https://searchfox.org/mozilla-central/source/devtools/client/inspector/changes/ChangesView.js#103.

TargetList.watchFrontEvent([TargetList.TYPES.FRAME], "changes", ["add-change", "clear-changes"], (targetType, targetFront, changesFront, eventType, event) {
  if (eventType == "add-change") {
  
  } else if (eventType == "clear-changes") {

  }
});

See https://phabricator.services.mozilla.com/D50973 for prior discussions

Whiteboard: dt-fission-reserve
Depends on: 1578242
No longer depends on: 1471754
Assignee: nobody → daisuke
Status: NEW → ASSIGNED

Hi Alex, Razvan,

We were discussing about this bug with Daisuke, and I was not sure about the scope of this bug.
Is it to make the ChangesView handle several targets, or simply to make sure it has the correct "currentTarget" when the top-level target changes (similar to what was done for the ReflowTracker).

Thanks!

Flags: needinfo?(rcaliman)
Flags: needinfo?(poirot.alex)

It is about using the TargetList, which implies:

  • supporting target switching, by:
    • no longer caching the "current target". You may refer to targetList.currentTarget if you need it. But in many case, just switching to use watchTargets helps you drop this reference. (like here, you stop refering to inspector.currentTarget)
    • handling the special case in onTargetAvailable/onTargetDestroyed when isTopLevel is true (like here, adding the will-navigate listener)
  • supporting multiple targets:
    • handling the other cases in onTargetAvailable/onTargetDestroyed when isTopLevel is false (like here, register the add-change listener to all the targets)

Note that, the second bullet point (supporting multiple targets) may be done, in some cases, in a followup patch, if that helps.
i.e. you may first refactor existing code to use targetList.watchTargets, and only consider isTopLevel=true case.
I may highlight this option when working on the other less important panels, as a preliminary, easier work to only support target switching.
But here, for the inspector, it is important to support multiple targets.

Conclusion: the patch submitted on phabricator looks great and does what I was expecting :)

Flags: needinfo?(poirot.alex)

(In reply to Alexandre Poirot [:ochameau] from comment #3)

It is about using the TargetList, which implies:

  • supporting target switching, by:
    • no longer caching the "current target". You may refer to targetList.currentTarget if you need it. But in many case, just switching to use watchTargets helps you drop this reference. (like here, you stop refering to inspector.currentTarget)
    • handling the special case in onTargetAvailable/onTargetDestroyed when isTopLevel is true (like here, adding the will-navigate listener)
  • supporting multiple targets:
    • handling the other cases in onTargetAvailable/onTargetDestroyed when isTopLevel is false (like here, register the add-change listener to all the targets)

Note that, the second bullet point (supporting multiple targets) may be done, in some cases, in a followup patch, if that helps.
i.e. you may first refactor existing code to use targetList.watchTargets, and only consider isTopLevel=true case.
I may highlight this option when working on the other less important panels, as a preliminary, easier work to only support target switching.
But here, for the inspector, it is important to support multiple targets.

Conclusion: the patch submitted on phabricator looks great and does what I was expecting :)

(clearing the ni for Razvan)
Thanks for taking a look! I must say I was confused this morning, I thought this was about the StyleChangeTracker (Bug 1588868). That's why I was more expecting something similar to the ReflowTracker changes, I didn't realize this was another bug :)

Flags: needinfo?(rcaliman)
Priority: P3 → P1

Thank you very much for your feedback, Alex!
I'll update the patch a bit to use watchFronts and unwatchFronts, then request reviewing.

Attachment #9110762 - Attachment description: Bug 1592763: Use TargetList api for ChangesView. r? → Bug 1592763: Use TargetList api for ChangesView. r?ochameau!,r?rcaliman!

Depends on D54256

In order for CSS changes to be tracked, the ChangesActor needs to be created and listening. This is done by requesting its corresponding front on the client.

With Fission, we may have multiple iframes, each with its own ChangesActor isolated to the frame's process. In order to ensure there is a corresponding ChangesFront for each frame we move from eager instantiation in the inspector client with _getChangesFront() (this was ok pre-Fission since there was just one ChangesActor/Front) to instantiating a ChangesActor per frame on-demand when necesary.

To do so, we ensure a ChangesActor exists for the respective frame's target before attempting to send the CSS changes to be applied on the server via the corresponding methods on StyleRuleFront.

This change makes it so ChangesActors/Fronts get lazily instantiated only when they're about to be used and avoids needless creation of multiple actors/fronts for each frame if they're not going to be used.

Comment on attachment 9111589 [details]
Bug 1592763 - Ensure ChangesActor is ready to track CSS changes for each frame. r?ochameau,r?pbro

Revision D54725 was moved to bug 1599728. Setting attachment 9111589 [details] to obsolete.

Attachment #9111589 - Attachment is obsolete: true
Pushed by dakatsuka.birchill@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/bce288d63380
Use TargetList api for ChangesView. r=ochameau,rcaliman
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 72
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: