jiti-meet/react/features/participants-pane/components/native/LobbyParticipantList.js

75 lines
2.5 KiB
JavaScript

// @flow
import React, { useCallback } from 'react';
import { useTranslation } from 'react-i18next';
import { ScrollView, Text, View } from 'react-native';
import { useDispatch, useSelector } from 'react-redux';
import Button from '../../../base/ui/components/native/Button';
import { BUTTON_TYPES } from '../../../base/ui/constants.native';
import { admitMultiple } from '../../../lobby/actions.native';
import { getKnockingParticipants, getLobbyEnabled } from '../../../lobby/functions';
import CollapsibleList from './CollapsibleList';
import { LobbyParticipantItem } from './LobbyParticipantItem';
import styles from './styles';
const LobbyParticipantList = () => {
const lobbyEnabled = useSelector(getLobbyEnabled);
const participants = useSelector(getKnockingParticipants);
const dispatch = useDispatch();
const admitAll = useCallback(() =>
dispatch(admitMultiple(participants)),
[ dispatch, participants ]);
const { t } = useTranslation();
if (!lobbyEnabled || !participants.length) {
return null;
}
const title = (
<View style = { styles.lobbyListDetails } >
<Text style = { styles.lobbyListDescription }>
{ t('participantsPane.headings.waitingLobby',
{ count: participants.length }) }
</Text>
{
participants.length > 1 && (
<Button
accessibilityLabel = 'lobby.admitAll'
labelKey = 'lobby.admitAll'
labelStyle = { styles.admitAllButtonLabel }
onClick = { admitAll }
type = { BUTTON_TYPES.TERTIARY } />
)
}
</View>
);
// Regarding the fact that we have 3 sections, we apply
// a certain height percentage for every section in order for all to fit
// inside the participants pane container
const style = participants.length > 1 && styles.lobbyListContent;
return (
<CollapsibleList
title = { title }>
<ScrollView
bounces = { false }
style = { style } >
{
participants.map(p => (
<LobbyParticipantItem
key = { p.id }
participant = { p } />)
)
}
</ScrollView>
</CollapsibleList>
);
};
export default LobbyParticipantList;