1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // @ts-ignore
- import { translate } from '../../../base/i18n';
- import { IconCloseLarge, IconHangup } from '../../../base/icons/svg';
- // eslint-disable-next-line lines-around-comment
- // @ts-ignore
- import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
-
- /**
- * The type of the React {@code Component} props of {@link HangupToggleButton}.
- */
- 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 hangup menu.
- */
- class HangupToggleButton extends AbstractButton<Props, any, any> {
- accessibilityLabel = 'toolbar.accessibilityLabel.hangup';
- icon = IconHangup;
- label = 'toolbar.hangup';
- toggledIcon = IconCloseLarge;
- toggledLabel = 'toolbar.hangup';
- tooltip = 'toolbar.hangup';
- props: Props;
-
- /**
- * 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(HangupToggleButton);
|