gab-social/app/javascript/gabsocial/features/reposts.js

71 lines
2.1 KiB
JavaScript
Raw Normal View History

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'
import AccountContainer from '../containers/account_container'
import ColumnIndicator from '../components/column_indicator'
import ScrollableList from '../components/scrollable_list'
const mapStateToProps = (state, props) => {
2020-03-04 22:50:15 +00:00
const getStatus = makeGetStatus()
const status = getStatus(state, {
id: props.params.statusId,
username: props.params.username,
2020-03-04 22:50:15 +00:00
})
return {
status,
accountIds: state.getIn(['user_lists', 'reblogged_by', props.params.statusId]),
2020-03-04 22:50:15 +00:00
}
}
2020-02-25 16:04:44 +00:00
export default
@connect(mapStateToProps)
2020-03-04 22:26:01 +00:00
class Reposts extends ImmutablePureComponent {
static propTypes = {
params: PropTypes.object.isRequired,
dispatch: PropTypes.func.isRequired,
accountIds: ImmutablePropTypes.list,
status: ImmutablePropTypes.map,
2020-03-04 22:50:15 +00: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))
}
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))
}
}
render () {
2020-03-04 22:50:15 +00:00
const { accountIds, status } = this.props
if (!accountIds) {
2020-03-04 22:26:01 +00:00
return <ColumnIndicator type='loading' />
} else if (!status) {
2020-03-04 22:26:01 +00:00
return <ColumnIndicator type='missing' />
}
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-03-24 04:39:12 +00:00
<AccountContainer key={id} id={id} />
2020-03-04 22:26:01 +00:00
)
}
2020-02-24 23:25:55 +00:00
</ScrollableList>
2020-03-04 22:50:15 +00:00
)
}
}