2022-02-24 23:34:33 +00:00
import PropTypes from 'prop-types' ;
2023-05-28 14:38:10 +00:00
import { PureComponent } from 'react' ;
2022-02-24 23:34:33 +00:00
import { FormattedMessage } from 'react-intl' ;
2023-05-28 14:38:10 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2022-02-24 23:34:33 +00:00
import { connect } from 'react-redux' ;
2023-05-28 14:38:10 +00:00
2022-04-06 20:53:29 +00:00
import { debounce } from 'lodash' ;
2023-05-28 14:38:10 +00:00
import { fetchTrendingStatuses , expandTrendingStatuses } from 'flavours/glitch/actions/trends' ;
2022-10-09 04:08:37 +00:00
import DismissableBanner from 'flavours/glitch/components/dismissable_banner' ;
2023-05-28 14:38:10 +00:00
import StatusList from 'flavours/glitch/components/status_list' ;
2023-06-22 21:48:40 +00:00
import { getStatusList } from 'flavours/glitch/selectors' ;
2022-02-24 23:34:33 +00:00
const mapStateToProps = state => ( {
2023-06-22 21:48:40 +00:00
statusIds : getStatusList ( state , 'trending' ) ,
2022-02-24 23:34:33 +00:00
isLoading : state . getIn ( [ 'status_lists' , 'trending' , 'isLoading' ] , true ) ,
2022-04-06 20:53:29 +00:00
hasMore : ! ! state . getIn ( [ 'status_lists' , 'trending' , 'next' ] ) ,
2022-02-24 23:34:33 +00:00
} ) ;
2023-05-28 12:18:23 +00:00
class Statuses extends PureComponent {
2022-02-24 23:34:33 +00:00
static propTypes = {
statusIds : ImmutablePropTypes . list ,
isLoading : PropTypes . bool ,
2022-04-06 20:53:29 +00:00
hasMore : PropTypes . bool ,
2022-02-24 23:34:33 +00:00
multiColumn : PropTypes . bool ,
dispatch : PropTypes . func . isRequired ,
} ;
componentDidMount ( ) {
const { dispatch } = this . props ;
dispatch ( fetchTrendingStatuses ( ) ) ;
}
2022-04-06 20:53:29 +00:00
handleLoadMore = debounce ( ( ) => {
const { dispatch } = this . props ;
dispatch ( expandTrendingStatuses ( ) ) ;
2023-02-03 19:52:07 +00:00
} , 300 , { leading : true } ) ;
2022-04-06 20:53:29 +00:00
2022-02-24 23:34:33 +00:00
render ( ) {
2022-04-06 20:53:29 +00:00
const { isLoading , hasMore , statusIds , multiColumn } = this . props ;
2022-02-24 23:34:33 +00:00
const emptyMessage = < FormattedMessage id = 'empty_column.explore_statuses' defaultMessage = 'Nothing is trending right now. Check back later!' / > ;
return (
2022-10-09 04:08:37 +00:00
< >
< DismissableBanner id = 'explore/statuses' >
2023-06-22 21:48:40 +00:00
< FormattedMessage id = 'dismissable_banner.explore_statuses' defaultMessage = 'These are posts from across the social web that are gaining traction today. Newer posts with more boosts and favourites are ranked higher.' / >
2022-10-09 04:08:37 +00:00
< / DismissableBanner >
< StatusList
trackScroll
statusIds = { statusIds }
scrollKey = 'explore-statuses'
hasMore = { hasMore }
isLoading = { isLoading }
onLoadMore = { this . handleLoadMore }
emptyMessage = { emptyMessage }
bindToDocument = { ! multiColumn }
withCounters
/ >
< / >
2022-02-24 23:34:33 +00:00
) ;
}
}
2023-03-24 22:15:25 +00:00
export default connect ( mapStateToProps ) ( Statuses ) ;