mastodon/app/assets/javascripts/components/features/compose/components/search.jsx

74 lines
1.8 KiB
React
Raw Normal View History

2016-11-13 13:04:18 +01:00
import PureRenderMixin from 'react-addons-pure-render-mixin';
import ImmutablePropTypes from 'react-immutable-proptypes';
2016-11-18 15:36:16 +01:00
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
const messages = defineMessages({
placeholder: { id: 'search.placeholder', defaultMessage: 'Search' }
});
2016-11-13 13:04:18 +01:00
const Search = React.createClass({
propTypes: {
value: React.PropTypes.string.isRequired,
2017-03-31 22:44:12 +02:00
submitted: React.PropTypes.bool,
2016-11-13 13:04:18 +01:00
onChange: React.PropTypes.func.isRequired,
2017-03-31 19:59:54 +02:00
onSubmit: React.PropTypes.func.isRequired,
2016-11-13 13:04:18 +01:00
onClear: React.PropTypes.func.isRequired,
2017-03-31 19:59:54 +02:00
onShow: React.PropTypes.func.isRequired,
intl: React.PropTypes.object.isRequired
2016-11-13 13:04:18 +01:00
},
mixins: [PureRenderMixin],
2017-03-31 19:59:54 +02:00
handleChange (e) {
this.props.onChange(e.target.value);
2016-11-13 13:04:18 +01:00
},
2017-03-31 19:59:54 +02:00
handleClear (e) {
e.preventDefault();
2016-11-13 13:04:18 +01:00
this.props.onClear();
},
2017-03-31 19:59:54 +02:00
handleKeyDown (e) {
if (e.key === 'Enter') {
e.preventDefault();
this.props.onSubmit();
}
2016-11-13 13:04:18 +01:00
},
noop () {
},
2017-03-31 19:59:54 +02:00
handleFocus () {
this.props.onShow();
2016-11-13 13:04:18 +01:00
},
render () {
2017-03-31 22:44:12 +02:00
const { intl, value, submitted } = this.props;
const hasValue = value.length > 0 || submitted;
2016-11-13 13:04:18 +01:00
return (
2017-03-31 19:59:54 +02:00
<div className='search'>
<input
className='search__input'
type='text'
placeholder={intl.formatMessage(messages.placeholder)}
value={value}
onChange={this.handleChange}
onKeyUp={this.handleKeyDown}
onFocus={this.handleFocus}
2016-11-13 13:04:18 +01:00
/>
<div role='button' tabIndex='0' className='search__icon' onClick={hasValue ? this.handleClear : this.noop}>
2017-03-31 19:59:54 +02:00
<i className={`fa fa-search ${hasValue ? '' : 'active'}`} />
<i aria-label="Clear search" className={`fa fa-times-circle ${hasValue ? 'active' : ''}`} />
2017-03-31 19:59:54 +02:00
</div>
2016-11-13 13:04:18 +01:00
</div>
);
2017-03-31 19:59:54 +02:00
}
2016-11-13 13:04:18 +01:00
});
export default injectIntl(Search);