2019-10-12 05:32:17 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
import queryString from 'query-string';
|
|
|
|
|
|
|
|
const getSearch = props => queryString.parse(props.location.search).q;
|
|
|
|
|
|
|
|
class Search extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {search: getSearch(this.props)};
|
|
|
|
this.inputRef = React.createRef();
|
|
|
|
}
|
|
|
|
|
|
|
|
searchArticles = (event) => {
|
|
|
|
const search = event.target.value;
|
|
|
|
this.setState({search: search});
|
|
|
|
if (search.length >= 3) {
|
|
|
|
const searchQuery = queryString.stringify({ 'q': search });
|
|
|
|
this.props.history.replace('/search?' + searchQuery);
|
|
|
|
} else {
|
|
|
|
this.props.history.replace('/');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
searchAgain = (event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const searchString = queryString.stringify({ 'q': event.target[0].value });
|
|
|
|
this.props.history.push('/search?' + searchString);
|
|
|
|
this.inputRef.current.blur();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const search = this.state.search;
|
|
|
|
|
|
|
|
return (
|
2019-11-08 05:55:30 +00:00
|
|
|
<span className='search'>
|
|
|
|
<form onSubmit={this.searchAgain}>
|
|
|
|
<input
|
2022-07-04 04:32:27 +00:00
|
|
|
placeholder='Search...'
|
2019-11-08 05:55:30 +00:00
|
|
|
value={search}
|
|
|
|
onChange={this.searchArticles}
|
|
|
|
ref={this.inputRef}
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</span>
|
2019-10-12 05:32:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withRouter(Search);
|