123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- /* eslint-disable lines-around-comment */
- import { withStyles } from '@mui/styles';
- import React, { Component } from 'react';
- import { WithTranslation } from 'react-i18next';
- import { batch, connect } from 'react-redux';
-
- import { IReduxState } from '../../../app/types';
- import { isMobileBrowser } from '../../../base/environment/utils';
- import { translate } from '../../../base/i18n/functions';
- import { IconDotsHorizontal } from '../../../base/icons/svg';
- import { getLocalParticipant } from '../../../base/participants/functions';
- import Popover from '../../../base/popover/components/Popover.web';
- import { setParticipantContextMenuOpen } from '../../../base/responsive-ui/actions';
- import { getHideSelfView } from '../../../base/settings/functions.web';
- import { getLocalVideoTrack } from '../../../base/tracks/functions';
- import Button from '../../../base/ui/components/web/Button';
- import ContextMenu from '../../../base/ui/components/web/ContextMenu';
- import ContextMenuItemGroup from '../../../base/ui/components/web/ContextMenuItemGroup';
- // @ts-ignore
- import ConnectionIndicatorContent from '../../../connection-indicator/components/web/ConnectionIndicatorContent';
- import { THUMBNAIL_TYPE } from '../../../filmstrip/constants';
- import { isStageFilmstripAvailable } from '../../../filmstrip/functions.web';
- import { renderConnectionStatus } from '../../actions.web';
-
- // @ts-ignore
- import ConnectionStatusButton from './ConnectionStatusButton';
- // @ts-ignore
- import FlipLocalVideoButton from './FlipLocalVideoButton';
- // @ts-ignore
- import HideSelfViewVideoButton from './HideSelfViewVideoButton';
- // @ts-ignore
- import TogglePinToStageButton from './TogglePinToStageButton';
- /* eslint-enable lines-around-comment */
-
- /**
- * The type of the React {@code Component} props of
- * {@link LocalVideoMenuTriggerButton}.
- */
- interface IProps extends WithTranslation {
-
- /**
- * The id of the local participant.
- */
- _localParticipantId: string;
-
- /**
- * The position relative to the trigger the local video menu should display
- * from.
- */
- _menuPosition: string;
-
- /**
- * Whether to display the Popover as a drawer.
- */
- _overflowDrawer: boolean;
-
- /**
- * Whether to render the connection info pane.
- */
- _showConnectionInfo: boolean;
-
- /**
- * Whether to render the hide self view button.
- */
- _showHideSelfViewButton: boolean;
-
- /**
- * Shows/hides the local video flip button.
- */
- _showLocalVideoFlipButton: boolean;
-
- /**
- * Whether to render the pin to stage button.
- */
- _showPinToStage: boolean;
-
- /**
- * Whether or not the button should be visible.
- */
- buttonVisible: boolean;
-
- /**
- * An object containing the CSS classes.
- */
- classes: any;
-
- /**
- * The redux dispatch function.
- */
- dispatch: Function;
-
- /**
- * Hides popover.
- */
- hidePopover: Function;
-
- /**
- * Whether the popover is visible or not.
- */
- popoverVisible: boolean;
-
- /**
- * Shows popover.
- */
- showPopover: Function;
-
- /**
- * The type of the thumbnail.
- */
- thumbnailType: string;
- }
-
- const styles = () => {
- return {
- triggerButton: {
- padding: '3px !important',
- borderRadius: '4px',
-
- '& svg': {
- width: '18px',
- height: '18px'
- }
- },
-
- contextMenu: {
- position: 'relative' as const,
- marginTop: 0,
- right: 'auto',
- padding: '0',
- minWidth: '200px'
- },
-
- flipText: {
- marginLeft: '36px'
- }
- };
- };
-
- /**
- * React Component for displaying an icon associated with opening the
- * the video menu for the local participant.
- *
- * @augments {Component}
- */
- class LocalVideoMenuTriggerButton extends Component<IProps> {
-
- /**
- * Initializes a new LocalVideoMenuTriggerButton instance.
- *
- * @param {Object} props - The read-only React Component props with which
- * the new instance is to be initialized.
- */
- constructor(props: IProps) {
- super(props);
-
- this._onPopoverClose = this._onPopoverClose.bind(this);
- this._onPopoverOpen = this._onPopoverOpen.bind(this);
- }
-
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const {
- _localParticipantId,
- _menuPosition,
- _overflowDrawer,
- _showConnectionInfo,
- _showHideSelfViewButton,
- _showLocalVideoFlipButton,
- _showPinToStage,
- buttonVisible,
- classes,
- hidePopover,
- popoverVisible,
- t
- } = this.props;
-
- const content = _showConnectionInfo
- ? <ConnectionIndicatorContent participantId = { _localParticipantId } />
- : (
- <ContextMenu
- className = { classes.contextMenu }
- hidden = { false }
- inDrawer = { _overflowDrawer }>
- <ContextMenuItemGroup>
- { _showLocalVideoFlipButton
- && <FlipLocalVideoButton
- className = { _overflowDrawer ? classes.flipText : '' }
- onClick = { hidePopover } />
- }
- { _showHideSelfViewButton
- && <HideSelfViewVideoButton
- className = { _overflowDrawer ? classes.flipText : '' }
- onClick = { hidePopover } />
- }
- {
- _showPinToStage && <TogglePinToStageButton
- className = { _overflowDrawer ? classes.flipText : '' }
- noIcon = { true }
- onClick = { hidePopover }
- participantID = { _localParticipantId } />
- }
- { isMobileBrowser()
- && <ConnectionStatusButton participantId = { _localParticipantId } />
- }
- </ContextMenuItemGroup>
- </ContextMenu>
- );
-
- return (
- isMobileBrowser() || _showLocalVideoFlipButton || _showHideSelfViewButton
- ? <Popover
- content = { content }
- headingLabel = { t('dialog.localUserControls') }
- id = 'local-video-menu-trigger'
- onPopoverClose = { this._onPopoverClose }
- onPopoverOpen = { this._onPopoverOpen }
- overflowDrawer = { _overflowDrawer }
- position = { _menuPosition }
- visible = { popoverVisible }>
- {buttonVisible && !isMobileBrowser() && (
- <Button
- accessibilityLabel = { t('dialog.localUserControls') }
- className = { classes.triggerButton }
- icon = { IconDotsHorizontal }
- size = 'small' />
- )}
- </Popover>
- : null
- );
- }
-
- /**
- * Disable and hide toolbox while context menu is open.
- *
- * @returns {void}
- */
- _onPopoverOpen() {
- const { dispatch, showPopover } = this.props;
-
- showPopover();
- dispatch(setParticipantContextMenuOpen(true));
- }
-
- /**
- * Render normal context menu next time popover dialog opens.
- *
- * @returns {void}
- */
- _onPopoverClose() {
- const { hidePopover, dispatch } = this.props;
-
- hidePopover();
- batch(() => {
- dispatch(setParticipantContextMenuOpen(false));
- dispatch(renderConnectionStatus(false));
- });
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated {@code LocalVideoMenuTriggerButton}'s props.
- *
- * @param {Object} state - The Redux state.
- * @param {Object} ownProps - The own props of the component.
- * @private
- * @returns {IProps}
- */
- function _mapStateToProps(state: IReduxState, ownProps: Partial<IProps>) {
- const { thumbnailType } = ownProps;
- const localParticipant = getLocalParticipant(state);
- const { disableLocalVideoFlip, disableSelfViewSettings } = state['features/base/config'];
- const videoTrack = getLocalVideoTrack(state['features/base/tracks']);
- const { overflowDrawer } = state['features/toolbox'];
- const { showConnectionInfo } = state['features/base/connection'];
- const showHideSelfViewButton = !disableSelfViewSettings && !getHideSelfView(state);
-
- let _menuPosition;
-
- switch (thumbnailType) {
- case THUMBNAIL_TYPE.TILE:
- _menuPosition = 'left-start';
- break;
- case THUMBNAIL_TYPE.VERTICAL:
- _menuPosition = 'left-start';
- break;
- case THUMBNAIL_TYPE.HORIZONTAL:
- _menuPosition = 'top-start';
- break;
- default:
- _menuPosition = 'auto';
- }
-
- return {
- _menuPosition,
- _showLocalVideoFlipButton: !disableLocalVideoFlip && videoTrack?.videoType !== 'desktop',
- _showHideSelfViewButton: showHideSelfViewButton,
- _overflowDrawer: overflowDrawer,
- _localParticipantId: localParticipant?.id ?? '',
- _showConnectionInfo: Boolean(showConnectionInfo),
- _showPinToStage: isStageFilmstripAvailable(state)
- };
- }
-
- export default translate(connect(_mapStateToProps)(withStyles(styles)(LocalVideoMenuTriggerButton)));
|