Changeset 200949 in webkit
- Timestamp:
- May 16, 2016, 11:04:25 AM (9 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r200947 r200949 1 2016-05-14 Timothy Hatcher <timothy@apple.com> 2 3 Web Inspector: DataGrid _updateVisibleRows dominates profiles of timeline recordings when data grid (Overview or TimelineDataGrids) is showing 4 https://bugs.webkit.org/show_bug.cgi?id=157664 5 rdar://problem/26262219 6 7 Reviewed by Joseph Pecoraro. 8 9 * UserInterface/Views/DataGrid.js: 10 (WebInspector.DataGrid): Added new members. 11 (WebInspector.DataGrid.prototype.layout): Reset _cachedScrollTop and _cachedScrollHeight on resize. 12 (WebInspector.DataGrid.prototype._noteScrollPositionChanged): Added. 13 (WebInspector.DataGrid.prototype._updateVisibleRows): Cache sizes and positions when possible. 14 (WebInspector.DataGridNode.prototype.set hidden): Added call to _noteRowsChanged. 15 (WebInspector.DataGridNode.prototype.collapse): Call _noteRowsChanged instead of needsLayout. 16 (WebInspector.DataGridNode.prototype.expand): Call _noteRowsChanged instead of needsLayout. 17 (WebInspector.DataGrid.prototype._updateFilter): Removed direct call to _updateVisibleRows, this is 18 better handled by DataGridNode's hidden setter. 19 1 20 2016-05-14 Timothy Hatcher <timothy@apple.com> 2 21 -
trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js
r200886 r200949 54 54 this._columnWidthsInitialized = false; 55 55 56 this._cachedScrollTop = NaN; 57 this._cachedScrollableOffsetHeight = NaN; 58 this._previousRevealedRowCount = NaN; 59 this._topDataTableMarginHeight = NaN; 60 this._bottomDataTableMarginHeight = NaN; 61 56 62 this._filterText = ""; 57 63 this._filterDelegate = null; … … 73 79 this._scrollContainerElement.className = "data-container"; 74 80 75 this._scrollListener = () => this. needsLayout();81 this._scrollListener = () => this._noteScrollPositionChanged(); 76 82 this._updateScrollListeners(); 77 83 … … 798 804 } 799 805 800 if (layoutReason == WebInspector.View.LayoutReason.Resize || firstUpdate) {806 if (layoutReason === WebInspector.View.LayoutReason.Resize || firstUpdate) { 801 807 this._positionResizerElements(); 802 808 this._positionHeaderViews(); 809 810 this._cachedScrollTop = NaN; 811 this._cachedScrollableOffsetHeight = NaN; 803 812 } 804 813 … … 964 973 } 965 974 975 _noteScrollPositionChanged() 976 { 977 this._cachedScrollTop = NaN; 978 979 this.needsLayout(); 980 } 981 966 982 _updateVisibleRows() 967 983 { … … 988 1004 let rowHeight = this.rowHeight; 989 1005 let updateOffsetThreshold = rowHeight * 5; 1006 let overflowPadding = updateOffsetThreshold * 3; 1007 1008 if (isNaN(this._cachedScrollTop)) 1009 this._cachedScrollTop = this._scrollContainerElement.scrollTop; 1010 1011 if (isNaN(this._cachedScrollableOffsetHeight)) 1012 this._cachedScrollableOffsetHeight = this._scrollContainerElement.offsetHeight; 1013 1014 let scrollTop = this._cachedScrollTop; 1015 let scrollableOffsetHeight = this._cachedScrollableOffsetHeight; 1016 1017 let visibleRowCount = Math.ceil((scrollableOffsetHeight + (overflowPadding * 2)) / rowHeight); 1018 1019 let currentTopMargin = this._topDataTableMarginHeight; 1020 let currentBottomMargin = this._bottomDataTableMarginHeight; 1021 let currentTableBottom = currentTopMargin + (visibleRowCount * rowHeight); 1022 1023 let belowTopThreshold = !currentTopMargin || scrollTop > currentTopMargin + updateOffsetThreshold; 1024 let aboveBottomThreshold = !currentBottomMargin || scrollTop + scrollableOffsetHeight < currentTableBottom - updateOffsetThreshold; 1025 1026 if (belowTopThreshold && aboveBottomThreshold && !isNaN(this._previousRevealedRowCount)) 1027 return; 990 1028 991 1029 let revealedRows = this._rows.filter((row) => row.revealed && !row.hidden); 992 1030 993 let scrollTop = this._scrollContainerElement.scrollTop;994 let scrollHeight = this._scrollContainerElement.offsetHeight;995 996 let currentTopMargin = this._topDataTableMarginElement.offsetHeight;997 let currentBottomMargin = this._bottomDataTableMarginElement.offsetHeight;998 let currentTableBottom = currentTopMargin + this._dataTableElement.offsetHeight;999 1000 let belowTopThreshold = !currentTopMargin || scrollTop > currentTopMargin + updateOffsetThreshold;1001 let aboveBottomThreshold = !currentBottomMargin || scrollTop + scrollHeight < currentTableBottom - updateOffsetThreshold;1002 1003 if (belowTopThreshold && aboveBottomThreshold && this._previousRevealedRowCount === revealedRows.length)1004 return;1005 1006 1031 this._previousRevealedRowCount = revealedRows.length; 1007 1032 1008 let overflowPadding = updateOffsetThreshold * 3;1009 1010 1033 let topHiddenRowCount = Math.max(0, Math.floor((scrollTop - overflowPadding) / rowHeight)); 1011 let visibleRowCount = Math.ceil((scrollHeight + (overflowPadding * 2)) / rowHeight); 1012 let bottomHiddenRowCount = Math.max(0, revealedRows.length - topHiddenRowCount - visibleRowCount); 1034 let bottomHiddenRowCount = Math.max(0, this._previousRevealedRowCount - topHiddenRowCount - visibleRowCount); 1013 1035 1014 1036 let marginTop = topHiddenRowCount * rowHeight; 1015 1037 let marginBottom = bottomHiddenRowCount * rowHeight; 1016 1038 1017 this._topDataTableMarginElement.style.height = marginTop + "px"; 1018 this._bottomDataTableMarginElement.style.height = marginBottom + "px"; 1039 if (this._topDataTableMarginHeight !== marginTop) { 1040 this._topDataTableMarginHeight = marginTop; 1041 this._topDataTableMarginElement.style.height = marginTop + "px"; 1042 } 1043 1044 if (this._bottomDataTableMarginElement !== marginBottom) { 1045 this._bottomDataTableMarginHeight = marginBottom; 1046 this._bottomDataTableMarginElement.style.height = marginBottom + "px"; 1047 } 1019 1048 1020 1049 this._dataTableElement.classList.toggle("odd-first-zebra-stripe", !!(topHiddenRowCount % 2)); … … 1724 1753 return; 1725 1754 1726 this._updateVisibleRows();1727 1755 this.dispatchEventToListeners(WebInspector.DataGrid.Event.FilterDidChange); 1728 1756 } … … 1797 1825 if (this._element) 1798 1826 this._element.classList.toggle("hidden", this._hidden); 1827 1828 if (this.dataGrid) 1829 this.dataGrid._noteRowsChanged(); 1799 1830 } 1800 1831 … … 2171 2202 if (this.dataGrid) { 2172 2203 this.dataGrid.dispatchEventToListeners(WebInspector.DataGrid.Event.CollapsedNode, {dataGridNode: this}); 2173 this.dataGrid. needsLayout();2204 this.dataGrid._noteRowsChanged(); 2174 2205 } 2175 2206 } … … 2221 2252 if (this.dataGrid) { 2222 2253 this.dataGrid.dispatchEventToListeners(WebInspector.DataGrid.Event.ExpandedNode, {dataGridNode: this}); 2223 this.dataGrid. needsLayout();2254 this.dataGrid._noteRowsChanged(); 2224 2255 } 2225 2256 }
Note:
See TracChangeset
for help on using the changeset viewer.