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-11-16 16:20:52 +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' ;
2023-08-29 12:42:20 +00:00
import { debounce } from 'lodash' ;
import { fetchReblogs , expandReblogs } from 'flavours/glitch/actions/interactions' ;
2019-04-08 15:56:25 +00:00
import ColumnHeader from 'flavours/glitch/components/column_header' ;
2023-05-28 14:38:10 +00:00
import { Icon } from 'flavours/glitch/components/icon' ;
2023-06-13 17:26:25 +00:00
import { LoadingIndicator } from 'flavours/glitch/components/loading_indicator' ;
2018-08-26 14:39:37 +00:00
import ScrollableList from 'flavours/glitch/components/scrollable_list' ;
2023-05-28 14:38:10 +00:00
import AccountContainer from 'flavours/glitch/containers/account_container' ;
import Column from 'flavours/glitch/features/ui/components/column' ;
2019-04-08 15:56:25 +00:00
const messages = defineMessages ( {
heading : { id : 'column.reblogged_by' , defaultMessage : 'Boosted by' } ,
2019-10-01 02:57:27 +00:00
refresh : { id : 'refresh' , defaultMessage : 'Refresh' } ,
2019-04-08 15:56:25 +00:00
} ) ;
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
} ) ;
2019-09-09 13:16:08 +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-04-08 15:56:25 +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 ) ) ;
}
2017-04-21 18:05:35 +00:00
}
2016-11-03 19:16:14 +00:00
2019-04-08 15:56:25 +00:00
handleHeaderClick = ( ) => {
this . column . scrollTop ( ) ;
2023-02-03 19:52:07 +00:00
} ;
2019-04-08 15:56:25 +00:00
setRef = c => {
this . column = c ;
2023-02-03 19:52:07 +00:00
} ;
2019-04-08 15:56:25 +00:00
2019-10-01 02:57:27 +00:00
handleRefresh = ( ) => {
this . props . dispatch ( fetchReblogs ( this . props . params . statusId ) ) ;
2023-02-03 19:52:07 +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-05-03 08:59:23 +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-04-08 15:56:25 +00:00
< Column ref = { this . setRef } >
< ColumnHeader
icon = 'retweet'
title = { intl . formatMessage ( messages . heading ) }
onClick = { this . handleHeaderClick }
showBackButton
2019-08-01 17:17:17 +00:00
multiColumn = { multiColumn }
2019-10-01 02:57:27 +00:00
extraButton = { (
< button className = 'column-header__button' title = { intl . formatMessage ( messages . refresh ) } aria - label = { intl . formatMessage ( messages . refresh ) } onClick = { this . handleRefresh } > < Icon id = 'refresh' / > < / button >
) }
2019-04-08 15:56:25 +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 22:15:25 +00:00
export default connect ( mapStateToProps ) ( injectIntl ( Reblogs ) ) ;