mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-02-04 05:53:07 -05:00
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import { PureComponent } from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { fetchSuggestions } from 'mastodon/actions/suggestions';
|
|
import { LoadingIndicator } from 'mastodon/components/loading_indicator';
|
|
import { WithRouterPropTypes } from 'mastodon/utils/react_router';
|
|
|
|
import { Card } from './components/card';
|
|
|
|
const mapStateToProps = state => ({
|
|
suggestions: state.suggestions.items,
|
|
isLoading: state.suggestions.isLoading,
|
|
});
|
|
|
|
class Suggestions extends PureComponent {
|
|
|
|
static propTypes = {
|
|
isLoading: PropTypes.bool,
|
|
suggestions: PropTypes.array,
|
|
dispatch: PropTypes.func.isRequired,
|
|
...WithRouterPropTypes,
|
|
};
|
|
|
|
componentDidMount () {
|
|
const { dispatch, suggestions, history } = this.props;
|
|
|
|
// If we're navigating back to the screen, do not trigger a reload
|
|
if (history.action === 'POP' && suggestions.length > 0) {
|
|
return;
|
|
}
|
|
|
|
dispatch(fetchSuggestions());
|
|
}
|
|
|
|
render () {
|
|
const { isLoading, suggestions } = this.props;
|
|
|
|
if (!isLoading && suggestions.length === 0) {
|
|
return (
|
|
<div className='explore__suggestions scrollable scrollable--flex'>
|
|
<div className='empty-column-indicator'>
|
|
<FormattedMessage id='empty_column.explore_statuses' defaultMessage='Nothing is trending right now. Check back later!' />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='explore__suggestions scrollable' data-nosnippet>
|
|
{isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => (
|
|
<Card
|
|
key={suggestion.account_id}
|
|
id={suggestion.account_id}
|
|
source={suggestion.sources[0]}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default connect(mapStateToProps)(withRouter(Suggestions));
|