RESOLVED FIXED 192992
Web Inspector: update scroll position when revealing a virtualized WI.DataGridNode
https://bugs.webkit.org/show_bug.cgi?id=192992
Summary Web Inspector: update scroll position when revealing a virtualized WI.DataGri...
Devin Rousso
Reported 2018-12-21 12:54:33 PST
When calling `reveal()` on a `WI.DataGridNode`, if that node isn't currently visible (e.g. it's scrolled offscreen), then it most likely isn't part of the DOM tree, meaning that `scrollIntoViewIfNeeded` won't work. Since `WI.DataGrid` uses virtualization to keep the DOM tree more lightweight, when we call `WI.DataGridNode.prototype.reveal`, we need to recalculate what nodes should be in the DOM tree. This is the same logic that is done by a virtualized `WI.TreeOutline`.
Attachments
Patch (5.83 KB, patch)
2018-12-21 13:01 PST, Devin Rousso
no flags
Devin Rousso
Comment 1 2018-12-21 12:54:48 PST
Devin Rousso
Comment 2 2018-12-21 13:01:44 PST
Simon Fraser (smfr)
Comment 3 2018-12-21 13:12:47 PST
Comment on attachment 357970 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=357970&action=review > Source/WebInspectorUI/ChangeLog:11 > + When `reveal`ing a `WI.DataGridNode`, if it is not currently in the DOM tree (e.g. it's been > + virtualized by it's owner `WI.DataGrid`), we need to scroll to it's position so that it gets > + added to the DOM tree before it can be revealed/selected. Those backticks tho
Joseph Pecoraro
Comment 4 2018-12-21 13:34:28 PST
Comment on attachment 357970 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=357970&action=review > Source/WebInspectorUI/UserInterface/Views/DataGrid.js:1107 > + this._scrollContainerElement.scrollTop = this._cachedScrollTop = (focusedIndex * rowHeight) - (this._cachedScrollableOffsetHeight / 2) + (rowHeight / 2); The new scrollTop is equal to: (the top of the focused row) - (half the scrollable area) + (half a row) I'm not sure I follow this. Everything else seems good.
Devin Rousso
Comment 5 2018-12-21 13:37:03 PST
Comment on attachment 357970 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=357970&action=review >> Source/WebInspectorUI/UserInterface/Views/DataGrid.js:1107 >> + this._scrollContainerElement.scrollTop = this._cachedScrollTop = (focusedIndex * rowHeight) - (this._cachedScrollableOffsetHeight / 2) + (rowHeight / 2); > > The new scrollTop is equal to: > > (the top of the focused row) - (half the scrollable area) + (half a row) > > I'm not sure I follow this. Everything else seems good. This just centers the node in the view. Scrolling to `(focusedIndex * rowHeight)` (this is the `scrollTop` of the focused `WI.DataGridNode`) would make the node visible as the first row. Subtracting `(this._cachedScrollableOffsetHeight / 2)` moves the node to the middle, specifically the `scrollTop` of the node is now in the middle (meaning that the `WI.DataGridNode` is below the middle). Finally, adding `(rowHeight / 2)` ensures that the middle of the focused node is in the middle of the scrollable area.
Joseph Pecoraro
Comment 6 2018-12-21 14:00:37 PST
(In reply to Devin Rousso from comment #5) > Comment on attachment 357970 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=357970&action=review > > >> Source/WebInspectorUI/UserInterface/Views/DataGrid.js:1107 > >> + this._scrollContainerElement.scrollTop = this._cachedScrollTop = (focusedIndex * rowHeight) - (this._cachedScrollableOffsetHeight / 2) + (rowHeight / 2); > > > > The new scrollTop is equal to: > > > > (the top of the focused row) - (half the scrollable area) + (half a row) > > > > I'm not sure I follow this. Everything else seems good. > > This just centers the node in the view. Scrolling to `(focusedIndex * > rowHeight)` (this is the `scrollTop` of the focused `WI.DataGridNode`) would > make the node visible as the first row. Subtracting > `(this._cachedScrollableOffsetHeight / 2)` moves the node to the middle, > specifically the `scrollTop` of the node is now in the middle (meaning that > the `WI.DataGridNode` is below the middle). Finally, adding `(rowHeight / > 2)` ensures that the middle of the focused node is in the middle of the > scrollable area. Okay that is what I was expecting and I somehow convinced myself that it wasn't doing that. I've now come to my senses. We may decide to configure scroll to middle or make it the top/bottom row depending on scroll direction. But middle is reasonable for starters.
Joseph Pecoraro
Comment 7 2018-12-21 14:00:44 PST
Comment on attachment 357970 [details] Patch r=me
WebKit Commit Bot
Comment 8 2018-12-21 14:28:01 PST
Comment on attachment 357970 [details] Patch Clearing flags on attachment: 357970 Committed r239517: <https://trac.webkit.org/changeset/239517>
WebKit Commit Bot
Comment 9 2018-12-21 14:28:03 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.