mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 09:29:18 +00:00
Finalize location on scrollable notifications when unmounting (#6614)
The top of the scrollable notifications will be invisible after unmounting. The Redux state should be updated accordingly in such a case so that the unread notification counter will be updated later.
This commit is contained in:
parent
44829d8216
commit
45feb439bd
|
@ -50,6 +50,13 @@ export default class Notifications extends React.PureComponent {
|
||||||
trackScroll: true,
|
trackScroll: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
componentWillUnmount () {
|
||||||
|
this.handleScrollToBottom.cancel();
|
||||||
|
this.handleScrollToTop.cancel();
|
||||||
|
this.handleScroll.cancel();
|
||||||
|
this.props.dispatch(scrollTopNotifications(false));
|
||||||
|
}
|
||||||
|
|
||||||
handleScrollToBottom = debounce(() => {
|
handleScrollToBottom = debounce(() => {
|
||||||
this.props.dispatch(scrollTopNotifications(false));
|
this.props.dispatch(scrollTopNotifications(false));
|
||||||
this.props.dispatch(expandNotifications());
|
this.props.dispatch(expandNotifications());
|
||||||
|
|
Loading…
Reference in a new issue