2019-08-07 06:02:36 +01:00
import ImmutablePureComponent from 'react-immutable-pure-component' ;
import ImmutablePropTypes from 'react-immutable-proptypes' ;
import { FormattedMessage } from 'react-intl' ;
2020-03-04 22:26:01 +00:00
import { fetchReposts } from '../actions/interactions' ;
import { fetchStatus } from '../actions/statuses' ;
import { makeGetStatus } from '../selectors' ;
import AccountContainer from '../containers/account_container' ;
import ColumnIndicator from '../components/column_indicator' ;
import ScrollableList from '../components/scrollable_list' ;
2019-08-07 06:02:36 +01:00
const mapStateToProps = ( state , props ) => {
const getStatus = makeGetStatus ( ) ;
const status = getStatus ( state , {
id : props . params . statusId ,
username : props . params . username ,
} ) ;
return {
status ,
accountIds : state . getIn ( [ 'user_lists' , 'reblogged_by' , props . params . statusId ] ) ,
} ;
} ;
2020-02-25 16:04:44 +00:00
export default
@ connect ( mapStateToProps )
2020-03-04 22:26:01 +00:00
class Reposts extends ImmutablePureComponent {
2019-08-07 06:02:36 +01:00
static propTypes = {
params : PropTypes . object . isRequired ,
dispatch : PropTypes . func . isRequired ,
accountIds : ImmutablePropTypes . list ,
status : ImmutablePropTypes . map ,
} ;
componentWillMount ( ) {
2020-03-04 22:26:01 +00:00
this . props . dispatch ( fetchReposts ( this . props . params . statusId ) ) ;
2019-08-07 06:02:36 +01:00
this . props . dispatch ( fetchStatus ( this . props . params . statusId ) ) ;
}
componentWillReceiveProps ( nextProps ) {
if ( nextProps . params . statusId !== this . props . params . statusId && nextProps . params . statusId ) {
2020-03-04 22:26:01 +00:00
this . props . dispatch ( fetchReposts ( nextProps . params . statusId ) ) ;
2019-08-07 06:02:36 +01:00
this . props . dispatch ( fetchStatus ( nextProps . params . statusId ) ) ;
}
}
render ( ) {
const { accountIds , status } = this . props ;
if ( ! accountIds ) {
2020-03-04 22:26:01 +00:00
return < ColumnIndicator type = 'loading' / >
2019-08-07 06:02:36 +01:00
} else if ( ! status ) {
2020-03-04 22:26:01 +00:00
return < ColumnIndicator type = 'missing' / >
2019-08-07 06:02:36 +01:00
}
return (
2020-02-24 23:25:55 +00:00
< ScrollableList
2020-03-04 22:26:01 +00:00
scrollKey = 'reposts'
2020-02-24 23:25:55 +00:00
emptyMessage = { < FormattedMessage id = 'status.reblogs.empty' defaultMessage = 'No one has reposted this gab yet. When someone does, they will show up here.' / > }
>
2020-03-04 22:26:01 +00:00
{
accountIds . map ( id =>
< AccountContainer key = { id } id = { id } withNote = { false } / >
)
}
2020-02-24 23:25:55 +00:00
< / S c r o l l a b l e L i s t >
2019-08-07 06:02:36 +01:00
) ;
}
}