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

36 lines
648 B
JavaScript
Raw Normal View History

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