123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- import React, { Component } from 'react';
- import { WithTranslation } from 'react-i18next';
-
- import { createToolbarEvent } from '../../../analytics/AnalyticsEvents';
- import { sendAnalytics } from '../../../analytics/functions';
- import { translate } from '../../../base/i18n/functions';
- import Popover from '../../../base/popover/components/Popover.web';
-
- import HangupToggleButton from './HangupToggleButton';
-
- /**
- * The type of the React {@code Component} props of {@link HangupMenuButton}.
- */
- interface IProps extends WithTranslation {
-
- /**
- * ID of the menu that is controlled by this button.
- */
- ariaControls: String;
-
- /**
- * A child React Element to display within {@code InlineDialog}.
- */
- children: React.ReactNode;
-
- /**
- * Whether or not the HangupMenu popover should display.
- */
- isOpen: boolean;
-
- /**
- * Notify mode for `toolbarButtonClicked` event -
- * whether to only notify or to also prevent button click routine.
- */
- notifyMode?: string;
-
- /**
- * Callback to change the visibility of the hangup menu.
- */
- onVisibilityChange: Function;
- }
-
- /**
- * A React {@code Component} for opening or closing the {@code HangupMenu}.
- *
- * @augments Component
- */
- class HangupMenuButton extends Component<IProps> {
- /**
- * Initializes a new {@code HangupMenuButton} instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props: IProps) {
- super(props);
-
- // Bind event handlers so they are only bound once per instance.
- this._onCloseDialog = this._onCloseDialog.bind(this);
- this._toggleDialogVisibility
- = this._toggleDialogVisibility.bind(this);
- this._onEscClick = this._onEscClick.bind(this);
- }
-
- /**
- * Click handler for the more actions entries.
- *
- * @param {KeyboardEvent} event - Esc key click to close the popup.
- * @returns {void}
- */
- _onEscClick(event: KeyboardEvent) {
- if (event.key === 'Escape' && this.props.isOpen) {
- event.preventDefault();
- event.stopPropagation();
- this._onCloseDialog();
- }
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { children, isOpen } = this.props;
-
- return (
- <div className = 'toolbox-button-wth-dialog context-menu'>
- <Popover
- content = { children }
- onPopoverClose = { this._onCloseDialog }
- position = 'top'
- trigger = 'click'
- visible = { isOpen }>
- <HangupToggleButton
- buttonKey = 'hangup-menu'
- customClass = 'hangup-menu-button'
- handleClick = { this._toggleDialogVisibility }
- isOpen = { isOpen }
- notifyMode = { this.props.notifyMode }
- onKeyDown = { this._onEscClick } />
- </Popover>
- </div>
- );
- }
-
- /**
- * Callback invoked when {@code InlineDialog} signals that it should be
- * close.
- *
- * @private
- * @returns {void}
- */
- _onCloseDialog() {
- this.props.onVisibilityChange(false);
- }
-
- /**
- * Callback invoked to signal that an event has occurred that should change
- * the visibility of the {@code InlineDialog} component.
- *
- * @private
- * @returns {void}
- */
- _toggleDialogVisibility() {
- sendAnalytics(createToolbarEvent('hangup'));
-
- this.props.onVisibilityChange(!this.props.isOpen);
- }
- }
-
- export default translate(HangupMenuButton);
|