mastodon/app/javascript/flavours/glitch/features/compose/containers/search_container.js

36 lines
658 B
JavaScript
Raw Normal View History

2016-11-13 06:04:18 -06:00
import { connect } from 'react-redux';
import {
changeSearch,
2017-03-31 12:59:54 -05:00
clearSearch,
submitSearch,
showSearch,
2017-12-04 01:26:40 -06:00
} from 'flavours/glitch/actions/search';
2016-11-13 06:04:18 -06:00
import Search from '../components/search';
const mapStateToProps = state => ({
2017-03-31 15:44:12 -05:00
value: state.getIn(['search', 'value']),
submitted: state.getIn(['search', 'submitted']),
2016-11-13 06:04:18 -06:00
});
const mapDispatchToProps = dispatch => ({
onChange (value) {
dispatch(changeSearch(value));
},
onClear () {
2017-03-31 12:59:54 -05:00
dispatch(clearSearch());
2016-11-13 06:04:18 -06:00
},
2017-03-31 12:59:54 -05:00
onSubmit () {
dispatch(submitSearch());
2016-11-13 06:04:18 -06:00
},
2017-03-31 12:59:54 -05:00
onShow () {
dispatch(showSearch());
},
2016-11-13 06:04:18 -06:00
});
export default connect(mapStateToProps, mapDispatchToProps)(Search);