insomnia/app/ui/components/base/dropdown/dropdown.js

190 lines
4.4 KiB
JavaScript
Raw Normal View History

import React, {PureComponent, PropTypes} from 'react';
import ReactDOM from 'react-dom';
import autobind from 'autobind-decorator';
import classnames from 'classnames';
import DropdownButton from './dropdown-button';
import DropdownItem from './dropdown-item';
import DropdownDivider from './dropdown-divider';
2016-03-21 05:47:49 +00:00
@autobind
class Dropdown extends PureComponent {
constructor (props) {
super(props);
this.state = {
open: false,
dropUp: false,
focused: false
};
}
_setRef (n) {
this._node = n;
}
_handleKeyDown (e) {
// Catch all key presses if we're open
if (this.state.open) {
e.stopPropagation();
}
2016-03-21 06:36:39 +00:00
// Pressed escape?
if (this.state.open && e.keyCode === 27) {
e.preventDefault();
this.hide();
}
}
2016-03-21 05:47:49 +00:00
_checkSize () {
if (!this.state.open) {
return;
}
// Make the dropdown scroll if it drops off screen.
const rect = ReactDOM.findDOMNode(this._dropdownList).getBoundingClientRect();
const maxHeight = document.body.clientHeight - rect.top - 10;
this._dropdownList.style.maxHeight = `${maxHeight}px`;
}
_handleClick () {
this.toggle();
}
_handleMouseDown (e) {
// Intercept mouse down so that clicks don't trigger things like
// drag and drop.
e.preventDefault();
}
_addDropdownListRef (n) {
this._dropdownList = n;
}
_getFlattenedChildren (children) {
let newChildren = [];
for (const child of children) {
if (!child) {
// Ignore null components
continue;
}
if (Array.isArray(child)) {
newChildren = [...newChildren, ...this._getFlattenedChildren(child)];
} else {
newChildren.push(child);
}
}
return newChildren;
}
componentDidUpdate () {
this._checkSize();
}
componentDidMount () {
document.body.addEventListener('keydown', this._handleKeyDown);
window.addEventListener('resize', this._checkSize);
}
componentWillUnmount () {
document.body.removeEventListener('keydown', this._handleKeyDown);
window.removeEventListener('resize', this._checkSize);
}
2016-07-22 16:14:27 +00:00
hide () {
this.setState({open: false});
2016-12-23 19:31:38 +00:00
this.props.onHide && this.props.onHide();
}
2016-07-22 16:14:27 +00:00
show () {
const bodyHeight = document.body.getBoundingClientRect().height;
const dropdownTop = this._node.getBoundingClientRect().top;
const dropUp = dropdownTop > bodyHeight - 200;
this.setState({open: true, dropUp});
2016-12-23 19:31:38 +00:00
this.props.onOpen && this.props.onOpen();
}
2016-07-22 16:14:27 +00:00
toggle () {
if (this.state.open) {
this.hide();
} else {
this.show();
}
}
2016-07-22 16:14:27 +00:00
render () {
const {right, outline, wide, className, style, children} = this.props;
const {dropUp, open} = this.state;
const classes = classnames(
2016-05-01 19:56:30 +00:00
'dropdown',
className,
{'dropdown--open': open},
2016-11-11 22:01:21 +00:00
{'dropdown--wide': wide},
{'dropdown--outlined': outline},
{'dropdown--up': dropUp},
{'dropdown--right': right}
2016-05-01 19:56:30 +00:00
);
2016-03-22 05:01:58 +00:00
2016-11-11 22:01:21 +00:00
const dropdownButtons = [];
const dropdownItems = [];
const listedChildren = Array.isArray(children) ? children : [children];
const allChildren = this._getFlattenedChildren(listedChildren);
for (const child of allChildren) {
if (child.type.name === DropdownButton.name) {
2016-11-11 22:01:21 +00:00
dropdownButtons.push(child);
} else if (child.type.name === DropdownItem.name) {
2016-11-11 22:01:21 +00:00
dropdownItems.push(child);
} else if (child.type.name === DropdownDivider.name) {
2016-11-11 22:01:21 +00:00
dropdownItems.push(child);
}
}
let finalChildren = [];
2016-11-11 23:06:24 +00:00
if (dropdownButtons.length !== 1) {
console.error(
`Dropdown needs exactly one DropdownButton! Got ${dropdownButtons.length}`,
{allChildren}
);
2016-11-11 22:01:21 +00:00
} else {
finalChildren = [
dropdownButtons[0],
2017-01-23 22:41:31 +00:00
<ul key="items" className="dropdown__menu" ref={this._addDropdownListRef}>
{dropdownItems}
</ul>
];
2016-11-11 22:01:21 +00:00
}
2016-03-21 05:47:49 +00:00
return (
<div style={style}
className={classes}
ref={this._setRef}
onClick={this._handleClick}
onMouseDown={this._handleMouseDown}>
{finalChildren}
2016-06-20 06:05:40 +00:00
<div className="dropdown__backdrop"></div>
</div>
);
2016-03-21 05:47:49 +00:00
}
}
2016-03-21 06:36:39 +00:00
Dropdown.propTypes = {
// Required
children: PropTypes.node.isRequired,
// Optional
right: PropTypes.bool,
2016-11-11 22:01:21 +00:00
outline: PropTypes.bool,
2016-12-23 19:31:38 +00:00
wide: PropTypes.bool,
onOpen: PropTypes.func,
onHide: PropTypes.func,
className: PropTypes.string,
style: PropTypes.string
2016-03-21 06:36:39 +00:00
};
2016-03-21 05:47:49 +00:00
export default Dropdown;