@@ -23,8 +23,6 @@ type AnimatingTableProps = {
23
23
type AnimatingTableSnapshot = {
24
24
lastKeyOrder : string [ ] ;
25
25
lastKeyToOffsetTop : Map < string , number > ;
26
- // TODO - this is a workaround to fix scrolling position sometimes moves.
27
- scrollPos : number ;
28
26
} ;
29
27
30
28
export default class AnimatingTable extends React . Component <
@@ -46,8 +44,7 @@ export default class AnimatingTable extends React.Component<
46
44
lastKeyOrder . push ( row . dataset . key ! ) ;
47
45
lastKeyToOffsetTop . set ( row . dataset . key ! , row . offsetTop ) ;
48
46
}
49
- const scrollPos = document . documentElement . scrollTop ;
50
- return { lastKeyOrder, lastKeyToOffsetTop, scrollPos } ;
47
+ return { lastKeyOrder, lastKeyToOffsetTop } ;
51
48
}
52
49
53
50
componentDidUpdate (
@@ -56,7 +53,7 @@ export default class AnimatingTable extends React.Component<
56
53
snapshot : AnimatingTableSnapshot
57
54
) {
58
55
const { delay = 1000 } = this . props ;
59
- const { lastKeyOrder, lastKeyToOffsetTop, scrollPos } = snapshot ;
56
+ const { lastKeyOrder, lastKeyToOffsetTop } = snapshot ;
60
57
const rows = Array . from ( this . ref . current ! . children ) as HTMLElement [ ] ;
61
58
62
59
// Check if the order changed.
@@ -73,11 +70,6 @@ export default class AnimatingTable extends React.Component<
73
70
}
74
71
}
75
72
76
- // TODO - this is a workaround to fix scrolling position sometimes moves.
77
- if ( scrollPos ) {
78
- document . documentElement . scrollTop = scrollPos ;
79
- }
80
-
81
73
// Cancel all animations.
82
74
this . timers . clearTimeouts ( ) ;
83
75
for ( const cancel of this . cancels . splice ( 0 ) ) {
0 commit comments