2017-05-03 10:04:16 +10:00
import React from 'react' ;
2016-12-27 07:33:51 +11:00
import { connect } from 'react-redux' ;
2018-08-27 00:39:37 +10:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
2018-07-30 00:52:06 +10:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
2017-04-22 04:05:35 +10:00
import PropTypes from 'prop-types' ;
2016-12-27 07:33:51 +11:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2018-08-27 00:39:37 +10:00
import { debounce } from 'lodash' ;
2016-12-27 07:33:51 +11:00
import LoadingIndicator from '../../components/loading_indicator' ;
import Column from '../ui/components/column' ;
2017-01-31 01:22:04 +11:00
import ColumnBackButtonSlim from '../../components/column_back_button_slim' ;
2016-12-27 07:33:51 +11:00
import AccountAuthorizeContainer from './containers/account_authorize_container' ;
import { fetchFollowRequests , expandFollowRequests } from '../../actions/accounts' ;
2018-08-27 00:39:37 +10:00
import ScrollableList from '../../components/scrollable_list' ;
2020-04-05 03:02:10 +10:00
import { me } from '../../initial_state' ;
2022-10-20 23:35:29 +11:00
import { Helmet } from 'react-helmet' ;
2016-12-27 07:33:51 +11:00
const messages = defineMessages ( {
2017-05-21 01:31:47 +10:00
heading : { id : 'column.follow_requests' , defaultMessage : 'Follow requests' } ,
2016-12-27 07:33:51 +11:00
} ) ;
const mapStateToProps = state => ( {
2017-05-21 01:31:47 +10:00
accountIds : state . getIn ( [ 'user_lists' , 'follow_requests' , 'items' ] ) ,
2020-04-12 21:38:00 +10:00
isLoading : state . getIn ( [ 'user_lists' , 'follow_requests' , 'isLoading' ] , true ) ,
2019-02-16 21:56:09 +11:00
hasMore : ! ! state . getIn ( [ 'user_lists' , 'follow_requests' , 'next' ] ) ,
2020-04-05 03:02:10 +10:00
locked : ! ! state . getIn ( [ 'accounts' , me , 'locked' ] ) ,
domain : state . getIn ( [ 'meta' , 'domain' ] ) ,
2016-12-27 07:33:51 +11:00
} ) ;
2018-09-15 01:59:48 +10:00
export default @ connect ( mapStateToProps )
2017-06-24 03:36:54 +10:00
@ injectIntl
2018-09-15 01:59:48 +10:00
class FollowRequests extends ImmutablePureComponent {
2016-12-27 07:33:51 +11:00
2017-05-12 22:44:10 +10:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
2019-02-16 21:56:09 +11:00
hasMore : PropTypes . bool ,
2020-04-12 21:38:00 +10:00
isLoading : PropTypes . bool ,
2017-05-12 22:44:10 +10:00
accountIds : ImmutablePropTypes . list ,
2020-04-05 03:02:10 +10:00
locked : PropTypes . bool ,
domain : PropTypes . string ,
2017-05-21 01:31:47 +10:00
intl : PropTypes . object . isRequired ,
2019-07-19 17:25:22 +10:00
multiColumn : PropTypes . bool ,
2017-05-12 22:44:10 +10:00
} ;
2016-12-27 07:33:51 +11:00
componentWillMount ( ) {
this . props . dispatch ( fetchFollowRequests ( ) ) ;
2017-04-22 04:05:35 +10:00
}
2016-12-27 07:33:51 +11:00
2018-08-27 00:39:37 +10:00
handleLoadMore = debounce ( ( ) => {
this . props . dispatch ( expandFollowRequests ( ) ) ;
} , 300 , { leading : true } ) ;
2016-12-27 07:33:51 +11:00
render ( ) {
2021-07-13 23:45:17 +10:00
const { intl , accountIds , hasMore , multiColumn , locked , domain , isLoading } = this . props ;
2016-12-27 07:33:51 +11:00
if ( ! accountIds ) {
return (
< Column >
< LoadingIndicator / >
< / C o l u m n >
) ;
}
2018-08-27 00:39:37 +10:00
const emptyMessage = < FormattedMessage id = 'empty_column.follow_requests' defaultMessage = "You don't have any follow requests yet. When you receive one, it will show up here." / > ;
2020-04-05 03:02:10 +10:00
const unlockedPrependMessage = locked ? null : (
< div className = 'follow_requests-unlocked_explanation' >
< FormattedMessage
id = 'follow_requests.unlocked_explanation'
defaultMessage = 'Even though your account is not locked, the {domain} staff thought you might want to review follow requests from these accounts manually.'
values = { { domain : domain } }
/ >
< / d i v >
) ;
2018-08-27 00:39:37 +10:00
2016-12-27 07:33:51 +11:00
return (
2019-08-02 03:17:17 +10:00
< Column bindToDocument = { ! multiColumn } icon = 'user-plus' heading = { intl . formatMessage ( messages . heading ) } >
2017-01-31 01:22:04 +11:00
< ColumnBackButtonSlim / >
2018-08-27 00:39:37 +10:00
< ScrollableList
scrollKey = 'follow_requests'
onLoadMore = { this . handleLoadMore }
2019-02-16 21:56:09 +11:00
hasMore = { hasMore }
2020-04-12 21:38:00 +10:00
isLoading = { isLoading }
2018-08-27 00:39:37 +10:00
emptyMessage = { emptyMessage }
2019-07-19 17:25:22 +10:00
bindToDocument = { ! multiColumn }
2020-04-05 03:02:10 +10:00
prepend = { unlockedPrependMessage }
2018-08-27 00:39:37 +10:00
>
{ accountIds . map ( id =>
2020-03-09 02:02:36 +11:00
< AccountAuthorizeContainer key = { id } id = { id } / > ,
2018-08-27 00:39:37 +10:00
) }
< / S c r o l l a b l e L i s t >
2022-10-20 23:35:29 +11:00
< Helmet >
< meta name = 'robots' content = 'noindex' / >
< / H e l m e t >
2016-12-27 07:33:51 +11:00
< / C o l u m n >
) ;
}
2017-04-22 04:05:35 +10:00
2017-05-12 22:44:10 +10:00
}