2020-08-17 21:07:16 +01:00
import React from 'react'
2020-08-17 21:59:29 +01:00
import PropTypes from 'prop-types'
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'
2020-11-25 21:22:37 +00:00
import debounce from 'lodash.debounce'
import { fetchReposts , expandReposts } from '../actions/interactions'
2020-03-04 22:50:15 +00:00
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-11-25 21:22:37 +00:00
import AccountPlaceholder from '../components/placeholder/account_placeholder'
2019-08-07 06:02:36 +01:00
2020-04-28 06:33:58 +01:00
class StatusReposts extends ImmutablePureComponent {
2019-08-07 06:02:36 +01:00
componentWillMount ( ) {
2020-08-20 21:11:39 +01:00
this . props . dispatch ( fetchReposts ( this . props . statusId ) )
2019-08-07 06:02:36 +01:00
}
componentWillReceiveProps ( nextProps ) {
2020-08-20 21:11:39 +01:00
if ( nextProps . statusId !== this . props . statusId && nextProps . statusId ) {
this . props . dispatch ( fetchReposts ( nextProps . statusId ) )
2019-08-07 06:02:36 +01:00
}
}
2020-11-25 21:22:37 +00:00
handleLoadMore = debounce ( ( ) => {
this . props . dispatch ( expandReposts ( this . props . statusId ) )
} , 300 , { leading : true } )
2019-08-07 06:02:36 +01:00
render ( ) {
2020-11-25 21:22:37 +00:00
const {
accountIds ,
isLoading ,
hasMore ,
list ,
statusId ,
} = this . props
2019-08-07 06:02:36 +01:00
2020-11-25 21:22:37 +00:00
if ( ! statusId ) {
2020-03-04 22:26:01 +00:00
return < ColumnIndicator type = 'missing' / >
2019-08-07 06:02:36 +01:00
}
2020-11-25 21:22:37 +00:00
const accountIdCount = ! ! accountIds ? accountIds . count ( ) : 0
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-11-25 21:22:37 +00:00
onLoadMore = { this . handleLoadMore }
hasMore = { hasMore }
isLoading = { isLoading && accountIdCount === 0 }
showLoading = { isLoading && accountIdCount === 0 }
placeholderComponent = { AccountPlaceholder }
placeholderCount = { 3 }
2020-02-24 23:25:55 +00:00
>
2020-03-04 22:26:01 +00:00
{
2020-11-25 21:22:37 +00:00
accountIdCount > 0 && accountIds . map ( ( id ) => (
< Account
compact
key = { ` reposted-by- ${ 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
}
}
2020-08-19 01:22:15 +01:00
const mapStateToProps = ( state , props ) => {
2020-08-20 21:11:39 +01:00
const statusId = props . params ? props . params . statusId : props . statusId
2020-08-19 01:22:15 +01:00
return {
2020-11-25 21:22:37 +00:00
accountIds : state . getIn ( [ 'user_lists' , 'reblogged_by' , statusId , 'items' ] ) ,
hasMore : ! ! state . getIn ( [ 'user_lists' , 'reblogged_by' , statusId , 'next' ] ) ,
isLoading : state . getIn ( [ 'user_lists' , 'reblogged_by' , statusId , 'isLoading' ] ) ,
2020-08-19 01:22:15 +01:00
}
}
StatusReposts . propTypes = {
accountIds : ImmutablePropTypes . list ,
2020-08-20 21:11:39 +01:00
dispatch : PropTypes . func . isRequired ,
statusId : PropTypes . string . isRequired ,
2020-08-19 01:22:15 +01:00
}
2020-11-25 21:22:37 +00:00
export default connect ( mapStateToProps ) ( StatusReposts )