12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import React, { useCallback } from 'react';
- import { useTranslation } from 'react-i18next';
- import { useDispatch, useSelector } from 'react-redux';
-
- import { endConference } from '../../../base/conference/actions';
- import { isLocalParticipantModerator } from '../../../base/participants/functions';
- import { BUTTON_TYPES } from '../../../base/ui/constants.web';
- import { isInBreakoutRoom } from '../../../breakout-rooms/functions';
-
- import { HangupContextMenuItem } from './HangupContextMenuItem';
-
- /**
- * The type of the React {@code Component} props of {@link EndConferenceButton}.
- */
- type Props = {
-
- /**
- * Key to use for toolbarButtonClicked event.
- */
- buttonKey: string;
-
- /**
- * Notify mode for `toolbarButtonClicked` event -
- * whether to only notify or to also prevent button click routine.
- */
- notifyMode?: string;
- };
-
-
- /**
- * Button to end the conference for all participants.
- *
- * @param {Object} props - Component's props.
- * @returns {JSX.Element} - The end conference button.
- */
- export const EndConferenceButton = (props: Props) => {
- const { t } = useTranslation();
- const dispatch = useDispatch();
- const _isLocalParticipantModerator = useSelector(isLocalParticipantModerator);
- const _isInBreakoutRoom = useSelector(isInBreakoutRoom);
-
- const onEndConference = useCallback(() => {
- dispatch(endConference());
- }, [ dispatch ]);
-
- return (<>
- { !_isInBreakoutRoom && _isLocalParticipantModerator && <HangupContextMenuItem
- accessibilityLabel = { t('toolbar.accessibilityLabel.endConference') }
- buttonKey = { props.buttonKey }
- buttonType = { BUTTON_TYPES.DESTRUCTIVE }
- label = { t('toolbar.endConference') }
- notifyMode = { props.notifyMode }
- onClick = { onEndConference } /> }
- </>);
- };
|