Skip to content

Commit c32d238

Browse files
committed
Avoid sudden scroll jumps on swapping standings rows
Modern browsers try to "follow" elements jumping out of the viewport. Set overflow-anchor: none to disable the behavior. c.f. https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-anchor
1 parent c8656db commit c32d238

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

frontend/css/livesite.css

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ a.no-decoration {
6565

6666
.standard-standings {
6767
line-height: 1.3;
68+
overflow-anchor: none;
6869
}
6970

7071
.standard-standings .team-row {

frontend/src/components/common/AnimatingTable.tsx

+2-10
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ type AnimatingTableProps = {
2323
type AnimatingTableSnapshot = {
2424
lastKeyOrder: string[];
2525
lastKeyToOffsetTop: Map<string, number>;
26-
// TODO - this is a workaround to fix scrolling position sometimes moves.
27-
scrollPos: number;
2826
};
2927

3028
export default class AnimatingTable extends React.Component<
@@ -46,8 +44,7 @@ export default class AnimatingTable extends React.Component<
4644
lastKeyOrder.push(row.dataset.key!);
4745
lastKeyToOffsetTop.set(row.dataset.key!, row.offsetTop);
4846
}
49-
const scrollPos = document.documentElement.scrollTop;
50-
return { lastKeyOrder, lastKeyToOffsetTop, scrollPos };
47+
return { lastKeyOrder, lastKeyToOffsetTop };
5148
}
5249

5350
componentDidUpdate(
@@ -56,7 +53,7 @@ export default class AnimatingTable extends React.Component<
5653
snapshot: AnimatingTableSnapshot
5754
) {
5855
const { delay = 1000 } = this.props;
59-
const { lastKeyOrder, lastKeyToOffsetTop, scrollPos } = snapshot;
56+
const { lastKeyOrder, lastKeyToOffsetTop } = snapshot;
6057
const rows = Array.from(this.ref.current!.children) as HTMLElement[];
6158

6259
// Check if the order changed.
@@ -73,11 +70,6 @@ export default class AnimatingTable extends React.Component<
7370
}
7471
}
7572

76-
// TODO - this is a workaround to fix scrolling position sometimes moves.
77-
if (scrollPos) {
78-
document.documentElement.scrollTop = scrollPos;
79-
}
80-
8173
// Cancel all animations.
8274
this.timers.clearTimeouts();
8375
for (const cancel of this.cancels.splice(0)) {

0 commit comments

Comments
 (0)