import React from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import classnames from 'classnames'; import SearchIcon from 'react-icons/lib/md/search'; import { inputChange } from '../../actions/search'; import Results from './Results'; import IconFromUserType from '../presentational/IconFromUserType'; const userShape = { value: PropTypes.string.isRequired, type: PropTypes.string.isRequired, }; class Search extends React.Component { constructor(props) { super(props); this.state = { hasFocus: false, }; this.onFocus = this.onFocus.bind(this); this.onBlur = this.onBlur.bind(this); } onFocus() { this.setState({ hasFocus: true, }); } onBlur() { this.setState({ hasFocus: false, }); } render() { const { value, selectedResult, isExactMatch, dispatch, } = this.props; const { hasFocus, } = this.state; return (
} />
dispatch(inputChange(event.target.value))} value={value} placeholder="Zoeken" onFocus={this.onFocus} onBlur={this.onBlur} />
); } } Search.propTypes = { value: PropTypes.string.isRequired, selectedResult: PropTypes.shape(userShape), isExactMatch: PropTypes.bool.isRequired, dispatch: PropTypes.func.isRequired, }; Search.defaultProps = { selectedResult: null, }; const mapStateToProps = state => ({ results: state.search.results, value: state.search.input, selectedResult: state.search.selectedResult, isExactMatch: state.search.isExactMatch, }); export default connect(mapStateToProps)(Search);