mastodon/app/javascript/mastodon/features/compose/components/search.js

75 lines
1.8 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
2016-11-18 14:36:16 +00:00
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
const messages = defineMessages({
placeholder: { id: 'search.placeholder', defaultMessage: 'Search' }
});
2016-11-13 12:04:18 +00:00
class Search extends React.PureComponent {
2016-11-13 12:04:18 +00: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,
intl: PropTypes.object.isRequired
};
handleChange = (e) => {
2017-03-31 17:59:54 +00:00
this.props.onChange(e.target.value);
}
2016-11-13 12:04:18 +00:00
handleClear = (e) => {
2017-03-31 17:59:54 +00:00
e.preventDefault();
if (this.props.value.length > 0 || this.props.submitted) {
this.props.onClear();
}
}
2016-11-13 12:04:18 +00:00
handleKeyDown = (e) => {
2017-03-31 17:59:54 +00:00
if (e.key === 'Enter') {
e.preventDefault();
this.props.onSubmit();
}
}
2016-11-13 12:04:18 +00:00
noop () {
}
handleFocus = () => {
2017-03-31 17:59:54 +00:00
this.props.onShow();
}
2016-11-13 12:04:18 +00:00
render () {
2017-03-31 20:44:12 +00:00
const { intl, value, submitted } = this.props;
const hasValue = value.length > 0 || submitted;
2016-11-13 12:04:18 +00:00
return (
2017-03-31 17:59:54 +00: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 12:04:18 +00:00
/>
<div role='button' tabIndex='0' className='search__icon' onClick={this.handleClear}>
2017-03-31 17:59:54 +00:00
<i className={`fa fa-search ${hasValue ? '' : 'active'}`} />
<i aria-label={intl.formatMessage(messages.placeholder)} className={`fa fa-times-circle ${hasValue ? 'active' : ''}`} />
2017-03-31 17:59:54 +00:00
</div>
2016-11-13 12:04:18 +00:00
</div>
);
2017-03-31 17:59:54 +00:00
}
2016-11-13 12:04:18 +00:00
}
export default injectIntl(Search);