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

76 lines
2.2 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
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'
2020-04-28 06:33:58 +01:00
class StatusReposts extends ImmutablePureComponent {
componentWillMount () {
this.props.dispatch(fetchReposts(this.props.statusId))
this.props.dispatch(fetchStatus(this.props.statusId))
}
componentWillReceiveProps(nextProps) {
if (nextProps.statusId !== this.props.statusId && nextProps.statusId) {
this.props.dispatch(fetchReposts(nextProps.statusId))
this.props.dispatch(fetchStatus(nextProps.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-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
</ScrollableList>
2020-03-04 22:50:15 +00:00
)
}
}
const mapStateToProps = (state, props) => {
const statusId = props.params ? props.params.statusId : props.statusId
const getStatus = makeGetStatus()
const status = getStatus(state, {
id: statusId,
// username: props.params.username,
})
return {
status,
statusId,
accountIds: state.getIn(['user_lists', 'reblogged_by', statusId]),
}
}
StatusReposts.propTypes = {
accountIds: ImmutablePropTypes.list,
dispatch: PropTypes.func.isRequired,
status: ImmutablePropTypes.map,
statusId: PropTypes.string.isRequired,
}
export default connect(mapStateToProps)(StatusReposts)