Adjust scroll when statuses above the current scroll position are deleted

This commit is contained in:
Thibaut Girka 2019-02-09 22:08:57 +01:00 committed by ThibG
parent 0b91322762
commit dfe1d548a5
1 changed files with 9 additions and 0 deletions

View File

@ -242,6 +242,15 @@ export default class Status extends ImmutablePureComponent {
}
}
componentWillUnmount() {
if (this.node && this.props.getScrollPosition) {
const position = this.props.getScrollPosition();
if (position !== null && this.node.offsetTop < position.top) {
requestAnimationFrame(() => { this.props.updateScrollBottom(position.height - position.top); });
}
}
}
// `setCollapsed()` sets the value of `isCollapsed` in our state, that is,
// whether the toot is collapsed or not.