2017-10-28 16:38:07 +03:00
|
|
|
// @flow
|
2019-06-30 16:32:50 +03:00
|
|
|
import type { Location } from 'react-router-dom';
|
2017-10-28 16:38:07 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
import { restoreScroll } from './scroll';
|
|
|
|
|
2019-06-30 16:32:50 +03:00
|
|
|
class ScrollIntoView extends React.PureComponent<{
|
|
|
|
location: Location,
|
2017-10-28 16:38:07 +03:00
|
|
|
top?: bool, // do not touch any DOM and simply scroll to top on location change
|
|
|
|
}> {
|
|
|
|
componentDidMount() {
|
|
|
|
this.onPageUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.location !== prevProps.location) {
|
|
|
|
this.onPageUpdate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onPageUpdate() {
|
|
|
|
if (this.props.top) {
|
|
|
|
restoreScroll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
if (this.props.top) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return <span ref={(el) => el && restoreScroll(el)} />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withRouter(ScrollIntoView);
|