Fix back/forward scroll jump issue

This commit is contained in:
2020-01-04 23:36:24 +00:00
parent 6cd41f0902
commit ced20390eb
3 changed files with 22 additions and 6 deletions

View File

@@ -3,9 +3,18 @@ import { withRouter } from 'react-router-dom';
class ScrollToTop extends React.Component {
componentDidUpdate(prevProps) {
if (this.props.location.pathname !== prevProps.location.pathname) {
window.scrollTo(0, 0);
//console.log(this.props.location.pathname, prevProps.location.pathname);
if (this.props.location.pathname === prevProps.location.pathname) {
return;
}
if (localStorage.getItem('scrollLock') === 'True') {
localStorage.setItem('scrollLock', 'False');
return;
}
window.scrollTo(0, 0);
}
render() {