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.
36 lines
706 B
36 lines
706 B
import { connect } from 'react-redux';
|
|
import {
|
|
changeSearch,
|
|
clearSearchSuggestions,
|
|
fetchSearchSuggestions,
|
|
resetSearch
|
|
} from '../../../actions/search';
|
|
import Search from '../components/search';
|
|
|
|
const mapStateToProps = state => ({
|
|
suggestions: state.getIn(['search', 'suggestions']),
|
|
value: state.getIn(['search', 'value'])
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onChange (value) {
|
|
dispatch(changeSearch(value));
|
|
},
|
|
|
|
onClear () {
|
|
dispatch(clearSearchSuggestions());
|
|
},
|
|
|
|
onFetch (value) {
|
|
dispatch(fetchSearchSuggestions(value));
|
|
},
|
|
|
|
onReset () {
|
|
dispatch(resetSearch());
|
|
}
|
|
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Search);
|