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.
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import SearchResults from '../components/search_results';
|
|
|
|
import { fetchSuggestions, dismissSuggestion } from '../../../actions/suggestions';
|
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
results: state.getIn(['search', 'results']),
|
|
|
|
suggestions: state.getIn(['suggestions', 'items']),
|
|
|
|
searchTerm: state.getIn(['search', 'value']),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
fetchSuggestions: () => dispatch(fetchSuggestions()),
|
|
|
|
dismissSuggestion: account => dispatch(dismissSuggestion(account.get('id'))),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SearchResults);
|