123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- /* 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, getParticipantById } from '../../../base/participants/functions';
- import { IParticipant } from '../../../base/participants/types';
- import Popover from '../../../base/popover/components/Popover.web';
- import { setParticipantContextMenuOpen } from '../../../base/responsive-ui/actions';
- import Button from '../../../base/ui/components/web/Button';
- import ConnectionIndicatorContent from
- // @ts-ignore
- '../../../connection-indicator/components/web/ConnectionIndicatorContent';
- import { THUMBNAIL_TYPE } from '../../../filmstrip/constants';
- import { renderConnectionStatus } from '../../actions.web';
-
- import FakeParticipantContextMenu from './FakeParticipantContextMenu';
- import ParticipantContextMenu from './ParticipantContextMenu';
- // @ts-ignore
- import { REMOTE_CONTROL_MENU_STATES } from './RemoteControlButton';
- /* eslint-enable lines-around-comment */
-
- /**
- * The type of the React {@code Component} props of
- * {@link RemoteVideoMenuTriggerButton}.
- */
- interface IProps extends WithTranslation {
-
- /**
- * Whether the remote video context menu is disabled.
- */
- _disabled: Boolean;
-
- /**
- * Shared video local participant owner.
- */
- _localVideoOwner?: boolean;
-
- /**
- * The position relative to the trigger the remote menu should display
- * from.
- */
- _menuPosition: string;
-
- /**
- * Whether to display the Popover as a drawer.
- */
- _overflowDrawer: boolean;
-
- /**
- * Participant reference.
- */
- _participant: IParticipant;
-
- /**
- * The ID for the participant on which the remote video menu will act.
- */
- _participantDisplayName: string;
-
- /**
- * The current state of the participant's remote control session.
- */
- _remoteControlState: number;
-
- /**
- * Whether the popover should render the Connection Info stats.
- */
- _showConnectionInfo: 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;
-
- /**
- * The ID for the participant on which the remote video menu will act.
- */
- participantID: string;
-
- /**
- * 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',
- marginRight: '4px',
- marginBottom: '4px'
- }
- };
- };
-
- /**
- * React {@code Component} for displaying an icon associated with opening the
- * the {@code VideoMenu}.
- *
- * @augments {Component}
- */
- class RemoteVideoMenuTriggerButton extends Component<IProps> {
-
- /**
- * Initializes a new RemoteVideoMenuTriggerButton 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 {
- _disabled,
- _overflowDrawer,
- _showConnectionInfo,
- _participantDisplayName,
- buttonVisible,
- classes,
- participantID,
- popoverVisible
- } = this.props;
- let content;
-
- if (_showConnectionInfo) {
- content = <ConnectionIndicatorContent participantId = { participantID } />;
- } else if (!_disabled) {
- content = this._renderRemoteVideoMenu();
- }
-
- if (!content) {
- return null;
- }
-
- const username = _participantDisplayName;
-
- return (
- <Popover
- content = { content }
- id = 'remote-video-menu-trigger'
- onPopoverClose = { this._onPopoverClose }
- onPopoverOpen = { this._onPopoverOpen }
- overflowDrawer = { _overflowDrawer }
- position = { this.props._menuPosition }
- visible = { popoverVisible }>
- { buttonVisible && !_disabled && (
- !isMobileBrowser() && <Button
- accessibilityLabel = { this.props.t('dialog.remoteUserControls', { username }) }
- className = { classes.triggerButton }
- icon = { IconDotsHorizontal }
- size = 'small' />
- )}
- </Popover>
- );
- }
-
- /**
- * 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 { dispatch, hidePopover } = this.props;
-
- hidePopover();
- batch(() => {
- dispatch(setParticipantContextMenuOpen(false));
- dispatch(renderConnectionStatus(false));
- });
- }
-
- /**
- * Creates a new {@code VideoMenu} with buttons for interacting with
- * the remote participant.
- *
- * @private
- * @returns {ReactElement}
- */
- _renderRemoteVideoMenu() {
- const { _localVideoOwner, _participant, _remoteControlState, classes } = this.props;
-
- const props = {
- className: classes.contextMenu,
- onSelect: this._onPopoverClose,
- participant: _participant,
- thumbnailMenu: true
- };
-
- if (_participant?.fakeParticipant) {
- return (
- <FakeParticipantContextMenu
- { ...props }
- localVideoOwner = { _localVideoOwner } />
- );
- }
-
- return (
- <ParticipantContextMenu
- { ...props }
- remoteControlState = { _remoteControlState } />
- );
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated {@code RemoteVideoMenuTriggerButton}'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 { participantID, thumbnailType } = ownProps;
- let _remoteControlState = null;
- const localParticipantId = getLocalParticipant(state)?.id;
- const participant = getParticipantById(state, participantID ?? '');
- const _participantDisplayName = participant?.name;
- const _isRemoteControlSessionActive = participant?.remoteControlSessionStatus ?? false;
- const _supportsRemoteControl = participant?.supportsRemoteControl ?? false;
- const { active, controller } = state['features/remote-control'];
- const { requestedParticipant, controlled } = controller;
- const activeParticipant = requestedParticipant || controlled;
- const { overflowDrawer } = state['features/toolbox'];
- const { showConnectionInfo } = state['features/base/connection'];
- const { remoteVideoMenu } = state['features/base/config'];
- const { ownerId } = state['features/shared-video'];
-
- if (_supportsRemoteControl
- && ((!active && !_isRemoteControlSessionActive) || activeParticipant === participantID)) {
- if (requestedParticipant === participantID) {
- _remoteControlState = REMOTE_CONTROL_MENU_STATES.REQUESTING;
- } else if (controlled) {
- _remoteControlState = REMOTE_CONTROL_MENU_STATES.STARTED;
- } else {
- _remoteControlState = REMOTE_CONTROL_MENU_STATES.NOT_STARTED;
- }
- }
-
- let _menuPosition;
-
- switch (thumbnailType) {
- case THUMBNAIL_TYPE.TILE:
- _menuPosition = 'left-start';
- break;
- case THUMBNAIL_TYPE.VERTICAL:
- _menuPosition = 'left-end';
- break;
- case THUMBNAIL_TYPE.HORIZONTAL:
- _menuPosition = 'top';
- break;
- default:
- _menuPosition = 'auto';
- }
-
- return {
- _disabled: Boolean(remoteVideoMenu?.disabled),
- _localVideoOwner: Boolean(ownerId === localParticipantId),
- _menuPosition,
- _overflowDrawer: overflowDrawer,
- _participant: participant ?? { id: '' },
- _participantDisplayName: _participantDisplayName ?? '',
- _remoteControlState,
- _showConnectionInfo: Boolean(showConnectionInfo)
- };
- }
-
- export default translate(connect(_mapStateToProps)(
- withStyles(styles)(RemoteVideoMenuTriggerButton)));
|