This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/javascript/flavours/glitch/features/compose/search/index.js

153 lines
3.2 KiB
JavaScript
Raw Normal View History

2017-12-27 01:54:28 +01:00
// Package imports.
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
import {
FormattedMessage,
defineMessages,
} from 'react-intl';
import Overlay from 'react-overlays/lib/Overlay';
// Components.
import Icon from 'flavours/glitch/components/icon';
import DrawerSearchPopout from './popout';
// Utils.
import { focusRoot } from 'flavours/glitch/util/dom_helpers';
import {
assignHandlers,
hiddenComponent,
} from 'flavours/glitch/util/react_helpers';
// Messages.
const messages = defineMessages({
placeholder: {
defaultMessage: 'Search',
id: 'search.placeholder',
},
});
// Handlers.
const handlers = {
handleBlur () {
2017-12-27 01:54:28 +01:00
this.setState({ expanded: false });
},
handleChange ({ target: { value } }) {
2017-12-27 01:54:28 +01:00
const { onChange } = this.props;
if (onChange) {
onChange(value);
}
},
handleClear (e) {
2017-12-27 01:54:28 +01:00
const {
onClear,
submitted,
2018-01-07 00:34:01 +01:00
value,
2017-12-27 01:54:28 +01:00
} = this.props;
e.preventDefault(); // Prevents focus change ??
2018-01-07 00:34:01 +01:00
if (onClear && (submitted || value && value.length)) {
2017-12-27 01:54:28 +01:00
onClear();
}
},
handleFocus () {
2017-12-27 01:54:28 +01:00
const { onShow } = this.props;
this.setState({ expanded: true });
if (onShow) {
onShow();
}
},
handleKeyUp (e) {
2017-12-27 01:54:28 +01:00
const { onSubmit } = this.props;
switch (e.key) {
case 'Enter':
if (onSubmit) {
onSubmit();
}
break;
case 'Escape':
focusRoot();
}
},
};
// The component.
export default class DrawerSearch extends React.PureComponent {
// Constructor.
2017-12-27 01:54:28 +01:00
constructor (props) {
super(props);
assignHandlers(this, handlers);
this.state = { expanded: false };
}
// Rendering.
2017-12-27 01:54:28 +01:00
render () {
const {
handleBlur,
handleChange,
handleClear,
handleFocus,
handleKeyUp,
2017-12-27 01:54:28 +01:00
} = this.handlers;
const {
intl,
submitted,
value,
} = this.props;
const { expanded } = this.state;
2018-01-07 00:34:01 +01:00
const active = value && value.length || submitted;
const computedClass = classNames('drawer--search', { active });
2017-12-27 01:54:28 +01:00
return (
<div className={computedClass}>
<label>
<span {...hiddenComponent}>
<FormattedMessage {...messages.placeholder} />
</span>
<input
type='text'
placeholder={intl.formatMessage(messages.placeholder)}
value={value || ''}
onChange={handleChange}
onKeyUp={handleKeyUp}
onFocus={handleFocus}
onBlur={handleBlur}
2017-12-27 01:54:28 +01:00
/>
</label>
<div
aria-label={intl.formatMessage(messages.placeholder)}
className='icon'
onClick={handleClear}
2017-12-27 01:54:28 +01:00
role='button'
tabIndex='0'
>
<Icon icon='search' />
2018-01-07 00:34:01 +01:00
<Icon icon='times-circle' />
2017-12-27 01:54:28 +01:00
</div>
<Overlay
placement='bottom'
2018-01-07 00:34:01 +01:00
show={expanded && !active}
2017-12-27 01:54:28 +01:00
target={this}
><DrawerSearchPopout /></Overlay>
</div>
);
}
}
// Props.
2017-12-27 01:54:28 +01:00
DrawerSearch.propTypes = {
value: PropTypes.string,
submitted: PropTypes.bool,
onChange: PropTypes.func,
onSubmit: PropTypes.func,
onClear: PropTypes.func,
onShow: PropTypes.func,
intl: PropTypes.object,
};