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
651 B

10 years ago
import { connect } from 'react-redux';
import {
changeSearch,
9 years ago
clearSearch,
submitSearch,
showSearch,
10 years ago
} from '../../../actions/search';
import Search from '../components/search';
const mapStateToProps = state => ({
value: state.getIn(['search', 'value']),
submitted: state.getIn(['search', 'submitted']),
10 years ago
});
const mapDispatchToProps = dispatch => ({
onChange (value) {
dispatch(changeSearch(value));
},
onClear () {
9 years ago
dispatch(clearSearch());
10 years ago
},
9 years ago
onSubmit () {
dispatch(submitSearch());
10 years ago
},
9 years ago
onShow () {
dispatch(showSearch());
},
10 years ago
});
export default connect(mapStateToProps, mapDispatchToProps)(Search);