Fixes columns scrolling to top when opening media modal

Fixes #700
This commit is contained in:
Thibaut Girka
2018-09-03 13:32:35 +02:00
committed by ThibG
parent 2b82829a53
commit e915bc3e9e
17 changed files with 31 additions and 61 deletions

View File

@@ -42,6 +42,10 @@ export default class FollowRequests extends ImmutablePureComponent {
}
}
shouldUpdateScroll = (prevRouterProps, { location }) => {
return !(location.state && location.state.mastodonModalOpen);
}
render () {
const { intl, accountIds } = this.props;
@@ -57,7 +61,7 @@ export default class FollowRequests extends ImmutablePureComponent {
<Column name='follow-requests' icon='users' heading={intl.formatMessage(messages.heading)}>
<ColumnBackButtonSlim />
<ScrollContainer scrollKey='follow_requests'>
<ScrollContainer scrollKey='follow_requests' shouldUpdateScroll={this.shouldUpdateScroll}>
<div className='scrollable' onScroll={this.handleScroll}>
{accountIds.map(id =>
<AccountAuthorizeContainer key={id} id={id} />