123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { connect } from 'react-redux';
-
- import { translate } from '../../../base/i18n/functions';
- import { IconCloseLarge, IconHangup } from '../../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
-
- /**
- * The type of the React {@code Component} props of {@link HangupToggleButton}.
- */
- interface IProps extends 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 hangup menu.
- */
- class HangupToggleButton extends AbstractButton<IProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.hangup';
- icon = IconHangup;
- label = 'toolbar.hangup';
- toggledIcon = IconCloseLarge;
- toggledLabel = 'toolbar.hangup';
- tooltip = 'toolbar.hangup';
-
- /**
- * 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 connect()(translate(HangupToggleButton));
|