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
648 B
36 lines
648 B
8 years ago
|
import { connect } from 'react-redux';
|
||
|
import {
|
||
|
changeSearch,
|
||
8 years ago
|
clearSearch,
|
||
|
submitSearch,
|
||
|
showSearch
|
||
8 years ago
|
} from '../../../actions/search';
|
||
|
import Search from '../components/search';
|
||
|
|
||
|
const mapStateToProps = state => ({
|
||
8 years ago
|
value: state.getIn(['search', 'value']),
|
||
|
submitted: state.getIn(['search', 'submitted'])
|
||
8 years ago
|
});
|
||
|
|
||
|
const mapDispatchToProps = dispatch => ({
|
||
|
|
||
|
onChange (value) {
|
||
|
dispatch(changeSearch(value));
|
||
|
},
|
||
|
|
||
|
onClear () {
|
||
8 years ago
|
dispatch(clearSearch());
|
||
8 years ago
|
},
|
||
|
|
||
8 years ago
|
onSubmit () {
|
||
|
dispatch(submitSearch());
|
||
8 years ago
|
},
|
||
|
|
||
8 years ago
|
onShow () {
|
||
|
dispatch(showSearch());
|
||
8 years ago
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
export default connect(mapStateToProps, mapDispatchToProps)(Search);
|