import React from 'react'; import ReactDOM from 'react-dom'; import MenuItems from './MenuItems'; import {closeActionsMenu, openActionsMenu} from '../../helpers'; import {IScopeApply} from 'core/utils'; interface IProps { item: any; onActioning: any; template: any; scopeApply: IScopeApply; } export class ActionsMenu extends React.PureComponent { constructor(props) { super(props); this.toggle = this.toggle.bind(this); this.stopEvent = this.stopEvent.bind(this); } toggle(event) { this.stopEvent(event); closeActionsMenu(this.props.item._id); // eslint-disable-next-line react/no-find-dom-node const icon = (ReactDOM.findDOMNode(this) as HTMLElement) .getElementsByClassName('icon-dots-vertical')[0]; openActionsMenu( , icon, this.props.item._id, ); } stopEvent(event) { event.stopPropagation(); } render() { return this.props.template(this.toggle, this.stopEvent); } }