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';
|
|
|
|
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import { connect } from 'react-redux';
|
2023-05-28 14:38:10 +00:00
|
|
|
|
2022-10-09 09:23:06 +00:00
|
|
|
import { fetchSuggestions, dismissSuggestion } from 'flavours/glitch/actions/suggestions';
|
2023-06-13 17:26:25 +00:00
|
|
|
import { LoadingIndicator } from 'flavours/glitch/components/loading_indicator';
|
2023-05-28 14:38:10 +00:00
|
|
|
import AccountCard from 'flavours/glitch/features/directory/components/account_card';
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
const mapStateToProps = state => ({
|
|
|
|
suggestions: state.getIn(['suggestions', 'items']),
|
|
|
|
isLoading: state.getIn(['suggestions', 'isLoading']),
|
|
|
|
});
|
|
|
|
|
2023-05-28 12:18:23 +00:00
|
|
|
class Suggestions extends PureComponent {
|
2022-02-24 23:34:33 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
isLoading: PropTypes.bool,
|
|
|
|
suggestions: ImmutablePropTypes.list,
|
|
|
|
dispatch: PropTypes.func.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(fetchSuggestions(true));
|
|
|
|
}
|
|
|
|
|
2022-10-09 09:23:06 +00:00
|
|
|
handleDismiss = (accountId) => {
|
|
|
|
const { dispatch } = this.props;
|
|
|
|
dispatch(dismissSuggestion(accountId));
|
2023-02-03 19:52:07 +00:00
|
|
|
};
|
2022-10-09 09:23:06 +00:00
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
render () {
|
|
|
|
const { isLoading, suggestions } = this.props;
|
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
if (!isLoading && suggestions.isEmpty()) {
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-02-24 23:34:33 +00:00
|
|
|
return (
|
2022-03-07 10:38:52 +00:00
|
|
|
<div className='explore__suggestions'>
|
|
|
|
{isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => (
|
2022-10-09 09:23:06 +00:00
|
|
|
<AccountCard key={suggestion.get('account')} id={suggestion.get('account')} onDismiss={suggestion.get('source') === 'past_interactions' ? this.handleDismiss : null} />
|
2022-02-24 23:34:33 +00:00
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-03-24 22:15:25 +00:00
|
|
|
|
|
|
|
export default connect(mapStateToProps)(Suggestions);
|