123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- import React, { useCallback, useMemo } from 'react';
- import { useTranslation } from 'react-i18next';
- import { useDispatch, useSelector } from 'react-redux';
- import { makeStyles } from 'tss-react/mui';
-
- import { IReduxState, IStore } from '../../../app/types';
- import { isSupported as isAvModerationSupported } from '../../../av-moderation/functions';
- import Avatar from '../../../base/avatar/components/Avatar';
- import { isIosMobileBrowser, isMobileBrowser } from '../../../base/environment/utils';
- import { MEDIA_TYPE } from '../../../base/media/constants';
- import { PARTICIPANT_ROLE } from '../../../base/participants/constants';
- import { getLocalParticipant, hasRaisedHand } from '../../../base/participants/functions';
- import { IParticipant } from '../../../base/participants/types';
- import { isParticipantAudioMuted, isParticipantVideoMuted } from '../../../base/tracks/functions.any';
- import ContextMenu from '../../../base/ui/components/web/ContextMenu';
- import ContextMenuItemGroup from '../../../base/ui/components/web/ContextMenuItemGroup';
- import { getBreakoutRooms, getCurrentRoomId, isInBreakoutRoom } from '../../../breakout-rooms/functions';
- import { IRoom } from '../../../breakout-rooms/types';
- import { displayVerification } from '../../../e2ee/functions';
- import { setVolume } from '../../../filmstrip/actions.web';
- import { isStageFilmstripAvailable } from '../../../filmstrip/functions.web';
- import { QUICK_ACTION_BUTTON } from '../../../participants-pane/constants';
- import { getQuickActionButtonType, isForceMuted } from '../../../participants-pane/functions';
- import { requestRemoteControl, stopController } from '../../../remote-control/actions';
- import { getParticipantMenuButtonsWithNotifyClick, showOverflowDrawer } from '../../../toolbox/functions.web';
- import { NOTIFY_CLICK_MODE } from '../../../toolbox/types';
- import { iAmVisitor } from '../../../visitors/functions';
- import { PARTICIPANT_MENU_BUTTONS as BUTTONS } from '../../constants';
-
- import AskToUnmuteButton from './AskToUnmuteButton';
- import ConnectionStatusButton from './ConnectionStatusButton';
- import CustomOptionButton from './CustomOptionButton';
- import DemoteToVisitorButton from './DemoteToVisitorButton';
- import GrantModeratorButton from './GrantModeratorButton';
- import KickButton from './KickButton';
- import LowerHandButton from './LowerHandButton';
- import MuteButton from './MuteButton';
- import MuteEveryoneElseButton from './MuteEveryoneElseButton';
- import MuteEveryoneElsesVideoButton from './MuteEveryoneElsesVideoButton';
- import MuteVideoButton from './MuteVideoButton';
- import PrivateMessageMenuButton from './PrivateMessageMenuButton';
- import RemoteControlButton, { REMOTE_CONTROL_MENU_STATES } from './RemoteControlButton';
- import SendToRoomButton from './SendToRoomButton';
- import TogglePinToStageButton from './TogglePinToStageButton';
- import VerifyParticipantButton from './VerifyParticipantButton';
- import VolumeSlider from './VolumeSlider';
-
- interface IProps {
-
- /**
- * Class name for the context menu.
- */
- className?: string;
-
- /**
- * Closes a drawer if open.
- */
- closeDrawer?: () => void;
-
- /**
- * The participant for which the drawer is open.
- * It contains the displayName & participantID.
- */
- drawerParticipant?: {
- displayName: string;
- participantID: string;
- };
-
- /**
- * Target elements against which positioning calculations are made.
- */
- offsetTarget?: HTMLElement;
-
- /**
- * Callback for the mouse entering the component.
- */
- onEnter?: (e?: React.MouseEvent) => void;
-
- /**
- * Callback for the mouse leaving the component.
- */
- onLeave?: (e?: React.MouseEvent) => void;
-
- /**
- * Callback for making a selection in the menu.
- */
- onSelect: (value?: boolean | React.MouseEvent) => void;
-
- /**
- * Participant reference.
- */
- participant: IParticipant;
-
- /**
- * The current state of the participant's remote control session.
- */
- remoteControlState?: number;
-
- /**
- * Whether or not the menu is displayed in the thumbnail remote video menu.
- */
- thumbnailMenu?: boolean;
- }
-
- const useStyles = makeStyles()(theme => {
- return {
- text: {
- color: theme.palette.text02,
- padding: '10px 16px',
- height: '40px',
- overflow: 'hidden',
- display: 'flex',
- alignItems: 'center',
- boxSizing: 'border-box'
- }
- };
- });
-
- const ParticipantContextMenu = ({
- className,
- closeDrawer,
- drawerParticipant,
- offsetTarget,
- onEnter,
- onLeave,
- onSelect,
- participant,
- remoteControlState,
- thumbnailMenu
- }: IProps) => {
- const dispatch: IStore['dispatch'] = useDispatch();
- const { t } = useTranslation();
- const { classes: styles } = useStyles();
-
- const localParticipant = useSelector(getLocalParticipant);
- const _isModerator = Boolean(localParticipant?.role === PARTICIPANT_ROLE.MODERATOR);
- const _isVideoForceMuted = useSelector<IReduxState>(state =>
- isForceMuted(participant, MEDIA_TYPE.VIDEO, state));
- const _isAudioMuted = useSelector((state: IReduxState) => isParticipantAudioMuted(participant, state));
- const _isVideoMuted = useSelector((state: IReduxState) => isParticipantVideoMuted(participant, state));
- const _overflowDrawer: boolean = useSelector(showOverflowDrawer);
- const { remoteVideoMenu = {}, disableRemoteMute, startSilent, customParticipantMenuButtons }
- = useSelector((state: IReduxState) => state['features/base/config']);
- const visitorsMode = useSelector((state: IReduxState) => iAmVisitor(state));
- const visitorsSupported = useSelector((state: IReduxState) => state['features/visitors'].supported);
- const { disableDemote, disableKick, disableGrantModerator, disablePrivateChat } = remoteVideoMenu;
- const { participantsVolume } = useSelector((state: IReduxState) => state['features/filmstrip']);
- const _volume = (participant?.local ?? true ? undefined
- : participant?.id ? participantsVolume[participant?.id] : undefined) ?? 1;
- const isBreakoutRoom = useSelector(isInBreakoutRoom);
- const isModerationSupported = useSelector((state: IReduxState) => isAvModerationSupported()(state));
- const raisedHands = hasRaisedHand(participant);
- const stageFilmstrip = useSelector(isStageFilmstripAvailable);
- const shouldDisplayVerification = useSelector((state: IReduxState) => displayVerification(state, participant?.id));
- const buttonsWithNotifyClick = useSelector(getParticipantMenuButtonsWithNotifyClick);
-
- const _currentRoomId = useSelector(getCurrentRoomId);
- const _rooms: IRoom[] = Object.values(useSelector(getBreakoutRooms));
-
- const _onVolumeChange = useCallback(value => {
- dispatch(setVolume(participant.id, value));
- }, [ setVolume, dispatch ]);
-
- const _getCurrentParticipantId = useCallback(() => {
- const drawer = _overflowDrawer && !thumbnailMenu;
-
- return (drawer ? drawerParticipant?.participantID : participant?.id) ?? '';
- }
- , [ thumbnailMenu, _overflowDrawer, drawerParticipant, participant ]);
-
- const notifyClick = useCallback(
- (buttonKey: string) => {
- const notifyMode = buttonsWithNotifyClick?.get(buttonKey);
-
- if (!notifyMode) {
- return;
- }
-
- APP.API.notifyParticipantMenuButtonClicked(
- buttonKey,
- _getCurrentParticipantId(),
- notifyMode === NOTIFY_CLICK_MODE.PREVENT_AND_NOTIFY
- );
- }, [ buttonsWithNotifyClick, _getCurrentParticipantId ]);
-
- const onBreakoutRoomButtonClick = useCallback(() => {
- onSelect(true);
- }, [ onSelect ]);
-
- const isClickedFromParticipantPane = useMemo(
- () => !_overflowDrawer && !thumbnailMenu,
- [ _overflowDrawer, thumbnailMenu ]);
- const quickActionButtonType = useSelector((state: IReduxState) =>
- getQuickActionButtonType(participant, _isAudioMuted, _isVideoMuted, state));
-
- const buttons: JSX.Element[] = [];
- const buttons2: JSX.Element[] = [];
-
- const showVolumeSlider = !startSilent
- && !isIosMobileBrowser()
- && (_overflowDrawer || thumbnailMenu)
- && typeof _volume === 'number'
- && !isNaN(_volume);
-
- const getButtonProps = useCallback((key: string) => {
- const notifyMode = buttonsWithNotifyClick?.get(key);
- const shouldNotifyClick = typeof notifyMode !== 'undefined';
-
- return {
- key,
- notifyMode,
- notifyClick: shouldNotifyClick ? () => notifyClick(key) : undefined,
- participantID: _getCurrentParticipantId()
- };
- }, [ _getCurrentParticipantId, buttonsWithNotifyClick, notifyClick ]);
-
- if (_isModerator) {
- if (isModerationSupported) {
- if (_isAudioMuted && !participant.isSilent
- && !(isClickedFromParticipantPane && quickActionButtonType === QUICK_ACTION_BUTTON.ASK_TO_UNMUTE)) {
- buttons.push(<AskToUnmuteButton
- { ...getButtonProps(BUTTONS.ASK_UNMUTE) }
- buttonType = { MEDIA_TYPE.AUDIO } />
- );
- }
- if (_isVideoForceMuted
- && !(isClickedFromParticipantPane && quickActionButtonType === QUICK_ACTION_BUTTON.ALLOW_VIDEO)) {
- buttons.push(<AskToUnmuteButton
- { ...getButtonProps(BUTTONS.ALLOW_VIDEO) }
- buttonType = { MEDIA_TYPE.VIDEO } />
- );
- }
- }
-
- if (!disableRemoteMute && !participant.isSilent) {
- if (!(isClickedFromParticipantPane && quickActionButtonType === QUICK_ACTION_BUTTON.MUTE)) {
- buttons.push(<MuteButton { ...getButtonProps(BUTTONS.MUTE) } />);
- }
- buttons.push(<MuteEveryoneElseButton { ...getButtonProps(BUTTONS.MUTE_OTHERS) } />);
- if (!(isClickedFromParticipantPane && quickActionButtonType === QUICK_ACTION_BUTTON.STOP_VIDEO)) {
- buttons.push(<MuteVideoButton { ...getButtonProps(BUTTONS.MUTE_VIDEO) } />);
- }
- buttons.push(<MuteEveryoneElsesVideoButton { ...getButtonProps(BUTTONS.MUTE_OTHERS_VIDEO) } />);
- }
-
- if (raisedHands) {
- buttons2.push(<LowerHandButton { ...getButtonProps(BUTTONS.LOWER_PARTICIPANT_HAND) } />);
- }
-
- if (!disableGrantModerator && !isBreakoutRoom) {
- buttons2.push(<GrantModeratorButton { ...getButtonProps(BUTTONS.GRANT_MODERATOR) } />);
- }
-
- if (!disableDemote && visitorsSupported && _isModerator) {
- buttons2.push(<DemoteToVisitorButton { ...getButtonProps(BUTTONS.DEMOTE) } />);
- }
-
- if (!disableKick) {
- buttons2.push(<KickButton { ...getButtonProps(BUTTONS.KICK) } />);
- }
-
- if (shouldDisplayVerification) {
- buttons2.push(<VerifyParticipantButton { ...getButtonProps(BUTTONS.VERIFY) } />);
- }
- }
-
- if (stageFilmstrip) {
- buttons2.push(<TogglePinToStageButton { ...getButtonProps(BUTTONS.PIN_TO_STAGE) } />);
- }
-
- if (!disablePrivateChat && !visitorsMode) {
- buttons2.push(<PrivateMessageMenuButton { ...getButtonProps(BUTTONS.PRIVATE_MESSAGE) } />);
- }
-
- if (thumbnailMenu && isMobileBrowser()) {
- buttons2.push(<ConnectionStatusButton { ...getButtonProps(BUTTONS.CONN_STATUS) } />);
- }
-
- if (thumbnailMenu && remoteControlState) {
- const onRemoteControlToggle = useCallback(() => {
- if (remoteControlState === REMOTE_CONTROL_MENU_STATES.STARTED) {
- dispatch(stopController(true));
- } else if (remoteControlState === REMOTE_CONTROL_MENU_STATES.NOT_STARTED) {
- dispatch(requestRemoteControl(_getCurrentParticipantId()));
- }
- }, [ dispatch, remoteControlState, stopController, requestRemoteControl ]);
-
- buttons2.push(<RemoteControlButton
- { ...getButtonProps(BUTTONS.REMOTE_CONTROL) }
- onClick = { onRemoteControlToggle }
- remoteControlState = { remoteControlState } />
- );
- }
-
- if (customParticipantMenuButtons) {
- customParticipantMenuButtons.forEach(
- ({ icon, id, text }) => {
- buttons2.push(
- <CustomOptionButton
- icon = { icon }
- key = { id }
- // eslint-disable-next-line react/jsx-no-bind
- onClick = { () => notifyClick(id) }
- text = { text } />
- );
- }
- );
- }
-
- const breakoutRoomsButtons: any = [];
-
- if (!thumbnailMenu && _isModerator) {
- _rooms.forEach(room => {
- if (room.id !== _currentRoomId) {
- breakoutRoomsButtons.push(
- <SendToRoomButton
- { ...getButtonProps(BUTTONS.SEND_PARTICIPANT_TO_ROOM) }
- key = { room.id }
- onClick = { onBreakoutRoomButtonClick }
- room = { room } />
- );
- }
- });
- }
-
- return (
- <ContextMenu
- className = { className }
- entity = { participant }
- hidden = { thumbnailMenu ? false : undefined }
- inDrawer = { thumbnailMenu && _overflowDrawer }
- isDrawerOpen = { Boolean(drawerParticipant) }
- offsetTarget = { offsetTarget }
- onClick = { onSelect }
- onDrawerClose = { thumbnailMenu ? onSelect : closeDrawer }
- onMouseEnter = { onEnter }
- onMouseLeave = { onLeave }>
- {!thumbnailMenu && _overflowDrawer && drawerParticipant && <ContextMenuItemGroup
- actions = { [ {
- accessibilityLabel: drawerParticipant.displayName,
- customIcon: <Avatar
- participantId = { drawerParticipant.participantID }
- size = { 20 } />,
- text: drawerParticipant.displayName
- } ] } />}
- {buttons.length > 0 && (
- <ContextMenuItemGroup>
- {buttons}
- </ContextMenuItemGroup>
- )}
- <ContextMenuItemGroup>
- {buttons2}
- </ContextMenuItemGroup>
- {showVolumeSlider && (
- <ContextMenuItemGroup>
- <VolumeSlider
- initialValue = { _volume }
- key = 'volume-slider'
- onChange = { _onVolumeChange } />
- </ContextMenuItemGroup>
- )}
- {breakoutRoomsButtons.length > 0 && (
- <ContextMenuItemGroup>
- <div className = { styles.text }>
- {t('breakoutRooms.actions.sendToBreakoutRoom')}
- </div>
- {breakoutRoomsButtons}
- </ContextMenuItemGroup>
- )}
- </ContextMenu>
- );
- };
-
- export default ParticipantContextMenu;
|