You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
import React from 'react'; |
|
import PropTypes from 'prop-types'; |
|
import ImmutablePropTypes from 'react-immutable-proptypes'; |
|
import AccountCard from 'mastodon/features/directory/components/account_card'; |
|
import LoadingIndicator from 'mastodon/components/loading_indicator'; |
|
import { connect } from 'react-redux'; |
|
import { fetchSuggestions } from 'mastodon/actions/suggestions'; |
|
|
|
const mapStateToProps = state => ({ |
|
suggestions: state.getIn(['suggestions', 'items']), |
|
isLoading: state.getIn(['suggestions', 'isLoading']), |
|
}); |
|
|
|
export default @connect(mapStateToProps) |
|
class Suggestions extends React.PureComponent { |
|
|
|
static propTypes = { |
|
isLoading: PropTypes.bool, |
|
suggestions: ImmutablePropTypes.list, |
|
dispatch: PropTypes.func.isRequired, |
|
}; |
|
|
|
componentDidMount () { |
|
const { dispatch } = this.props; |
|
dispatch(fetchSuggestions(true)); |
|
} |
|
|
|
render () { |
|
const { isLoading, suggestions } = this.props; |
|
|
|
return ( |
|
<div className='explore__suggestions'> |
|
{isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => ( |
|
<AccountCard key={suggestion.get('account')} id={suggestion.get('account')} /> |
|
))} |
|
</div> |
|
); |
|
} |
|
|
|
}
|
|
|