You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
626 B
16 lines
626 B
3 years ago
|
import { ScrollContainer as OriginalScrollContainer } from 'react-router-scroll-4';
|
||
|
|
||
|
// ScrollContainer is used to automatically scroll to the top when pushing a
|
||
|
// new history state and remembering the scroll position when going back.
|
||
|
// There are a few things we need to do differently, though.
|
||
|
const defaultShouldUpdateScroll = (prevRouterProps, { location }) => {
|
||
|
return !(prevRouterProps?.location?.state?.mastodonModalKey || location.state?.mastodonModalKey);
|
||
|
}
|
||
|
|
||
|
export default
|
||
|
class ScrollContainer extends OriginalScrollContainer {
|
||
|
static defaultProps = {
|
||
|
shouldUpdateScroll: defaultShouldUpdateScroll,
|
||
|
};
|
||
|
}
|