2022-08-26 18:25:04 +00:00
|
|
|
/* eslint-disable lines-around-comment */
|
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import { View } from 'react-native';
|
|
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
|
|
|
2022-09-07 08:20:05 +00:00
|
|
|
import { createBreakoutRoomsEvent, createToolbarEvent } from '../../../analytics/AnalyticsEvents';
|
|
|
|
import { sendAnalytics } from '../../../analytics/functions';
|
2022-08-26 18:25:04 +00:00
|
|
|
// @ts-ignore
|
|
|
|
import { appNavigate } from '../../../app/actions';
|
2022-10-20 09:11:27 +00:00
|
|
|
import { IReduxState } from '../../../app/types';
|
2022-08-26 18:25:04 +00:00
|
|
|
// @ts-ignore
|
|
|
|
import { ColorSchemeRegistry } from '../../../base/color-scheme';
|
|
|
|
// @ts-ignore
|
|
|
|
import { endConference } from '../../../base/conference';
|
2022-10-11 10:47:54 +00:00
|
|
|
import { hideSheet } from '../../../base/dialog/actions';
|
2022-08-26 18:25:04 +00:00
|
|
|
// @ts-ignore
|
|
|
|
import BottomSheet from '../../../base/dialog/components/native/BottomSheet';
|
2022-10-11 10:47:54 +00:00
|
|
|
import { PARTICIPANT_ROLE } from '../../../base/participants/constants';
|
|
|
|
import { getLocalParticipant } from '../../../base/participants/functions';
|
2022-08-26 18:25:04 +00:00
|
|
|
import Button from '../../../base/ui/components/native/Button';
|
2022-11-09 12:45:55 +00:00
|
|
|
import { BUTTON_TYPES } from '../../../base/ui/constants.native';
|
2022-08-26 18:25:04 +00:00
|
|
|
import { moveToRoom } from '../../../breakout-rooms/actions';
|
|
|
|
import { isInBreakoutRoom } from '../../../breakout-rooms/functions';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Menu presenting options to leave a room or meeting and to end meeting.
|
|
|
|
*
|
|
|
|
* @returns {JSX.Element} - The hangup menu.
|
|
|
|
*/
|
|
|
|
function HangupMenu() {
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
const _styles = useSelector(state => ColorSchemeRegistry.get(state, 'Toolbox'));
|
|
|
|
const inBreakoutRoom = useSelector(isInBreakoutRoom);
|
2022-10-20 09:11:27 +00:00
|
|
|
const isModerator = useSelector((state: IReduxState) =>
|
|
|
|
getLocalParticipant(state)?.role === PARTICIPANT_ROLE.MODERATOR);
|
2022-08-26 18:25:04 +00:00
|
|
|
const { DESTRUCTIVE, SECONDARY } = BUTTON_TYPES;
|
|
|
|
|
|
|
|
const handleEndConference = useCallback(() => {
|
|
|
|
dispatch(hideSheet());
|
|
|
|
sendAnalytics(createToolbarEvent('endmeeting'));
|
|
|
|
dispatch(endConference());
|
2022-11-07 09:30:08 +00:00
|
|
|
dispatch(appNavigate(undefined));
|
2022-08-26 18:25:04 +00:00
|
|
|
}, [ hideSheet ]);
|
|
|
|
|
|
|
|
const handleLeaveConference = useCallback(() => {
|
|
|
|
dispatch(hideSheet());
|
|
|
|
sendAnalytics(createToolbarEvent('hangup'));
|
|
|
|
dispatch(appNavigate(undefined));
|
|
|
|
}, [ hideSheet ]);
|
|
|
|
|
|
|
|
const handleLeaveBreakoutRoom = useCallback(() => {
|
|
|
|
dispatch(hideSheet());
|
|
|
|
sendAnalytics(createBreakoutRoomsEvent('leave'));
|
|
|
|
dispatch(moveToRoom());
|
|
|
|
}, [ hideSheet ]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<BottomSheet>
|
|
|
|
<View style = { _styles.hangupMenuContainer }>
|
|
|
|
{ isModerator && <Button
|
|
|
|
accessibilityLabel = 'toolbar.endConference'
|
|
|
|
labelKey = 'toolbar.endConference'
|
|
|
|
onClick = { handleEndConference }
|
|
|
|
style = { _styles.hangupButton }
|
|
|
|
type = { DESTRUCTIVE } /> }
|
|
|
|
<Button
|
|
|
|
accessibilityLabel = 'toolbar.leaveConference'
|
|
|
|
labelKey = 'toolbar.leaveConference'
|
|
|
|
onClick = { handleLeaveConference }
|
|
|
|
style = { _styles.hangupButton }
|
|
|
|
type = { SECONDARY } />
|
|
|
|
{ inBreakoutRoom && <Button
|
|
|
|
accessibilityLabel = 'breakoutRooms.actions.leaveBreakoutRoom'
|
|
|
|
labelKey = 'breakoutRooms.actions.leaveBreakoutRoom'
|
|
|
|
onClick = { handleLeaveBreakoutRoom }
|
|
|
|
style = { _styles.hangupButton }
|
|
|
|
type = { SECONDARY } /> }
|
|
|
|
</View>
|
|
|
|
</BottomSheet>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default HangupMenu;
|