| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import React, { useCallback, useMemo } from 'react';
- import { useTranslation } from 'react-i18next';
- import { useDispatch } from 'react-redux';
-
- import { approveParticipantAudio, approveParticipantVideo } from '../../../av-moderation/actions';
- import { IconMic, IconVideo } from '../../../base/icons/svg';
- import { MEDIA_TYPE, MediaType } from '../../../base/media/constants';
- import ContextMenuItem from '../../../base/ui/components/web/ContextMenuItem';
- import { NOTIFY_CLICK_MODE } from '../../../toolbox/constants';
- import { IButtonProps } from '../../types';
-
- interface IProps extends IButtonProps {
- buttonType: MediaType;
- }
-
- /**
- * Implements a React {@link Component} which displays a button that
- * allows the moderator to request from a participant to mute themselves.
- *
- * @returns {JSX.Element}
- */
- const AskToUnmuteButton = ({
- buttonType,
- notifyMode,
- notifyClick,
- participantID
- }: IProps): JSX.Element => {
- const dispatch = useDispatch();
- const { t } = useTranslation();
- const _onClick = useCallback(() => {
- notifyClick?.();
- if (notifyMode === NOTIFY_CLICK_MODE.PREVENT_AND_NOTIFY) {
- return;
- }
- if (buttonType === MEDIA_TYPE.AUDIO) {
- dispatch(approveParticipantAudio(participantID));
- } else if (buttonType === MEDIA_TYPE.VIDEO) {
- dispatch(approveParticipantVideo(participantID));
- }
- }, [ buttonType, dispatch, notifyClick, notifyMode, participantID ]);
-
- const text = useMemo(() => {
- if (buttonType === MEDIA_TYPE.AUDIO) {
- return t('participantsPane.actions.askUnmute');
- } else if (buttonType === MEDIA_TYPE.VIDEO) {
- return t('participantsPane.actions.allowVideo');
- }
-
- return '';
- }, [ buttonType ]);
-
- const icon = useMemo(() => {
- if (buttonType === MEDIA_TYPE.AUDIO) {
- return IconMic;
- } else if (buttonType === MEDIA_TYPE.VIDEO) {
- return IconVideo;
- }
- }, [ buttonType ]);
-
- return (
- <ContextMenuItem
- accessibilityLabel = { text }
- icon = { icon }
- onClick = { _onClick }
- testId = { `unmute-${buttonType}-${participantID}` }
- text = { text } />
- );
- };
-
- export default AskToUnmuteButton;
|