2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2023-05-28 14:38:10 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { Helmet } from 'react-helmet' ;
2016-12-26 20:33:51 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2023-05-28 14:38:10 +00:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import { connect } from 'react-redux' ;
2018-08-26 14:39:37 +00:00
import { debounce } from 'lodash' ;
2023-05-28 14:38:10 +00:00
2023-11-15 11:01:51 +00:00
import { fetchFollowRequests , expandFollowRequests } from '../../actions/accounts' ;
import ColumnBackButtonSlim from '../../components/column_back_button_slim' ;
import ScrollableList from '../../components/scrollable_list' ;
import { me } from '../../initial_state' ;
import Column from '../ui/components/column' ;
2023-05-28 14:38:10 +00:00
import AccountAuthorizeContainer from './containers/account_authorize_container' ;
2016-12-26 20:33:51 +00:00
const messages = defineMessages ( {
2017-05-20 15:31:47 +00:00
heading : { id : 'column.follow_requests' , defaultMessage : 'Follow requests' } ,
2016-12-26 20:33:51 +00:00
} ) ;
const mapStateToProps = state => ( {
2017-05-20 15:31:47 +00:00
accountIds : state . getIn ( [ 'user_lists' , 'follow_requests' , 'items' ] ) ,
2020-04-12 11:38:00 +00:00
isLoading : state . getIn ( [ 'user_lists' , 'follow_requests' , 'isLoading' ] , true ) ,
2019-02-16 10:56:09 +00:00
hasMore : ! ! state . getIn ( [ 'user_lists' , 'follow_requests' , 'next' ] ) ,
2020-04-04 17:02:10 +00:00
locked : ! ! state . getIn ( [ 'accounts' , me , 'locked' ] ) ,
domain : state . getIn ( [ 'meta' , 'domain' ] ) ,
2016-12-26 20:33:51 +00:00
} ) ;
2019-09-09 13:16:08 +00:00
class FollowRequests extends ImmutablePureComponent {
2016-12-26 20:33:51 +00:00
2017-05-12 12:44:10 +00:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
2019-02-16 10:56:09 +00:00
hasMore : PropTypes . bool ,
2020-04-12 11:38:00 +00:00
isLoading : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
accountIds : ImmutablePropTypes . list ,
2020-04-04 17:02:10 +00:00
locked : PropTypes . bool ,
domain : PropTypes . string ,
2017-05-20 15:31:47 +00:00
intl : PropTypes . object . isRequired ,
2019-07-19 07:25:22 +00:00
multiColumn : PropTypes . bool ,
2017-05-12 12:44:10 +00:00
} ;
2016-12-26 20:33:51 +00:00
2023-05-10 07:05:32 +00:00
UNSAFE _componentWillMount ( ) {
2016-12-26 20:33:51 +00:00
this . props . dispatch ( fetchFollowRequests ( ) ) ;
2017-04-21 18:05:35 +00:00
}
2016-12-26 20:33:51 +00:00
2018-08-26 14:39:37 +00:00
handleLoadMore = debounce ( ( ) => {
this . props . dispatch ( expandFollowRequests ( ) ) ;
} , 300 , { leading : true } ) ;
2016-12-26 20:33:51 +00:00
render ( ) {
2020-04-12 11:38:00 +00:00
const { intl , accountIds , hasMore , multiColumn , locked , domain , isLoading } = this . props ;
2016-12-26 20:33:51 +00:00
2018-08-26 14:39:37 +00: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." / > ;
2023-02-06 15:50:08 +00:00
const unlockedPrependMessage = ! locked && accountIds . size > 0 && (
2020-04-04 17:02:10 +00:00
< 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 } }
/ >
< / div >
) ;
2018-08-26 14:39:37 +00:00
2016-12-26 20:33:51 +00:00
return (
2023-12-09 19:26:57 +00:00
< Column bindToDocument = { ! multiColumn } icon = 'user-plus' heading = { intl . formatMessage ( messages . heading ) } >
2017-01-30 14:22:04 +00:00
< ColumnBackButtonSlim / >
2018-08-26 14:39:37 +00:00
< ScrollableList
scrollKey = 'follow_requests'
onLoadMore = { this . handleLoadMore }
2019-02-16 10:56:09 +00:00
hasMore = { hasMore }
2020-04-12 11:38:00 +00:00
isLoading = { isLoading }
2023-02-06 15:50:08 +00:00
showLoading = { isLoading && accountIds . size === 0 }
2018-08-26 14:39:37 +00:00
emptyMessage = { emptyMessage }
2019-07-19 07:25:22 +00:00
bindToDocument = { ! multiColumn }
2020-04-04 17:02:10 +00:00
prepend = { unlockedPrependMessage }
2018-08-26 14:39:37 +00:00
>
{ accountIds . map ( id =>
2020-03-08 15:02:36 +00:00
< AccountAuthorizeContainer key = { id } id = { id } / > ,
2018-08-26 14:39:37 +00:00
) }
< / ScrollableList >
2022-10-20 12:35:29 +00:00
< Helmet >
< meta name = 'robots' content = 'noindex' / >
< / Helmet >
2016-12-26 20:33:51 +00:00
< / Column >
) ;
}
2017-04-21 18:05:35 +00:00
2017-05-12 12:44:10 +00:00
}
2023-03-24 22:15:25 +00:00
export default connect ( mapStateToProps ) ( injectIntl ( FollowRequests ) ) ;