2020-08-17 21:07:16 +01:00
import React from 'react'
2020-08-17 21:39:25 +01:00
import { connect } from 'react-redux'
2020-03-04 22:50:15 +00:00
import ImmutablePureComponent from 'react-immutable-pure-component'
import ImmutablePropTypes from 'react-immutable-proptypes'
import { FormattedMessage } from 'react-intl'
import { fetchReposts } from '../actions/interactions'
import { fetchStatus } from '../actions/statuses'
import { makeGetStatus } from '../selectors'
2020-04-11 23:29:19 +01:00
import Account from '../components/account'
2020-03-04 22:50:15 +00:00
import ColumnIndicator from '../components/column_indicator'
import ScrollableList from '../components/scrollable_list'
2019-08-07 06:02:36 +01:00
const mapStateToProps = ( state , props ) => {
2020-03-04 22:50:15 +00:00
const getStatus = makeGetStatus ( )
2019-08-07 06:02:36 +01:00
const status = getStatus ( state , {
id : props . params . statusId ,
username : props . params . username ,
2020-03-04 22:50:15 +00:00
} )
2019-08-07 06:02:36 +01:00
return {
status ,
accountIds : state . getIn ( [ 'user_lists' , 'reblogged_by' , props . params . statusId ] ) ,
2020-03-04 22:50:15 +00:00
}
}
2019-08-07 06:02:36 +01:00
2020-02-25 16:04:44 +00:00
export default
@ connect ( mapStateToProps )
2020-04-28 06:33:58 +01:00
class StatusReposts 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 ,
2020-03-04 22:50:15 +00:00
}
2019-08-07 06:02:36 +01:00
componentWillMount ( ) {
2020-03-04 22:50:15 +00:00
this . props . dispatch ( fetchReposts ( this . props . params . statusId ) )
this . props . dispatch ( fetchStatus ( this . props . params . statusId ) )
2019-08-07 06:02:36 +01:00
}
componentWillReceiveProps ( nextProps ) {
if ( nextProps . params . statusId !== this . props . params . statusId && nextProps . params . statusId ) {
2020-03-04 22:50:15 +00:00
this . props . dispatch ( fetchReposts ( nextProps . params . statusId ) )
this . props . dispatch ( fetchStatus ( nextProps . params . statusId ) )
2019-08-07 06:02:36 +01:00
}
}
render ( ) {
2020-03-04 22:50:15 +00:00
const { accountIds , status } = this . props
2019-08-07 06:02:36 +01:00
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-03-04 22:50:15 +00:00
emptyMessage = { < FormattedMessage id = 'status.reposts.empty' defaultMessage = 'No one has reposted this gab yet. When someone does, they will show up here.' / > }
2020-02-24 23:25:55 +00:00
>
2020-03-04 22:26:01 +00:00
{
accountIds . map ( id =>
2020-04-11 23:29:19 +01:00
< Account key = { id } id = { id } / >
2020-03-04 22:26:01 +00:00
)
}
2020-02-24 23:25:55 +00:00
< / S c r o l l a b l e L i s t >
2020-03-04 22:50:15 +00:00
)
2019-08-07 06:02:36 +01:00
}
}