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

80 lines
2.0 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
constructor (props, context) {
super(props, context);
this.state = {
2017-03-01 00:53:11 +01:00
direction: 'left'
};
this.setRef = this.setRef.bind(this);
this.renderItem = this.renderItem.bind(this);
}
2017-02-17 01:44:06 +01:00
setRef (c) {
this.dropdown = c;
}
2017-02-17 01:44:06 +01:00
2017-03-01 00:53:11 +01:00
handleClick (i, e) {
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) {
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.bind(this, 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>
);
}
}
DropdownMenu.propTypes = {
icon: PropTypes.string.isRequired,
items: PropTypes.array.isRequired,
size: PropTypes.number.isRequired,
direction: PropTypes.string,
ariaLabel: PropTypes.string
};
DropdownMenu.defaultProps = {
ariaLabel: "Menu"
};
2016-10-09 22:19:15 +02:00
export default DropdownMenu;