2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-09-22 02:59:17 +00:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import IconButton from './icon_button';
|
2017-10-06 01:24:33 +00:00
|
|
|
import Overlay from 'react-overlays/lib/Overlay';
|
2017-10-16 07:36:15 +00:00
|
|
|
import Motion from '../features/ui/util/optional_motion';
|
2017-10-06 01:46:15 +00:00
|
|
|
import spring from 'react-motion/lib/spring';
|
2020-11-04 17:21:05 +00:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2022-02-09 00:17:07 +00:00
|
|
|
import classNames from 'classnames';
|
|
|
|
import { CircularProgress } from 'mastodon/components/loading_indicator';
|
2017-09-23 22:40:10 +00:00
|
|
|
|
2020-11-04 17:21:05 +00:00
|
|
|
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
2018-03-07 01:26:43 +00:00
|
|
|
let id = 0;
|
2016-10-09 20:19:15 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
class DropdownMenu extends React.PureComponent {
|
2017-02-17 00:44:06 +00:00
|
|
|
|
2017-05-19 23:28:25 +00:00
|
|
|
static contextTypes = {
|
2017-05-20 15:31:47 +00:00
|
|
|
router: PropTypes.object,
|
2017-05-19 23:28:25 +00:00
|
|
|
};
|
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
2022-02-09 00:17:07 +00:00
|
|
|
items: PropTypes.oneOfType([PropTypes.array, ImmutablePropTypes.list]).isRequired,
|
|
|
|
loading: PropTypes.bool,
|
|
|
|
scrollable: PropTypes.bool,
|
2017-09-22 02:59:17 +00:00
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
style: PropTypes.object,
|
|
|
|
placement: PropTypes.string,
|
|
|
|
arrowOffsetLeft: PropTypes.string,
|
|
|
|
arrowOffsetTop: PropTypes.string,
|
2018-09-13 18:31:33 +00:00
|
|
|
openedViaKeyboard: PropTypes.bool,
|
2022-02-09 00:17:07 +00:00
|
|
|
renderItem: PropTypes.func,
|
|
|
|
renderHeader: PropTypes.func,
|
|
|
|
onItemClick: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-09-22 02:59:17 +00:00
|
|
|
style: {},
|
|
|
|
placement: 'bottom',
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2018-03-05 18:28:56 +00:00
|
|
|
state = {
|
|
|
|
mounted: false,
|
|
|
|
};
|
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
handleDocumentClick = e => {
|
|
|
|
if (this.node && !this.node.contains(e.target)) {
|
|
|
|
this.props.onClose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
document.addEventListener('click', this.handleDocumentClick, false);
|
2018-09-13 18:31:33 +00:00
|
|
|
document.addEventListener('keydown', this.handleKeyDown, false);
|
2017-09-23 22:40:10 +00:00
|
|
|
document.addEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
2022-02-09 00:17:07 +00:00
|
|
|
|
2019-08-06 09:59:46 +00:00
|
|
|
if (this.focusedItem && this.props.openedViaKeyboard) {
|
2020-04-28 11:19:39 +00:00
|
|
|
this.focusedItem.focus({ preventScroll: true });
|
2019-08-06 09:59:46 +00:00
|
|
|
}
|
2022-02-09 00:17:07 +00:00
|
|
|
|
2018-03-05 18:28:56 +00:00
|
|
|
this.setState({ mounted: true });
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
document.removeEventListener('click', this.handleDocumentClick, false);
|
2018-09-13 18:31:33 +00:00
|
|
|
document.removeEventListener('keydown', this.handleKeyDown, false);
|
2017-09-23 22:40:10 +00:00
|
|
|
document.removeEventListener('touchend', this.handleDocumentClick, listenerOptions);
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
2017-02-17 00:44:06 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-17 00:44:06 +00:00
|
|
|
|
2018-05-04 20:13:26 +00:00
|
|
|
setFocusRef = c => {
|
|
|
|
this.focusedItem = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyDown = e => {
|
2022-02-09 00:17:07 +00:00
|
|
|
const items = Array.from(this.node.querySelectorAll('a, button'));
|
2018-09-13 18:31:33 +00:00
|
|
|
const index = items.indexOf(document.activeElement);
|
2020-04-21 13:13:26 +00:00
|
|
|
let element = null;
|
2018-05-04 20:13:26 +00:00
|
|
|
|
|
|
|
switch(e.key) {
|
|
|
|
case 'ArrowDown':
|
2020-04-21 13:13:26 +00:00
|
|
|
element = items[index+1] || items[0];
|
2018-05-04 20:13:26 +00:00
|
|
|
break;
|
|
|
|
case 'ArrowUp':
|
2020-04-21 13:13:26 +00:00
|
|
|
element = items[index-1] || items[items.length-1];
|
2018-05-04 20:13:26 +00:00
|
|
|
break;
|
2019-08-06 09:59:46 +00:00
|
|
|
case 'Tab':
|
|
|
|
if (e.shiftKey) {
|
|
|
|
element = items[index-1] || items[items.length-1];
|
|
|
|
} else {
|
|
|
|
element = items[index+1] || items[0];
|
|
|
|
}
|
|
|
|
break;
|
2018-05-04 20:13:26 +00:00
|
|
|
case 'Home':
|
|
|
|
element = items[0];
|
|
|
|
break;
|
|
|
|
case 'End':
|
|
|
|
element = items[items.length-1];
|
|
|
|
break;
|
2019-08-06 09:59:46 +00:00
|
|
|
case 'Escape':
|
|
|
|
this.props.onClose();
|
|
|
|
break;
|
2018-05-04 20:13:26 +00:00
|
|
|
}
|
2020-04-21 13:13:26 +00:00
|
|
|
|
|
|
|
if (element) {
|
|
|
|
element.focus();
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
}
|
2018-05-04 20:13:26 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 11:58:53 +00:00
|
|
|
handleItemKeyPress = e => {
|
2019-08-06 09:59:46 +00:00
|
|
|
if (e.key === 'Enter' || e.key === ' ') {
|
2018-09-13 18:31:33 +00:00
|
|
|
this.handleClick(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
handleClick = e => {
|
2022-02-09 00:17:07 +00:00
|
|
|
const { onItemClick } = this.props;
|
|
|
|
onItemClick(e);
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
renderItem = (option, i) => {
|
2017-09-22 02:59:17 +00:00
|
|
|
if (option === null) {
|
|
|
|
return <li key={`sep-${i}`} className='dropdown-menu__separator' />;
|
|
|
|
}
|
|
|
|
|
2019-07-19 01:58:46 +00:00
|
|
|
const { text, href = '#', target = '_blank', method } = option;
|
2017-09-22 02:59:17 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<li className='dropdown-menu__item' key={`${text}-${i}`}>
|
2019-10-24 20:44:42 +00:00
|
|
|
<a href={href} target={target} data-method={method} rel='noopener noreferrer' role='button' tabIndex='0' ref={i === 0 ? this.setFocusRef : null} onClick={this.handleClick} onKeyPress={this.handleItemKeyPress} data-index={i}>
|
2017-09-22 02:59:17 +00:00
|
|
|
{text}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2022-02-09 00:17:07 +00:00
|
|
|
const { items, style, placement, arrowOffsetLeft, arrowOffsetTop, scrollable, renderHeader, loading } = this.props;
|
2018-03-05 18:28:56 +00:00
|
|
|
const { mounted } = this.state;
|
2017-05-19 23:28:25 +00:00
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
let renderItem = this.props.renderItem || this.renderItem;
|
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
return (
|
|
|
|
<Motion defaultStyle={{ opacity: 0, scaleX: 0.85, scaleY: 0.75 }} style={{ opacity: spring(1, { damping: 35, stiffness: 400 }), scaleX: spring(1, { damping: 35, stiffness: 400 }), scaleY: spring(1, { damping: 35, stiffness: 400 }) }}>
|
|
|
|
{({ opacity, scaleX, scaleY }) => (
|
2018-03-05 18:28:56 +00:00
|
|
|
// It should not be transformed when mounting because the resulting
|
|
|
|
// size will be used to determine the coordinate of the menu by
|
|
|
|
// react-overlays
|
2018-08-19 15:11:12 +00:00
|
|
|
<div className={`dropdown-menu ${placement}`} style={{ ...style, opacity: opacity, transform: mounted ? `scale(${scaleX}, ${scaleY})` : null }} ref={this.setRef}>
|
2017-09-22 02:59:17 +00:00
|
|
|
<div className={`dropdown-menu__arrow ${placement}`} style={{ left: arrowOffsetLeft, top: arrowOffsetTop }} />
|
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
<div className={classNames('dropdown-menu__container', { 'dropdown-menu__container--loading': loading })}>
|
|
|
|
{loading && (
|
|
|
|
<CircularProgress size={30} strokeWidth={3.5} />
|
|
|
|
)}
|
|
|
|
|
|
|
|
{!loading && renderHeader && (
|
|
|
|
<div className='dropdown-menu__container__header'>
|
|
|
|
{renderHeader(items)}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
|
|
|
|
{!loading && (
|
|
|
|
<ul className={classNames('dropdown-menu__container__list', { 'dropdown-menu__container__list--scrollable': scrollable })}>
|
|
|
|
{items.map((option, i) => renderItem(option, i, { onClick: this.handleClick, onKeyPress: this.handleItemKeyPress }))}
|
|
|
|
</ul>
|
|
|
|
)}
|
|
|
|
</div>
|
2017-09-22 02:59:17 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</Motion>
|
|
|
|
);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-02-28 23:53:11 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Dropdown extends React.PureComponent {
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object,
|
|
|
|
};
|
|
|
|
|
|
|
|
static propTypes = {
|
2022-02-09 00:17:07 +00:00
|
|
|
children: PropTypes.node,
|
|
|
|
icon: PropTypes.string,
|
|
|
|
items: PropTypes.oneOfType([PropTypes.array, ImmutablePropTypes.list]).isRequired,
|
|
|
|
loading: PropTypes.bool,
|
|
|
|
size: PropTypes.number,
|
2017-11-25 14:41:08 +00:00
|
|
|
title: PropTypes.string,
|
2017-09-22 02:59:17 +00:00
|
|
|
disabled: PropTypes.bool,
|
2022-02-09 00:17:07 +00:00
|
|
|
scrollable: PropTypes.bool,
|
2017-09-22 02:59:17 +00:00
|
|
|
status: ImmutablePropTypes.map,
|
|
|
|
isUserTouching: PropTypes.func,
|
2018-03-07 01:26:43 +00:00
|
|
|
onOpen: PropTypes.func.isRequired,
|
|
|
|
onClose: PropTypes.func.isRequired,
|
|
|
|
dropdownPlacement: PropTypes.string,
|
|
|
|
openDropdownId: PropTypes.number,
|
2018-09-13 18:31:33 +00:00
|
|
|
openedViaKeyboard: PropTypes.bool,
|
2022-02-09 00:17:07 +00:00
|
|
|
renderItem: PropTypes.func,
|
|
|
|
renderHeader: PropTypes.func,
|
|
|
|
onItemClick: PropTypes.func,
|
2017-09-22 02:59:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static defaultProps = {
|
2017-11-25 14:41:08 +00:00
|
|
|
title: 'Menu',
|
2017-09-22 02:59:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
state = {
|
2018-03-07 01:26:43 +00:00
|
|
|
id: id++,
|
2017-09-22 02:59:17 +00:00
|
|
|
};
|
|
|
|
|
2018-09-13 18:31:33 +00:00
|
|
|
handleClick = ({ target, type }) => {
|
2018-03-07 01:26:43 +00:00
|
|
|
if (this.state.id === this.props.openDropdownId) {
|
|
|
|
this.handleClose();
|
2018-03-05 18:28:56 +00:00
|
|
|
} else {
|
|
|
|
const { top } = target.getBoundingClientRect();
|
2018-03-07 01:26:43 +00:00
|
|
|
const placement = top * 2 < innerHeight ? 'bottom' : 'top';
|
2018-09-13 18:31:33 +00:00
|
|
|
this.props.onOpen(this.state.id, this.handleItemClick, placement, type !== 'click');
|
2017-07-27 20:31:59 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-20 12:58:13 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
handleClose = () => {
|
2019-08-07 11:58:53 +00:00
|
|
|
if (this.activeElement) {
|
2020-08-21 12:14:28 +00:00
|
|
|
this.activeElement.focus({ preventScroll: true });
|
2019-08-07 11:58:53 +00:00
|
|
|
this.activeElement = null;
|
|
|
|
}
|
2018-03-07 01:26:43 +00:00
|
|
|
this.props.onClose(this.state.id);
|
2017-07-28 02:37:30 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 11:58:53 +00:00
|
|
|
handleMouseDown = () => {
|
|
|
|
if (!this.state.open) {
|
|
|
|
this.activeElement = document.activeElement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleButtonKeyDown = (e) => {
|
|
|
|
switch(e.key) {
|
|
|
|
case ' ':
|
|
|
|
case 'Enter':
|
|
|
|
this.handleMouseDown();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyPress = (e) => {
|
|
|
|
switch(e.key) {
|
|
|
|
case ' ':
|
|
|
|
case 'Enter':
|
|
|
|
this.handleClick(e);
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
handleItemClick = e => {
|
2022-02-09 00:17:07 +00:00
|
|
|
const { onItemClick } = this.props;
|
2017-09-22 02:59:17 +00:00
|
|
|
const i = Number(e.currentTarget.getAttribute('data-index'));
|
2022-02-09 00:17:07 +00:00
|
|
|
const item = this.props.items[i];
|
2017-02-28 23:53:11 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
this.handleClose();
|
2017-02-28 23:53:11 +00:00
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
if (typeof onItemClick === 'function') {
|
|
|
|
e.preventDefault();
|
|
|
|
onItemClick(item, i);
|
|
|
|
} else if (item && typeof item.action === 'function') {
|
2017-09-22 02:59:17 +00:00
|
|
|
e.preventDefault();
|
2022-02-09 00:17:07 +00:00
|
|
|
item.action();
|
|
|
|
} else if (item && item.to) {
|
2017-09-22 02:59:17 +00:00
|
|
|
e.preventDefault();
|
2022-02-09 00:17:07 +00:00
|
|
|
this.context.router.history.push(item.to);
|
2017-07-11 13:27:59 +00:00
|
|
|
}
|
2017-09-22 02:59:17 +00:00
|
|
|
}
|
2017-02-17 00:44:06 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
setTargetRef = c => {
|
|
|
|
this.target = c;
|
|
|
|
}
|
2017-05-20 12:58:13 +00:00
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
findTarget = () => {
|
|
|
|
return this.target;
|
|
|
|
}
|
2017-07-27 20:31:59 +00:00
|
|
|
|
2018-08-23 18:43:27 +00:00
|
|
|
componentWillUnmount = () => {
|
|
|
|
if (this.state.id === this.props.openDropdownId) {
|
|
|
|
this.handleClose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
close = () => {
|
|
|
|
this.handleClose();
|
|
|
|
}
|
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
render () {
|
2022-02-09 00:17:07 +00:00
|
|
|
const {
|
|
|
|
icon,
|
|
|
|
items,
|
|
|
|
size,
|
|
|
|
title,
|
|
|
|
disabled,
|
|
|
|
loading,
|
|
|
|
scrollable,
|
|
|
|
dropdownPlacement,
|
|
|
|
openDropdownId,
|
|
|
|
openedViaKeyboard,
|
|
|
|
children,
|
|
|
|
renderItem,
|
|
|
|
renderHeader,
|
|
|
|
} = this.props;
|
|
|
|
|
2018-03-07 01:26:43 +00:00
|
|
|
const open = this.state.id === openDropdownId;
|
2017-02-17 00:44:06 +00:00
|
|
|
|
2022-02-09 00:17:07 +00:00
|
|
|
const button = children ? React.cloneElement(React.Children.only(children), {
|
|
|
|
ref: this.setTargetRef,
|
|
|
|
onClick: this.handleClick,
|
|
|
|
onMouseDown: this.handleMouseDown,
|
|
|
|
onKeyDown: this.handleButtonKeyDown,
|
|
|
|
onKeyPress: this.handleKeyPress,
|
|
|
|
}) : (
|
|
|
|
<IconButton
|
|
|
|
icon={icon}
|
|
|
|
title={title}
|
|
|
|
active={open}
|
|
|
|
disabled={disabled}
|
|
|
|
size={size}
|
|
|
|
ref={this.setTargetRef}
|
|
|
|
onClick={this.handleClick}
|
|
|
|
onMouseDown={this.handleMouseDown}
|
|
|
|
onKeyDown={this.handleButtonKeyDown}
|
|
|
|
onKeyPress={this.handleKeyPress}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2017-09-22 02:59:17 +00:00
|
|
|
return (
|
2022-02-09 00:17:07 +00:00
|
|
|
<React.Fragment>
|
|
|
|
{button}
|
2017-09-22 02:59:17 +00:00
|
|
|
|
2018-03-07 01:26:43 +00:00
|
|
|
<Overlay show={open} placement={dropdownPlacement} target={this.findTarget}>
|
2022-02-09 00:17:07 +00:00
|
|
|
<DropdownMenu
|
|
|
|
items={items}
|
|
|
|
loading={loading}
|
|
|
|
scrollable={scrollable}
|
|
|
|
onClose={this.handleClose}
|
|
|
|
openedViaKeyboard={openedViaKeyboard}
|
|
|
|
renderItem={renderItem}
|
|
|
|
renderHeader={renderHeader}
|
|
|
|
onItemClick={this.handleItemClick}
|
|
|
|
/>
|
2017-09-22 02:59:17 +00:00
|
|
|
</Overlay>
|
2022-02-09 00:17:07 +00:00
|
|
|
</React.Fragment>
|
2017-02-17 00:44:06 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|