155 lines
3.2 KiB
JavaScript
Raw Normal View History

import PropTypes from 'prop-types';
import React from 'react';
2016-05-28 02:14:28 +03:00
import ReactDOM from 'react-dom';
2019-12-07 21:43:08 +02:00
import clsx from 'clsx';
import { omit } from 'app/functions';
import { colors, COLOR_GREEN } from 'app/components/ui';
2016-05-30 07:40:59 +03:00
2016-05-28 02:14:28 +03:00
import styles from './dropdown.scss';
2016-06-18 15:13:28 +03:00
import FormInputComponent from './FormInputComponent';
2016-06-18 15:13:28 +03:00
export default class Dropdown extends FormInputComponent {
static displayName = 'Dropdown';
static propTypes = {
label: PropTypes.oneOfType([
PropTypes.shape({
id: PropTypes.string,
}),
PropTypes.string,
]).isRequired,
items: PropTypes.arrayOf(
PropTypes.oneOfType([
PropTypes.string,
PropTypes.shape({
id: PropTypes.string,
}),
]),
).isRequired,
block: PropTypes.bool,
color: PropTypes.oneOf(colors),
};
static defaultProps = {
color: COLOR_GREEN,
};
state = {
isActive: false,
activeItem: null,
};
componentDidMount() {
// listen to capturing phase to ensure, that our event handler will be
// called before all other
document.addEventListener('click', this.onBodyClick, true);
}
componentWillUnmount() {
document.removeEventListener('click', this.onBodyClick);
}
render() {
const { color, block, items } = this.props;
const { isActive } = this.state;
const activeItem = this.getActiveItem();
const label = this.formatMessage(activeItem.label);
const props = omit(this.props, Object.keys(Dropdown.propTypes));
return (
<div>
<div
2019-12-07 21:43:08 +02:00
className={clsx(styles[color], {
[styles.block]: block,
[styles.opened]: isActive,
})}
{...props}
onClick={this.onToggle}
>
<span className={styles.label}>{label}</span>
<span className={styles.toggleIcon} />
<div className={styles.menu}>
{Object.entries(items).map(([value, label]) => (
<div
className={styles.menuItem}
key={value}
onClick={this.onSelectItem({ value, label })}
>
{label}
</div>
))}
</div>
</div>
{this.renderError()}
</div>
);
}
toggle() {
this.setState({
isActive: !this.state.isActive,
});
}
onSelectItem(item) {
return event => {
event.preventDefault();
this.setState({
activeItem: item,
});
2016-05-30 07:40:59 +03:00
};
}
getActiveItem() {
const { items } = this.props;
2019-12-07 13:28:52 +02:00
let { activeItem } = /** @type {any} */ (this.state);
if (!activeItem) {
activeItem = {
label: this.props.label,
value: '',
};
if (!activeItem.label) {
2019-12-07 13:28:52 +02:00
const [[value, label]] = Object.entries(items);
activeItem = {
2019-12-07 13:28:52 +02:00
label,
value,
};
}
2016-05-28 02:14:28 +03:00
}
return activeItem;
}
2016-05-28 02:14:28 +03:00
getValue() {
return this.getActiveItem().value;
}
2016-05-28 02:14:28 +03:00
onToggle = event => {
event.preventDefault();
2016-05-28 02:14:28 +03:00
this.toggle();
};
2016-05-28 02:14:28 +03:00
onBodyClick = event => {
if (this.state.isActive) {
const el = ReactDOM.findDOMNode(this);
2016-05-28 02:14:28 +03:00
if (!el.contains(event.target) && el !== event.taget) {
2016-05-28 02:14:28 +03:00
event.preventDefault();
event.stopPropagation();
2016-05-28 02:14:28 +03:00
this.toggle();
}
}
};
}