2022-02-25 08:34:33 +09:00
import PropTypes from 'prop-types' ;
2023-05-24 00:15:17 +09:00
import { PureComponent } from 'react' ;
2022-02-25 08:34:33 +09:00
import { FormattedMessage } from 'react-intl' ;
2023-05-24 00:15:17 +09:00
import ImmutablePropTypes from 'react-immutable-proptypes' ;
2022-02-25 08:34:33 +09:00
import { connect } from 'react-redux' ;
2023-05-24 00:15:17 +09:00
2022-04-07 05:53:29 +09:00
import { debounce } from 'lodash' ;
2023-05-24 00:15:17 +09:00
import { fetchTrendingStatuses , expandTrendingStatuses } from 'mastodon/actions/trends' ;
2022-10-09 13:08:37 +09:00
import DismissableBanner from 'mastodon/components/dismissable_banner' ;
2023-05-24 00:15:17 +09:00
import StatusList from 'mastodon/components/status_list' ;
2023-06-23 00:54:43 +09:00
import { getStatusList } from 'mastodon/selectors' ;
2022-02-25 08:34:33 +09:00
const mapStateToProps = state => ( {
2023-06-23 00:54:43 +09:00
statusIds : getStatusList ( state , 'trending' ) ,
2022-02-25 08:34:33 +09:00
isLoading : state . getIn ( [ 'status_lists' , 'trending' , 'isLoading' ] , true ) ,
2022-04-07 05:53:29 +09:00
hasMore : ! ! state . getIn ( [ 'status_lists' , 'trending' , 'next' ] ) ,
2022-02-25 08:34:33 +09:00
} ) ;
2023-05-23 17:52:27 +09:00
class Statuses extends PureComponent {
2022-02-25 08:34:33 +09:00
static propTypes = {
statusIds : ImmutablePropTypes . list ,
isLoading : PropTypes . bool ,
2022-04-07 05:53:29 +09:00
hasMore : PropTypes . bool ,
2022-02-25 08:34:33 +09:00
multiColumn : PropTypes . bool ,
dispatch : PropTypes . func . isRequired ,
} ;
componentDidMount ( ) {
const { dispatch } = this . props ;
dispatch ( fetchTrendingStatuses ( ) ) ;
}
2022-04-07 05:53:29 +09:00
handleLoadMore = debounce ( ( ) => {
const { dispatch } = this . props ;
dispatch ( expandTrendingStatuses ( ) ) ;
2023-01-30 09:45:35 +09:00
} , 300 , { leading : true } ) ;
2022-04-07 05:53:29 +09:00
2022-02-25 08:34:33 +09:00
render ( ) {
2022-04-07 05:53:29 +09:00
const { isLoading , hasMore , statusIds , multiColumn } = this . props ;
2022-02-25 08:34:33 +09:00
const emptyMessage = < FormattedMessage id = 'empty_column.explore_statuses' defaultMessage = 'Nothing is trending right now. Check back later!' / > ;
return (
2022-10-09 13:08:37 +09:00
< >
< DismissableBanner id = 'explore/statuses' >
2023-06-23 06:48:40 +09: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 13:08:37 +09:00
< / DismissableBanner >
< StatusList
trackScroll
statusIds = { statusIds }
scrollKey = 'explore-statuses'
hasMore = { hasMore }
isLoading = { isLoading }
onLoadMore = { this . handleLoadMore }
emptyMessage = { emptyMessage }
bindToDocument = { ! multiColumn }
withCounters
/ >
< / >
2022-02-25 08:34:33 +09:00
) ;
}
}
2023-03-24 11:17:53 +09:00
export default connect ( mapStateToProps ) ( Statuses ) ;