2017-04-21 18:05:35 +00:00
import PropTypes from 'prop-types' ;
2023-05-23 15:15:17 +00:00
import { defineMessages , injectIntl , FormattedMessage } from 'react-intl' ;
import { Helmet } from 'react-helmet' ;
2016-11-16 16:20:52 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2023-05-23 15:15:17 +00:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import { connect } from 'react-redux' ;
2023-08-29 12:42:20 +00:00
import { debounce } from 'lodash' ;
2024-01-12 20:16:48 +00:00
import RefreshIcon from 'mastodon/../material-icons/400-24px/refresh.svg?react' ;
2023-05-23 15:15:17 +00:00
import { Icon } from 'mastodon/components/icon' ;
2023-08-29 12:42:20 +00:00
import { fetchReblogs , expandReblogs } from '../../actions/interactions' ;
2023-05-23 15:15:17 +00:00
import ColumnHeader from '../../components/column_header' ;
2023-06-13 17:26:25 +00:00
import { LoadingIndicator } from '../../components/loading_indicator' ;
2023-05-23 15:15:17 +00:00
import ScrollableList from '../../components/scrollable_list' ;
2016-11-20 18:39:18 +00:00
import AccountContainer from '../../containers/account_container' ;
2016-11-16 16:20:52 +00:00
import Column from '../ui/components/column' ;
2019-10-01 02:57:27 +00:00
const messages = defineMessages ( {
refresh : { id : 'refresh' , defaultMessage : 'Refresh' } ,
} ) ;
2016-11-03 19:16:14 +00:00
const mapStateToProps = ( state , props ) => ( {
2023-08-29 12:42:20 +00:00
accountIds : state . getIn ( [ 'user_lists' , 'reblogged_by' , props . params . statusId , 'items' ] ) ,
hasMore : ! ! state . getIn ( [ 'user_lists' , 'reblogged_by' , props . params . statusId , 'next' ] ) ,
isLoading : state . getIn ( [ 'user_lists' , 'reblogged_by' , props . params . statusId , 'isLoading' ] , true ) ,
2016-11-03 19:16:14 +00:00
} ) ;
2018-09-14 15:59:48 +00:00
class Reblogs extends ImmutablePureComponent {
2016-11-03 19:16:14 +00:00
2017-05-12 12:44:10 +00:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
2017-05-20 15:31:47 +00:00
accountIds : ImmutablePropTypes . list ,
2023-08-29 12:42:20 +00:00
hasMore : PropTypes . bool ,
isLoading : PropTypes . bool ,
2019-07-19 07:25:22 +00:00
multiColumn : PropTypes . bool ,
2019-10-01 02:57:27 +00:00
intl : PropTypes . object . isRequired ,
2017-05-12 12:44:10 +00:00
} ;
2023-05-10 07:05:32 +00:00
UNSAFE _componentWillMount ( ) {
2019-09-29 14:27:00 +00:00
if ( ! this . props . accountIds ) {
this . props . dispatch ( fetchReblogs ( this . props . params . statusId ) ) ;
}
2023-10-09 11:38:29 +00:00
}
2016-11-03 19:16:14 +00:00
2019-10-01 02:57:27 +00:00
handleRefresh = ( ) => {
this . props . dispatch ( fetchReblogs ( this . props . params . statusId ) ) ;
2023-01-30 00:45:35 +00:00
} ;
2019-10-01 02:57:27 +00:00
2023-08-29 12:42:20 +00:00
handleLoadMore = debounce ( ( ) => {
this . props . dispatch ( expandReblogs ( this . props . params . statusId ) ) ;
} , 300 , { leading : true } ) ;
2016-11-03 19:16:14 +00:00
render ( ) {
2023-08-29 12:42:20 +00:00
const { intl , accountIds , hasMore , isLoading , multiColumn } = this . props ;
2016-11-03 19:16:14 +00:00
if ( ! accountIds ) {
return (
< Column >
< LoadingIndicator / >
< / Column >
) ;
}
2022-04-28 22:24:31 +00:00
const emptyMessage = < FormattedMessage id = 'status.reblogs.empty' defaultMessage = 'No one has boosted this post yet. When someone does, they will show up here.' / > ;
2018-08-26 14:39:37 +00:00
2016-11-03 19:16:14 +00:00
return (
2019-10-01 02:57:27 +00:00
< Column bindToDocument = { ! multiColumn } >
< ColumnHeader
showBackButton
multiColumn = { multiColumn }
extraButton = { (
2023-10-24 17:45:08 +00:00
< button type = 'button' className = 'column-header__button' title = { intl . formatMessage ( messages . refresh ) } aria - label = { intl . formatMessage ( messages . refresh ) } onClick = { this . handleRefresh } > < Icon id = 'refresh' icon = { RefreshIcon } / > < / button >
2019-10-01 02:57:27 +00:00
) }
/ >
2016-11-03 19:16:14 +00:00
2018-08-26 14:39:37 +00:00
< ScrollableList
scrollKey = 'reblogs'
2023-08-29 12:42:20 +00:00
onLoadMore = { this . handleLoadMore }
hasMore = { hasMore }
isLoading = { isLoading }
2018-08-26 14:39:37 +00:00
emptyMessage = { emptyMessage }
2019-07-19 07:25:22 +00:00
bindToDocument = { ! multiColumn }
2018-08-26 14:39:37 +00:00
>
{ accountIds . map ( id =>
2020-03-08 15:02:36 +00:00
< AccountContainer key = { id } id = { id } withNote = { false } / > ,
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-11-03 19:16:14 +00:00
< / Column >
) ;
}
2017-04-21 18:05:35 +00:00
}
2023-03-24 02:17:53 +00:00
export default connect ( mapStateToProps ) ( injectIntl ( Reblogs ) ) ;