2017-04-22 04:05:35 +10:00
import PropTypes from 'prop-types' ;
2023-05-24 01:15:17 +10:00
import { FormattedMessage } from 'react-intl' ;
2016-11-14 06:42:54 +11:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2023-05-24 01:15:17 +10:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import { connect } from 'react-redux' ;
2018-08-27 00:39:37 +10:00
import { debounce } from 'lodash' ;
2023-05-24 01:15:17 +10:00
import { TimelineHint } from 'mastodon/components/timeline_hint' ;
import BundleColumnError from 'mastodon/features/ui/components/bundle_column_error' ;
import { normalizeForLookup } from 'mastodon/reducers/accounts_map' ;
import { getAccountHidden } from 'mastodon/selectors' ;
2016-11-14 06:42:54 +11:00
import {
2021-09-26 13:46:13 +10:00
lookupAccount ,
2021-09-27 15:23:48 +10:00
fetchAccount ,
2016-11-14 06:42:54 +11:00
fetchFollowing ,
2017-05-21 01:31:47 +10:00
expandFollowing ,
2016-11-14 06:42:54 +11:00
} from '../../actions/accounts' ;
2023-10-26 22:00:10 +11:00
import { ColumnBackButton } from '../../components/column_back_button' ;
2023-06-14 03:26:25 +10:00
import { LoadingIndicator } from '../../components/loading_indicator' ;
2018-08-27 00:39:37 +10:00
import ScrollableList from '../../components/scrollable_list' ;
2023-05-24 01:15:17 +10:00
import AccountContainer from '../../containers/account_container' ;
2023-11-04 02:00:03 +11:00
import { LimitedAccountHint } from '../account_timeline/components/limited_account_hint' ;
2023-05-24 01:15:17 +10:00
import HeaderContainer from '../account_timeline/containers/header_container' ;
import Column from '../ui/components/column' ;
2016-10-28 06:59:56 +11:00
2021-09-27 15:23:48 +10:00
const mapStateToProps = ( state , { params : { acct , id } } ) => {
2022-10-24 08:38:08 +11:00
const accountId = id || state . getIn ( [ 'accounts_map' , normalizeForLookup ( acct ) ] ) ;
2021-09-26 13:46:13 +10:00
if ( ! accountId ) {
return {
isLoading : true ,
} ;
}
return {
accountId ,
remote : ! ! ( state . getIn ( [ 'accounts' , accountId , 'acct' ] ) !== state . getIn ( [ 'accounts' , accountId , 'username' ] ) ) ,
remoteUrl : state . getIn ( [ 'accounts' , accountId , 'url' ] ) ,
isAccount : ! ! state . getIn ( [ 'accounts' , accountId ] ) ,
accountIds : state . getIn ( [ 'user_lists' , 'following' , accountId , 'items' ] ) ,
hasMore : ! ! state . getIn ( [ 'user_lists' , 'following' , accountId , 'next' ] ) ,
isLoading : state . getIn ( [ 'user_lists' , 'following' , accountId , 'isLoading' ] , true ) ,
2022-05-10 17:44:35 +10:00
suspended : state . getIn ( [ 'accounts' , accountId , 'suspended' ] , false ) ,
2023-11-09 23:58:02 +11:00
hideCollections : state . getIn ( [ 'accounts' , accountId , 'hide_collections' ] , false ) ,
2022-05-10 17:44:35 +10:00
hidden : getAccountHidden ( state , accountId ) ,
2021-09-26 13:46:13 +10:00
blockedBy : state . getIn ( [ 'relationships' , accountId , 'blocked_by' ] , false ) ,
} ;
} ;
2016-10-28 06:59:56 +11:00
2020-06-15 06:29:40 +10:00
const RemoteHint = ( { url } ) => (
< TimelineHint url = { url } resource = { < FormattedMessage id = 'timeline_hint.resources.follows' defaultMessage = 'Follows' / > } / >
) ;
RemoteHint . propTypes = {
url : PropTypes . string . isRequired ,
} ;
2018-09-15 01:59:48 +10:00
class Following extends ImmutablePureComponent {
2016-10-28 06:59:56 +11:00
2017-05-12 22:44:10 +10:00
static propTypes = {
2021-09-26 13:46:13 +10:00
params : PropTypes . shape ( {
2021-09-27 15:23:48 +10:00
acct : PropTypes . string ,
id : PropTypes . string ,
2021-09-26 13:46:13 +10:00
} ) . isRequired ,
accountId : PropTypes . string ,
2017-05-12 22:44:10 +10:00
dispatch : PropTypes . func . isRequired ,
2017-05-21 01:31:47 +10:00
accountIds : ImmutablePropTypes . list ,
2017-06-06 02:18:56 +10:00
hasMore : PropTypes . bool ,
2020-04-12 21:38:00 +10:00
isLoading : PropTypes . bool ,
2019-04-07 12:59:13 +10:00
blockedBy : PropTypes . bool ,
2019-04-09 13:02:48 +10:00
isAccount : PropTypes . bool ,
2022-05-10 17:44:35 +10:00
suspended : PropTypes . bool ,
hidden : PropTypes . bool ,
2020-06-15 06:29:40 +10:00
remote : PropTypes . bool ,
remoteUrl : PropTypes . string ,
2019-07-19 17:25:22 +10:00
multiColumn : PropTypes . bool ,
2017-05-12 22:44:10 +10:00
} ;
2016-10-28 06:59:56 +11:00
2021-09-26 13:46:13 +10:00
_load ( ) {
2021-09-27 15:23:48 +10:00
const { accountId , isAccount , dispatch } = this . props ;
2021-09-26 13:46:13 +10:00
2021-09-27 15:23:48 +10:00
if ( ! isAccount ) dispatch ( fetchAccount ( accountId ) ) ;
2021-09-26 13:46:13 +10:00
dispatch ( fetchFollowing ( accountId ) ) ;
}
componentDidMount ( ) {
const { params : { acct } , accountId , dispatch } = this . props ;
if ( accountId ) {
this . _load ( ) ;
} else {
dispatch ( lookupAccount ( acct ) ) ;
2019-09-30 00:27:00 +10:00
}
2017-04-22 04:05:35 +10:00
}
2016-10-28 06:59:56 +11:00
2021-09-26 13:46:13 +10:00
componentDidUpdate ( prevProps ) {
const { params : { acct } , accountId , dispatch } = this . props ;
if ( prevProps . accountId !== accountId && accountId ) {
this . _load ( ) ;
} else if ( prevProps . params . acct !== acct ) {
dispatch ( lookupAccount ( acct ) ) ;
2016-10-28 06:59:56 +11:00
}
2017-04-22 04:05:35 +10:00
}
2016-10-28 06:59:56 +11:00
2018-08-27 00:39:37 +10:00
handleLoadMore = debounce ( ( ) => {
2021-09-26 13:46:13 +10:00
this . props . dispatch ( expandFollowing ( this . props . accountId ) ) ;
2018-08-27 00:39:37 +10:00
} , 300 , { leading : true } ) ;
2017-01-31 07:40:55 +11:00
2016-10-28 06:59:56 +11:00
render ( ) {
2023-11-09 23:58:02 +11:00
const { accountId , accountIds , hasMore , blockedBy , isAccount , multiColumn , isLoading , suspended , hidden , remote , remoteUrl , hideCollections } = this . props ;
2019-04-09 13:02:48 +10:00
if ( ! isAccount ) {
return (
2023-04-12 20:44:58 +10:00
< BundleColumnError multiColumn = { multiColumn } errorType = 'routing' / >
2019-04-09 13:02:48 +10:00
) ;
}
2017-06-05 22:13:20 +10:00
2016-10-28 06:59:56 +11:00
if ( ! accountIds ) {
2017-01-31 07:40:55 +11:00
return (
< Column >
< LoadingIndicator / >
< / Column >
) ;
2016-10-28 06:59:56 +11:00
}
2020-06-15 06:29:40 +10:00
let emptyMessage ;
2022-05-10 17:44:35 +10:00
const forceEmptyState = blockedBy || suspended || hidden ;
if ( suspended ) {
emptyMessage = < FormattedMessage id = 'empty_column.account_suspended' defaultMessage = 'Account suspended' / > ;
} else if ( hidden ) {
emptyMessage = < LimitedAccountHint accountId = { accountId } / > ;
} else if ( blockedBy ) {
2020-06-15 06:29:40 +10:00
emptyMessage = < FormattedMessage id = 'empty_column.account_unavailable' defaultMessage = 'Profile unavailable' / > ;
2023-11-09 23:58:02 +11:00
} else if ( hideCollections && accountIds . isEmpty ( ) ) {
emptyMessage = < FormattedMessage id = 'empty_column.account_hides_collections' defaultMessage = 'This user has chosen to not make this information available' / > ;
2020-06-15 06:29:40 +10:00
} else if ( remote && accountIds . isEmpty ( ) ) {
emptyMessage = < RemoteHint url = { remoteUrl } / > ;
} else {
emptyMessage = < FormattedMessage id = 'account.follows.empty' defaultMessage = "This user doesn't follow anyone yet." / > ;
}
const remoteMessage = remote ? < RemoteHint url = { remoteUrl } / > : null ;
2017-06-05 22:13:20 +10:00
2016-10-28 06:59:56 +11:00
return (
2017-01-31 07:40:55 +11:00
< Column >
2023-10-26 22:00:10 +11:00
< ColumnBackButton / >
2017-02-01 08:34:33 +11:00
2018-08-27 00:39:37 +10:00
< ScrollableList
scrollKey = 'following'
2022-05-10 17:44:35 +10:00
hasMore = { ! forceEmptyState && hasMore }
2020-04-12 21:38:00 +10:00
isLoading = { isLoading }
2018-08-27 00:39:37 +10:00
onLoadMore = { this . handleLoadMore }
2021-09-26 13:46:13 +10:00
prepend = { < HeaderContainer accountId = { this . props . accountId } hideTabs / > }
2018-08-29 09:19:58 +10:00
alwaysPrepend
2020-06-15 06:29:40 +10:00
append = { remoteMessage }
2018-08-27 00:39:37 +10:00
emptyMessage = { emptyMessage }
2019-07-19 17:25:22 +10:00
bindToDocument = { ! multiColumn }
2018-08-27 00:39:37 +10:00
>
2022-05-10 17:44:35 +10:00
{ forceEmptyState ? [ ] : accountIds . map ( id =>
2020-03-09 02:02:36 +11:00
< AccountContainer key = { id } id = { id } withNote = { false } / > ,
2018-08-27 00:39:37 +10:00
) }
< / ScrollableList >
2017-01-31 07:40:55 +11:00
< / Column >
2016-10-28 06:59:56 +11:00
) ;
}
2017-04-22 04:05:35 +10:00
}
2023-03-24 13:17:53 +11:00
export default connect ( mapStateToProps ) ( Following ) ;