import React from 'react'; import Dropdown, { DropdownTrigger, DropdownContent } from 'react-simple-dropdown'; import PropTypes from 'prop-types'; class DropdownMenu extends React.PureComponent { static contextTypes = { router: PropTypes.object, }; 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', expanded: false, }; setRef = (c) => { this.dropdown = c; } handleClick = (e) => { const i = Number(e.currentTarget.getAttribute('data-index')); const { action, to } = this.props.items[i]; // Don't call e.preventDefault() when the item uses 'href' property. // ex. "Edit profile" on the account action bar if (typeof action === 'function') { e.preventDefault(); action(); } else if (to) { e.preventDefault(); this.context.router.history.push(to); } this.dropdown.hide(); } handleShow = () => this.setState({ expanded: true }) handleHide = () => this.setState({ expanded: false }) renderItem = (item, i) => { if (item === null) { return
  • ; } const { text, href = '#' } = item; return (
  • {text}
  • ); } render () { const { icon, items, size, direction, ariaLabel } = this.props; const { expanded } = this.state; const directionClass = (direction === 'left') ? 'dropdown__left' : 'dropdown__right'; const dropdownItems = expanded && ( ); return ( {dropdownItems} ); } } export default DropdownMenu;