// @flow import { translate } from '../../../base/i18n'; import { IconHorizontalPoints } from '../../../base/icons'; import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components'; /** * The type of the React {@code Component} props of {@link OverflowToggleButton}. */ type Props = AbstractButtonProps & { /** * Whether the more options menu is open. */ isOpen: boolean, /** * External handler for key down action. */ onKeyDown: Function, }; /** * Implementation of a button for toggling the overflow menu. */ class OverflowToggleButton extends AbstractButton { accessibilityLabel = 'toolbar.accessibilityLabel.moreActions'; icon = IconHorizontalPoints; label = 'toolbar.moreActions'; toggledLabel = 'toolbar.moreActions'; /** * Retrieves tooltip dynamically. */ get tooltip() { return 'toolbar.moreActions'; } /** * Required by linter due to AbstractButton overwritten prop being writable. * * @param {string} _value - The value. */ set tooltip(_value) { // Unused. } /** * Indicates whether this button is in toggled state or not. * * @override * @protected * @returns {boolean} */ _isToggled() { return this.props.isOpen; } /** * Indicates whether a key was pressed. * * @override * @protected * @returns {boolean} */ _onKeyDown() { this.props.onKeyDown(); } } export default translate(OverflowToggleButton);