mastodon/app/javascript/mastodon/components/dropdown_menu.js

76 lines
1.9 KiB
JavaScript
Raw Normal View History

import React from 'react';
2016-10-09 22:19:15 +02:00
import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown';
import PropTypes from 'prop-types';
2016-10-09 22:19:15 +02:00
class DropdownMenu extends React.PureComponent {
2017-02-17 01:44:06 +01:00
static propTypes = {
icon: PropTypes.string.isRequired,
items: PropTypes.array.isRequired,
size: PropTypes.number.isRequired,
direction: PropTypes.string,
ariaLabel: PropTypes.string
};
static defaultProps = {
ariaLabel: "Menu"
};
state = {
direction: 'left'
};
2017-02-17 01:44:06 +01:00
setRef = (c) => {
2017-02-17 01:44:06 +01:00
this.dropdown = c;
}
2017-02-17 01:44:06 +01:00
handleClick = (e) => {
const i = Number(e.currentTarget.getAttribute('data-index'));
2017-03-01 00:53:11 +01:00
const { action } = this.props.items[i];
if (typeof action === 'function') {
e.preventDefault();
action();
this.dropdown.hide();
}
}
2017-03-01 00:53:11 +01:00
renderItem = (item, i) => {
2017-03-01 00:53:11 +01:00
if (item === null) {
return <li key={ 'sep' + i } className='dropdown__sep' />;
2017-03-01 00:53:11 +01:00
}
const { text, action, href = '#' } = item;
return (
<li className='dropdown__content-list-item' key={ text + i }>
<a href={href} target='_blank' rel='noopener' onClick={this.handleClick} data-index={i} className='dropdown__content-list-link'>
2017-03-01 00:53:11 +01:00
{text}
</a>
</li>
);
}
2017-03-01 00:53:11 +01:00
2017-02-17 01:44:06 +01:00
render () {
const { icon, items, size, direction, ariaLabel } = this.props;
2017-02-17 01:44:06 +01:00
const directionClass = (direction === "left") ? "dropdown__left" : "dropdown__right";
return (
<Dropdown ref={this.setRef}>
<DropdownTrigger className='icon-button' style={{ fontSize: `${size}px`, width: `${size}px`, lineHeight: `${size}px` }} aria-label={ariaLabel}>
<i className={ `fa fa-fw fa-${icon} dropdown__icon` } aria-hidden={true} />
2017-02-17 01:44:06 +01:00
</DropdownTrigger>
<DropdownContent className={directionClass}>
<ul className='dropdown__content-list'>
2017-03-01 00:53:11 +01:00
{items.map(this.renderItem)}
2017-02-17 01:44:06 +01:00
</ul>
</DropdownContent>
</Dropdown>
);
}
}
2016-10-09 22:19:15 +02:00
export default DropdownMenu;