blob: 22351ccb5c8ddad712d330bb040d8d68209412f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
const GitBook = require('gitbook-core');
const { React } = GitBook;
const search = require('../actions/search');
const SearchInput = React.createClass({
propTypes: {
query: React.PropTypes.string,
i18n: GitBook.PropTypes.I18n,
dispatch: GitBook.PropTypes.dispatch
},
onChange(event) {
const { dispatch } = this.props;
const { value } = event.currentTarget;
dispatch(search.query(value));
},
render() {
const { i18n, query } = this.props;
return (
<div className="Search-Input">
<input
type="text"
value={query}
placeholder={i18n.t('SEARCH_PLACEHOLDER')}
onChange={this.onChange}
/>
</div>
);
}
});
const mapStateToProps = state => {
const { query } = state.search;
return { query };
};
module.exports = GitBook.connect(SearchInput, mapStateToProps);
|