parent
							
								
									82cbf325c2
								
							
						
					
					
						commit
						7ed6f60a74
					
				
					 17 changed files with 31 additions and 61 deletions
				
			
		| 
						 | 
					@ -149,6 +149,10 @@ export default class ScrollableList extends PureComponent {
 | 
				
			||||||
    this.props.onLoadMore();
 | 
					    this.props.onLoadMore();
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  defaultShouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
				
			||||||
 | 
					    return !(location.state && location.state.mastodonModalOpen);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { children, scrollKey, trackScroll, shouldUpdateScroll, isLoading, hasMore, prepend, emptyMessage, onLoadMore } = this.props;
 | 
					    const { children, scrollKey, trackScroll, shouldUpdateScroll, isLoading, hasMore, prepend, emptyMessage, onLoadMore } = this.props;
 | 
				
			||||||
    const { fullscreen } = this.state;
 | 
					    const { fullscreen } = this.state;
 | 
				
			||||||
| 
						 | 
					@ -190,7 +194,7 @@ export default class ScrollableList extends PureComponent {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (trackScroll) {
 | 
					    if (trackScroll) {
 | 
				
			||||||
      return (
 | 
					      return (
 | 
				
			||||||
        <ScrollContainer scrollKey={scrollKey} shouldUpdateScroll={shouldUpdateScroll}>
 | 
					        <ScrollContainer scrollKey={scrollKey} shouldUpdateScroll={shouldUpdateScroll || this.defaultShouldUpdateScroll}>
 | 
				
			||||||
          {scrollableArea}
 | 
					          {scrollableArea}
 | 
				
			||||||
        </ScrollContainer>
 | 
					        </ScrollContainer>
 | 
				
			||||||
      );
 | 
					      );
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -60,10 +60,6 @@ export default class AccountTimeline extends ImmutablePureComponent {
 | 
				
			||||||
    this.props.dispatch(expandAccountTimeline(this.props.params.accountId, { maxId, withReplies: this.props.withReplies }));
 | 
					    this.props.dispatch(expandAccountTimeline(this.props.params.accountId, { maxId, withReplies: this.props.withReplies }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { statusIds, featuredStatusIds, isLoading, hasMore } = this.props;
 | 
					    const { statusIds, featuredStatusIds, isLoading, hasMore } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -87,7 +83,6 @@ export default class AccountTimeline extends ImmutablePureComponent {
 | 
				
			||||||
          isLoading={isLoading}
 | 
					          isLoading={isLoading}
 | 
				
			||||||
          hasMore={hasMore}
 | 
					          hasMore={hasMore}
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
      </Column>
 | 
					      </Column>
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -66,10 +66,6 @@ export default class Bookmarks extends ImmutablePureComponent {
 | 
				
			||||||
    this.props.dispatch(expandBookmarkedStatuses());
 | 
					    this.props.dispatch(expandBookmarkedStatuses());
 | 
				
			||||||
  }, 300, { leading: true })
 | 
					  }, 300, { leading: true })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props;
 | 
					    const { intl, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props;
 | 
				
			||||||
    const pinned = !!columnId;
 | 
					    const pinned = !!columnId;
 | 
				
			||||||
| 
						 | 
					@ -91,7 +87,6 @@ export default class Bookmarks extends ImmutablePureComponent {
 | 
				
			||||||
          trackScroll={!pinned}
 | 
					          trackScroll={!pinned}
 | 
				
			||||||
          statusIds={statusIds}
 | 
					          statusIds={statusIds}
 | 
				
			||||||
          scrollKey={`bookmarked_statuses-${columnId}`}
 | 
					          scrollKey={`bookmarked_statuses-${columnId}`}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          hasMore={hasMore}
 | 
					          hasMore={hasMore}
 | 
				
			||||||
          isLoading={isLoading}
 | 
					          isLoading={isLoading}
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -71,10 +71,6 @@ export default class CommunityTimeline extends React.PureComponent {
 | 
				
			||||||
    this.props.dispatch(expandCommunityTimeline({ maxId }));
 | 
					    this.props.dispatch(expandCommunityTimeline({ maxId }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, hasUnread, columnId, multiColumn } = this.props;
 | 
					    const { intl, hasUnread, columnId, multiColumn } = this.props;
 | 
				
			||||||
    const pinned = !!columnId;
 | 
					    const pinned = !!columnId;
 | 
				
			||||||
| 
						 | 
					@ -97,7 +93,6 @@ export default class CommunityTimeline extends React.PureComponent {
 | 
				
			||||||
        <StatusListContainer
 | 
					        <StatusListContainer
 | 
				
			||||||
          trackScroll={!pinned}
 | 
					          trackScroll={!pinned}
 | 
				
			||||||
          scrollKey={`community_timeline-${columnId}`}
 | 
					          scrollKey={`community_timeline-${columnId}`}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          timelineId='community'
 | 
					          timelineId='community'
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          emptyMessage={<FormattedMessage id='empty_column.community' defaultMessage='The local timeline is empty. Write something publicly to get the ball rolling!' />}
 | 
					          emptyMessage={<FormattedMessage id='empty_column.community' defaultMessage='The local timeline is empty. Write something publicly to get the ball rolling!' />}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -71,10 +71,6 @@ export default class DirectTimeline extends React.PureComponent {
 | 
				
			||||||
    this.props.dispatch(expandDirectTimeline({ maxId }));
 | 
					    this.props.dispatch(expandDirectTimeline({ maxId }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, hasUnread, columnId, multiColumn } = this.props;
 | 
					    const { intl, hasUnread, columnId, multiColumn } = this.props;
 | 
				
			||||||
    const pinned = !!columnId;
 | 
					    const pinned = !!columnId;
 | 
				
			||||||
| 
						 | 
					@ -97,7 +93,6 @@ export default class DirectTimeline extends React.PureComponent {
 | 
				
			||||||
        <StatusListContainer
 | 
					        <StatusListContainer
 | 
				
			||||||
          trackScroll={!pinned}
 | 
					          trackScroll={!pinned}
 | 
				
			||||||
          scrollKey={`direct_timeline-${columnId}`}
 | 
					          scrollKey={`direct_timeline-${columnId}`}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          timelineId='direct'
 | 
					          timelineId='direct'
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          emptyMessage={<FormattedMessage id='empty_column.direct' defaultMessage="You don't have any direct messages yet. When you send or receive one, it will show up here." />}
 | 
					          emptyMessage={<FormattedMessage id='empty_column.direct' defaultMessage="You don't have any direct messages yet. When you send or receive one, it will show up here." />}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,10 +40,6 @@ export default class Blocks extends ImmutablePureComponent {
 | 
				
			||||||
    this.props.dispatch(expandDomainBlocks());
 | 
					    this.props.dispatch(expandDomainBlocks());
 | 
				
			||||||
  }, 300, { leading: true });
 | 
					  }, 300, { leading: true });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, domains } = this.props;
 | 
					    const { intl, domains } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -58,7 +54,7 @@ export default class Blocks extends ImmutablePureComponent {
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
      <Column icon='minus-circle' heading={intl.formatMessage(messages.heading)}>
 | 
					      <Column icon='minus-circle' heading={intl.formatMessage(messages.heading)}>
 | 
				
			||||||
        <ColumnBackButtonSlim />
 | 
					        <ColumnBackButtonSlim />
 | 
				
			||||||
        <ScrollableList scrollKey='domain_blocks' onLoadMore={this.handleLoadMore} shouldUpdateScroll={this.shouldUpdateScroll}>
 | 
					        <ScrollableList scrollKey='domain_blocks' onLoadMore={this.handleLoadMore}>
 | 
				
			||||||
          {domains.map(domain =>
 | 
					          {domains.map(domain =>
 | 
				
			||||||
            <DomainContainer key={domain} domain={domain} />
 | 
					            <DomainContainer key={domain} domain={domain} />
 | 
				
			||||||
          )}
 | 
					          )}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -66,10 +66,6 @@ export default class Favourites extends ImmutablePureComponent {
 | 
				
			||||||
    this.props.dispatch(expandFavouritedStatuses());
 | 
					    this.props.dispatch(expandFavouritedStatuses());
 | 
				
			||||||
  }, 300, { leading: true })
 | 
					  }, 300, { leading: true })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props;
 | 
					    const { intl, statusIds, columnId, multiColumn, hasMore, isLoading } = this.props;
 | 
				
			||||||
    const pinned = !!columnId;
 | 
					    const pinned = !!columnId;
 | 
				
			||||||
| 
						 | 
					@ -91,7 +87,6 @@ export default class Favourites extends ImmutablePureComponent {
 | 
				
			||||||
          trackScroll={!pinned}
 | 
					          trackScroll={!pinned}
 | 
				
			||||||
          statusIds={statusIds}
 | 
					          statusIds={statusIds}
 | 
				
			||||||
          scrollKey={`favourited_statuses-${columnId}`}
 | 
					          scrollKey={`favourited_statuses-${columnId}`}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          hasMore={hasMore}
 | 
					          hasMore={hasMore}
 | 
				
			||||||
          isLoading={isLoading}
 | 
					          isLoading={isLoading}
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -33,6 +33,10 @@ export default class Favourites extends ImmutablePureComponent {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
				
			||||||
 | 
					    return !(location.state && location.state.mastodonModalOpen);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { accountIds } = this.props;
 | 
					    const { accountIds } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +52,7 @@ export default class Favourites extends ImmutablePureComponent {
 | 
				
			||||||
      <Column>
 | 
					      <Column>
 | 
				
			||||||
        <ColumnBackButton />
 | 
					        <ColumnBackButton />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <ScrollContainer scrollKey='favourites'>
 | 
					        <ScrollContainer scrollKey='favourites' shouldUpdateScroll={this.shouldUpdateScroll}>
 | 
				
			||||||
          <div className='scrollable'>
 | 
					          <div className='scrollable'>
 | 
				
			||||||
            {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)}
 | 
					            {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)}
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,6 +42,10 @@ export default class FollowRequests extends ImmutablePureComponent {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
				
			||||||
 | 
					    return !(location.state && location.state.mastodonModalOpen);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, accountIds } = this.props;
 | 
					    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)}>
 | 
					      <Column name='follow-requests' icon='users' heading={intl.formatMessage(messages.heading)}>
 | 
				
			||||||
        <ColumnBackButtonSlim />
 | 
					        <ColumnBackButtonSlim />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <ScrollContainer scrollKey='follow_requests'>
 | 
					        <ScrollContainer scrollKey='follow_requests' shouldUpdateScroll={this.shouldUpdateScroll}>
 | 
				
			||||||
          <div className='scrollable' onScroll={this.handleScroll}>
 | 
					          <div className='scrollable' onScroll={this.handleScroll}>
 | 
				
			||||||
            {accountIds.map(id =>
 | 
					            {accountIds.map(id =>
 | 
				
			||||||
              <AccountAuthorizeContainer key={id} id={id} />
 | 
					              <AccountAuthorizeContainer key={id} id={id} />
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -56,6 +56,10 @@ export default class Followers extends ImmutablePureComponent {
 | 
				
			||||||
    this.props.dispatch(expandFollowers(this.props.params.accountId));
 | 
					    this.props.dispatch(expandFollowers(this.props.params.accountId));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
				
			||||||
 | 
					    return !(location.state && location.state.mastodonModalOpen);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { accountIds, hasMore } = this.props;
 | 
					    const { accountIds, hasMore } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -77,7 +81,7 @@ export default class Followers extends ImmutablePureComponent {
 | 
				
			||||||
      <Column>
 | 
					      <Column>
 | 
				
			||||||
        <ColumnBackButton />
 | 
					        <ColumnBackButton />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <ScrollContainer scrollKey='followers'>
 | 
					        <ScrollContainer scrollKey='followers' shouldUpdateScroll={this.shouldUpdateScroll}>
 | 
				
			||||||
          <div className='scrollable' onScroll={this.handleScroll}>
 | 
					          <div className='scrollable' onScroll={this.handleScroll}>
 | 
				
			||||||
            <div className='followers'>
 | 
					            <div className='followers'>
 | 
				
			||||||
              <HeaderContainer accountId={this.props.params.accountId} hideTabs />
 | 
					              <HeaderContainer accountId={this.props.params.accountId} hideTabs />
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -82,10 +82,6 @@ export default class HashtagTimeline extends React.PureComponent {
 | 
				
			||||||
    this.props.dispatch(expandHashtagTimeline(this.props.params.id, { maxId }));
 | 
					    this.props.dispatch(expandHashtagTimeline(this.props.params.id, { maxId }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { hasUnread, columnId, multiColumn } = this.props;
 | 
					    const { hasUnread, columnId, multiColumn } = this.props;
 | 
				
			||||||
    const { id } = this.props.params;
 | 
					    const { id } = this.props.params;
 | 
				
			||||||
| 
						 | 
					@ -110,7 +106,6 @@ export default class HashtagTimeline extends React.PureComponent {
 | 
				
			||||||
          scrollKey={`hashtag_timeline-${columnId}`}
 | 
					          scrollKey={`hashtag_timeline-${columnId}`}
 | 
				
			||||||
          timelineId={`hashtag:${id}`}
 | 
					          timelineId={`hashtag:${id}`}
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          emptyMessage={<FormattedMessage id='empty_column.hashtag' defaultMessage='There is nothing in this hashtag yet.' />}
 | 
					          emptyMessage={<FormattedMessage id='empty_column.hashtag' defaultMessage='There is nothing in this hashtag yet.' />}
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
      </Column>
 | 
					      </Column>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -42,6 +42,10 @@ export default class Mutes extends ImmutablePureComponent {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
				
			||||||
 | 
					    return !(location.state && location.state.mastodonModalOpen);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, accountIds } = this.props;
 | 
					    const { intl, accountIds } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -56,7 +60,7 @@ export default class Mutes extends ImmutablePureComponent {
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
      <Column name='mutes' icon='volume-off' heading={intl.formatMessage(messages.heading)}>
 | 
					      <Column name='mutes' icon='volume-off' heading={intl.formatMessage(messages.heading)}>
 | 
				
			||||||
        <ColumnBackButtonSlim />
 | 
					        <ColumnBackButtonSlim />
 | 
				
			||||||
        <ScrollContainer scrollKey='mutes'>
 | 
					        <ScrollContainer scrollKey='mutes' shouldUpdateScroll={this.shouldUpdateScroll}>
 | 
				
			||||||
          <div className='scrollable mutes' onScroll={this.handleScroll}>
 | 
					          <div className='scrollable mutes' onScroll={this.handleScroll}>
 | 
				
			||||||
            {accountIds.map(id =>
 | 
					            {accountIds.map(id =>
 | 
				
			||||||
              <AccountContainer key={id} id={id} />
 | 
					              <AccountContainer key={id} id={id} />
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,10 +41,6 @@ export default class PinnedStatuses extends ImmutablePureComponent {
 | 
				
			||||||
    this.column = c;
 | 
					    this.column = c;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, statusIds, hasMore } = this.props;
 | 
					    const { intl, statusIds, hasMore } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -54,7 +50,6 @@ export default class PinnedStatuses extends ImmutablePureComponent {
 | 
				
			||||||
        <StatusList
 | 
					        <StatusList
 | 
				
			||||||
          statusIds={statusIds}
 | 
					          statusIds={statusIds}
 | 
				
			||||||
          scrollKey='pinned_statuses'
 | 
					          scrollKey='pinned_statuses'
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          hasMore={hasMore}
 | 
					          hasMore={hasMore}
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
      </Column>
 | 
					      </Column>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -71,10 +71,6 @@ export default class PublicTimeline extends React.PureComponent {
 | 
				
			||||||
    this.props.dispatch(expandPublicTimeline({ maxId }));
 | 
					    this.props.dispatch(expandPublicTimeline({ maxId }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl, columnId, hasUnread, multiColumn } = this.props;
 | 
					    const { intl, columnId, hasUnread, multiColumn } = this.props;
 | 
				
			||||||
    const pinned = !!columnId;
 | 
					    const pinned = !!columnId;
 | 
				
			||||||
| 
						 | 
					@ -99,7 +95,6 @@ export default class PublicTimeline extends React.PureComponent {
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          trackScroll={!pinned}
 | 
					          trackScroll={!pinned}
 | 
				
			||||||
          scrollKey={`public_timeline-${columnId}`}
 | 
					          scrollKey={`public_timeline-${columnId}`}
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          emptyMessage={<FormattedMessage id='empty_column.public' defaultMessage='There is nothing here! Write something publicly, or manually follow users from other instances to fill it up' />}
 | 
					          emptyMessage={<FormattedMessage id='empty_column.public' defaultMessage='There is nothing here! Write something publicly, or manually follow users from other instances to fill it up' />}
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
      </Column>
 | 
					      </Column>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -33,6 +33,10 @@ export default class Reblogs extends ImmutablePureComponent {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
				
			||||||
 | 
					    return !(location.state && location.state.mastodonModalOpen);
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { accountIds } = this.props;
 | 
					    const { accountIds } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +52,7 @@ export default class Reblogs extends ImmutablePureComponent {
 | 
				
			||||||
      <Column>
 | 
					      <Column>
 | 
				
			||||||
        <ColumnBackButton />
 | 
					        <ColumnBackButton />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <ScrollContainer scrollKey='reblogs'>
 | 
					        <ScrollContainer scrollKey='reblogs' shouldUpdateScroll={this.shouldUpdateScroll}>
 | 
				
			||||||
          <div className='scrollable reblogs'>
 | 
					          <div className='scrollable reblogs'>
 | 
				
			||||||
            {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)}
 | 
					            {accountIds.map(id => <AccountContainer key={id} id={id} withNote={false} />)}
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -47,10 +47,6 @@ export default class CommunityTimeline extends React.PureComponent {
 | 
				
			||||||
    this.props.dispatch(expandCommunityTimeline({ maxId }));
 | 
					    this.props.dispatch(expandCommunityTimeline({ maxId }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { intl } = this.props;
 | 
					    const { intl } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -66,7 +62,6 @@ export default class CommunityTimeline extends React.PureComponent {
 | 
				
			||||||
          timelineId='community'
 | 
					          timelineId='community'
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
          scrollKey='standalone_public_timeline'
 | 
					          scrollKey='standalone_public_timeline'
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          trackScroll={false}
 | 
					          trackScroll={false}
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
      </Column>
 | 
					      </Column>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,10 +41,6 @@ export default class HashtagTimeline extends React.PureComponent {
 | 
				
			||||||
    this.props.dispatch(expandHashtagTimeline(this.props.hashtag, { maxId }));
 | 
					    this.props.dispatch(expandHashtagTimeline(this.props.hashtag, { maxId }));
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  shouldUpdateScroll = (prevRouterProps, { location }) => {
 | 
					 | 
				
			||||||
    return !(location.state && location.state.mastodonModalOpen)
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render () {
 | 
					  render () {
 | 
				
			||||||
    const { hashtag } = this.props;
 | 
					    const { hashtag } = this.props;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -59,7 +55,6 @@ export default class HashtagTimeline extends React.PureComponent {
 | 
				
			||||||
        <StatusListContainer
 | 
					        <StatusListContainer
 | 
				
			||||||
          trackScroll={false}
 | 
					          trackScroll={false}
 | 
				
			||||||
          scrollKey='standalone_hashtag_timeline'
 | 
					          scrollKey='standalone_hashtag_timeline'
 | 
				
			||||||
          shouldUpdateScroll={this.shouldUpdateScroll}
 | 
					 | 
				
			||||||
          timelineId={`hashtag:${hashtag}`}
 | 
					          timelineId={`hashtag:${hashtag}`}
 | 
				
			||||||
          onLoadMore={this.handleLoadMore}
 | 
					          onLoadMore={this.handleLoadMore}
 | 
				
			||||||
        />
 | 
					        />
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue