@ -2,20 +2,21 @@ import React from 'react';
import { connect } from 'react-redux' ;
import PropTypes from 'prop-types' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import { debounce } from 'lodash' ;
import LoadingIndicator from 'flavours/glitch/components/loading_indicator' ;
import {
fetchAccount ,
fetchFollowing ,
expandFollowing ,
} from 'flavours/glitch/actions/accounts' ;
import { ScrollContainer } from 'react-router-scroll-4 ';
import { FormattedMessage } from 'react-intl ';
import AccountContainer from 'flavours/glitch/containers/account_container' ;
import Column from 'flavours/glitch/features/ui/components/column' ;
import ProfileColumnHeader from 'flavours/glitch/features/account/components/profile_column_header' ;
import HeaderContainer from 'flavours/glitch/features/account_timeline/containers/header_container' ;
import LoadMore from 'flavours/glitch/components/load_more' ;
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import MissingIndicator from 'flavours/glitch/components/missing_indicator' ;
import ScrollableList from 'flavours/glitch/components/scrollable_list' ;
const mapStateToProps = ( state , props ) => ( {
isAccount : ! ! state . getIn ( [ 'accounts' , props . params . accountId ] ) ,
@ -58,15 +59,10 @@ export default class Following extends ImmutablePureComponent {
}
}
handleLoadMore = ( e ) => {
handleLoadMore = debounce ( ( ) => {
e . preventDefault ( ) ;
this . props . dispatch ( expandFollowing ( this . props . params . accountId ) ) ;
}
shouldUpdateScroll = ( prevRouterProps , { location } ) => {
if ( ( ( ( prevRouterProps || { } ) . location || { } ) . state || { } ) . mastodonModalOpen ) return false ;
return ! ( location . state && location . state . mastodonModalOpen ) ;
}
} , 300 , { leading : true } ) ;
setRef = c => {
this . column = c ;
@ -83,8 +79,6 @@ export default class Following extends ImmutablePureComponent {
) ;
}
let loadMore = null ;
if ( ! accountIds ) {
return (
< Column >
@ -93,23 +87,25 @@ export default class Following extends ImmutablePureComponent {
) ;
}
if ( hasMore ) {
loadMore = < LoadMore onClick = { this . handleLoadMore } / > ;
}
const emptyMessage = < FormattedMessage id = 'account.follows.empty' defaultMessage = "This user doesn't follow anyone yet." / > ;
return (
< Column ref = { this . setRef } >
< ProfileColumnHeader onClick = { this . handleHeaderClick } / >
< ScrollContainer scrollKey = 'following' shouldUpdateScroll = { this . shouldUpdateScroll } >
< div className = 'scrollable' onScroll = { this . handleScroll } >
< div className = 'following' >
< HeaderContainer accountId = { this . props . params . accountId } hideTabs / >
{ accountIds . map ( id => < AccountContainer key = { id } id = { id } withNote = { false } / > ) }
{ loadMore }
< / d i v >
< / d i v >
< / S c r o l l C o n t a i n e r >
< HeaderContainer accountId = { this . props . params . accountId } hideTabs / >
< ScrollableList
scrollKey = 'following'
hasMore = { hasMore }
onLoadMore = { this . handleLoadMore }
shouldUpdateScroll = { this . shouldUpdateScroll }
emptyMessage = { emptyMessage }
>
{ accountIds . map ( id =>
< AccountContainer key = { id } id = { id } withNote = { false } / >
) }
< / S c r o l l a b l e L i s t >
< / C o l u m n >
) ;
}