2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-23 10:05:04 -04:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2016-11-18 09:36:16 -05:00
|
|
|
|
|
|
|
const messages = defineMessages({
|
2017-05-20 11:31:47 -04:00
|
|
|
placeholder: { id: 'search.placeholder', defaultMessage: 'Search' },
|
2016-11-18 09:36:16 -05:00
|
|
|
});
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
@injectIntl
|
|
|
|
export default class Search extends React.PureComponent {
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
value: PropTypes.string.isRequired,
|
|
|
|
submitted: PropTypes.bool,
|
|
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
onSubmit: PropTypes.func.isRequired,
|
|
|
|
onClear: PropTypes.func.isRequired,
|
|
|
|
onShow: PropTypes.func.isRequired,
|
2017-05-20 11:31:47 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
handleChange = (e) => {
|
2017-03-31 13:59:54 -04:00
|
|
|
this.props.onChange(e.target.value);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleClear = (e) => {
|
2017-03-31 13:59:54 -04:00
|
|
|
e.preventDefault();
|
2017-04-22 22:39:50 -04:00
|
|
|
|
|
|
|
if (this.props.value.length > 0 || this.props.submitted) {
|
|
|
|
this.props.onClear();
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleKeyDown = (e) => {
|
2017-03-31 13:59:54 -04:00
|
|
|
if (e.key === 'Enter') {
|
|
|
|
e.preventDefault();
|
|
|
|
this.props.onSubmit();
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-04-15 07:27:27 -04:00
|
|
|
noop () {
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-15 07:27:27 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleFocus = () => {
|
2017-03-31 13:59:54 -04:00
|
|
|
this.props.onShow();
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2016-11-13 07:04:18 -05:00
|
|
|
|
|
|
|
render () {
|
2017-03-31 16:44:12 -04:00
|
|
|
const { intl, value, submitted } = this.props;
|
|
|
|
const hasValue = value.length > 0 || submitted;
|
2016-11-13 07:04:18 -05:00
|
|
|
|
|
|
|
return (
|
2017-03-31 13:59:54 -04:00
|
|
|
<div className='search'>
|
2017-07-27 18:54:48 -04:00
|
|
|
<label>
|
|
|
|
<span style={{ display: 'none' }}>{intl.formatMessage(messages.placeholder)}</span>
|
|
|
|
<input
|
|
|
|
className='search__input'
|
|
|
|
type='text'
|
|
|
|
placeholder={intl.formatMessage(messages.placeholder)}
|
|
|
|
value={value}
|
|
|
|
onChange={this.handleChange}
|
|
|
|
onKeyUp={this.handleKeyDown}
|
|
|
|
onFocus={this.handleFocus}
|
|
|
|
/>
|
|
|
|
</label>
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-04-22 22:39:50 -04:00
|
|
|
<div role='button' tabIndex='0' className='search__icon' onClick={this.handleClear}>
|
2017-03-31 13:59:54 -04:00
|
|
|
<i className={`fa fa-search ${hasValue ? '' : 'active'}`} />
|
2017-04-22 22:39:50 -04:00
|
|
|
<i aria-label={intl.formatMessage(messages.placeholder)} className={`fa fa-times-circle ${hasValue ? 'active' : ''}`} />
|
2017-03-31 13:59:54 -04:00
|
|
|
</div>
|
2016-11-13 07:04:18 -05:00
|
|
|
</div>
|
|
|
|
);
|
2017-03-31 13:59:54 -04:00
|
|
|
}
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|