119 lines
4.7 KiB
JavaScript
119 lines
4.7 KiB
JavaScript
// @flow
|
|
|
|
import React, { useCallback, useState } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { View } from 'react-native';
|
|
import { Button } from 'react-native-paper';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
|
|
import { openDialog, openSheet } from '../../../base/dialog';
|
|
import JitsiScreen from '../../../base/modal/components/JitsiScreen';
|
|
import { isLocalParticipantModerator } from '../../../base/participants';
|
|
import { equals } from '../../../base/redux';
|
|
import {
|
|
getBreakoutRooms,
|
|
getCurrentRoomId,
|
|
isAddBreakoutRoomButtonVisible,
|
|
isAutoAssignParticipantsVisible,
|
|
isInBreakoutRoom
|
|
} from '../../../breakout-rooms/functions';
|
|
import { getKnockingParticipants } from '../../../lobby/functions';
|
|
import MuteEveryoneDialog
|
|
from '../../../video-menu/components/native/MuteEveryoneDialog';
|
|
import { isMoreActionsVisible, isMuteAllVisible } from '../../functions';
|
|
import {
|
|
AddBreakoutRoomButton,
|
|
AutoAssignButton,
|
|
LeaveBreakoutRoomButton
|
|
} from '../breakout-rooms/components/native';
|
|
import { CollapsibleRoom } from '../breakout-rooms/components/native/CollapsibleRoom';
|
|
|
|
import { ContextMenuMore } from './ContextMenuMore';
|
|
import HorizontalDotsIcon from './HorizontalDotsIcon';
|
|
import LobbyParticipantList from './LobbyParticipantList';
|
|
import MeetingParticipantList from './MeetingParticipantList';
|
|
import styles from './styles';
|
|
|
|
/**
|
|
* Participant pane.
|
|
*
|
|
* @returns {React$Element<any>}
|
|
*/
|
|
const ParticipantsPane = () => {
|
|
const dispatch = useDispatch();
|
|
const [ searchString, setSearchString ] = useState('');
|
|
const openMoreMenu = useCallback(() => dispatch(openSheet(ContextMenuMore)), [ dispatch ]);
|
|
const isLocalModerator = useSelector(isLocalParticipantModerator);
|
|
const muteAll = useCallback(() => dispatch(openDialog(MuteEveryoneDialog)),
|
|
[ dispatch ]);
|
|
const { t } = useTranslation();
|
|
|
|
const { conference } = useSelector(state => state['features/base/conference']);
|
|
const _isBreakoutRoomsSupported = conference?.getBreakoutRooms()?.isSupported();
|
|
const currentRoomId = useSelector(getCurrentRoomId);
|
|
const rooms: Array<Object> = Object.values(useSelector(getBreakoutRooms, equals))
|
|
.filter((room: Object) => room.id !== currentRoomId)
|
|
.sort((p1: Object, p2: Object) => (p1?.name || '').localeCompare(p2?.name || ''));
|
|
const inBreakoutRoom = useSelector(isInBreakoutRoom);
|
|
const showAddBreakoutRoom = useSelector(isAddBreakoutRoomButtonVisible);
|
|
const showAutoAssign = useSelector(isAutoAssignParticipantsVisible);
|
|
const showMoreActions = useSelector(isMoreActionsVisible);
|
|
const showMuteAll = useSelector(isMuteAllVisible);
|
|
const lobbyParticipants = useSelector(getKnockingParticipants);
|
|
|
|
return (
|
|
<JitsiScreen style = { styles.participantsPaneContainer }>
|
|
<LobbyParticipantList />
|
|
<MeetingParticipantList
|
|
breakoutRooms = { rooms }
|
|
isLocalModerator = { isLocalModerator }
|
|
lobbyParticipants = { lobbyParticipants }
|
|
searchString = { searchString }
|
|
setSearchString = { setSearchString } />
|
|
{
|
|
showAutoAssign && <AutoAssignButton />
|
|
}
|
|
{
|
|
inBreakoutRoom && <LeaveBreakoutRoomButton />
|
|
}
|
|
{
|
|
_isBreakoutRoomsSupported
|
|
&& rooms.map(room => (<CollapsibleRoom
|
|
key = { room.id }
|
|
room = { room }
|
|
searchString = { searchString } />))
|
|
}
|
|
{
|
|
showAddBreakoutRoom && <AddBreakoutRoomButton />
|
|
}
|
|
{
|
|
isLocalModerator
|
|
&& <View style = { styles.participantsPaneFooter }>
|
|
{
|
|
showMuteAll && (
|
|
<Button
|
|
children = { t('participantsPane.actions.muteAll') }
|
|
labelStyle = { styles.muteAllLabel }
|
|
mode = 'contained'
|
|
onPress = { muteAll }
|
|
style = { styles.muteAllMoreButton } />
|
|
)
|
|
}
|
|
{
|
|
showMoreActions && (
|
|
<Button
|
|
icon = { HorizontalDotsIcon }
|
|
labelStyle = { styles.moreIcon }
|
|
mode = 'contained'
|
|
onPress = { openMoreMenu }
|
|
style = { styles.moreButton } />
|
|
)
|
|
}
|
|
</View>
|
|
}
|
|
</JitsiScreen>
|
|
);
|
|
};
|
|
|
|
export default ParticipantsPane;
|