blob: 216a5d2550f382826c987c5ac3cc39fb32646efa (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
const GitBook = require('gitbook-core');
const { React } = GitBook;
const search = require('../actions/search');
const ESCAPE = 27;
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));
},
/**
* On Escape key down, clear the search field
*/
onKeyDown(e) {
const { query } = this.props;
if (e.keyCode == ESCAPE && query != '') {
e.preventDefault();
e.stopPropagation();
this.clearSearch();
}
},
clearSearch() {
this.props.dispatch(search.query(''));
},
render() {
const { i18n, query } = this.props;
let clear;
if (query != '') {
clear = (
<span className="Search-Clear"
onClick={this.clearSearch}>
✕
</span>
);
// clear = <GitBook.Icon id="x" onClick={this.clearSearch}/>;
}
return (
<div className="Search-Input">
<input
type="text"
onKeyDown={this.onKeyDown}
value={query}
placeholder={i18n.t('SEARCH_PLACEHOLDER')}
onChange={this.onChange}
/>
{ clear }
</div>
);
}
});
const mapStateToProps = state => {
const { query } = state.search;
return { query };
};
module.exports = GitBook.connect(SearchInput, mapStateToProps);
|