import PropTypes from 'prop-types'; import { PureComponent } from 'react'; import { FormattedMessage } from 'react-intl'; import { withRouter } from 'react-router-dom'; import ImmutablePropTypes from 'react-immutable-proptypes'; import { connect } from 'react-redux'; import { fetchTrendingHashtags } from 'flavours/glitch/actions/trends'; import { DismissableBanner } from 'flavours/glitch/components/dismissable_banner'; import { ImmutableHashtag as Hashtag } from 'flavours/glitch/components/hashtag'; import { LoadingIndicator } from 'flavours/glitch/components/loading_indicator'; import { WithRouterPropTypes } from 'flavours/glitch/utils/react_router'; const mapStateToProps = state => ({ hashtags: state.getIn(['trends', 'tags', 'items']), isLoadingHashtags: state.getIn(['trends', 'tags', 'isLoading']), }); class Tags extends PureComponent { static propTypes = { hashtags: ImmutablePropTypes.list, isLoading: PropTypes.bool, dispatch: PropTypes.func.isRequired, ...WithRouterPropTypes, }; componentDidMount () { const { dispatch, history, hashtags } = this.props; // If we're navigating back to the screen, do not trigger a reload if (history.action === 'POP' && hashtags.size > 0) { return; } dispatch(fetchTrendingHashtags()); } render () { const { isLoading, hashtags } = this.props; const banner = ( ); if (!isLoading && hashtags.isEmpty()) { return (
{banner}
); } return (
{banner} {isLoading ? () : hashtags.map(hashtag => ( ))}
); } } export default connect(mapStateToProps)(withRouter(Tags));