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, focusChange } from '../../actions/search'; import IconFromUserType from '../presentational/IconFromUserType'; import Result from '../presentational/Result'; const userShape = { value: PropTypes.string.isRequired, type: PropTypes.string.isRequired, }; const Search = ({ onInputChange, onFocus, onBlur, hasFocus, value, results, exactMatch, }) => (
0 })}>
{/* Show the icon from the exact match if there is an exact match, otherwise show the search icon. */}
} />
{results.map(user => ( ))}
); Search.propTypes = { onInputChange: PropTypes.func.isRequired, onFocus: PropTypes.func.isRequired, onBlur: PropTypes.func.isRequired, hasFocus: PropTypes.bool.isRequired, value: PropTypes.string.isRequired, results: PropTypes.arrayOf(PropTypes.shape(userShape)).isRequired, exactMatch: PropTypes.shape(userShape), }; Search.defaultProps = { exactMatch: null, }; const mapStateToProps = state => ({ results: state.search.results, value: state.search.input, hasFocus: state.search.hasFocus, exactMatch: state.search.exactMatch, }); const mapDispatchToProps = dispatch => ({ onInputChange: (event) => { dispatch(inputChange(event.target.value)); }, onFocus: () => { dispatch(focusChange(true)); document.querySelector('#search__input').select(); }, onBlur: () => { dispatch(focusChange(false)); }, }); export default connect(mapStateToProps, mapDispatchToProps)(Search);