123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // @flow
-
- import React, { useCallback } from 'react';
- import { useTranslation } from 'react-i18next';
- import { Button } from 'react-native-paper';
- import { useDispatch } from 'react-redux';
-
- import { setKnockingParticipantApproval } from '../../../lobby/actions.native';
- import { MediaState } from '../../constants';
-
- import ParticipantItem from './ParticipantItem';
- import styles from './styles';
-
- type Props = {
-
- /**
- * Participant reference
- */
- participant: Object
- };
-
- export const LobbyParticipantItem = ({ participant: p }: Props) => {
- const dispatch = useDispatch();
- const admit = useCallback(() => dispatch(setKnockingParticipantApproval(p.id, true), [ dispatch ]));
- const reject = useCallback(() => dispatch(setKnockingParticipantApproval(p.id, false), [ dispatch ]));
- const { t } = useTranslation();
-
- return (
- <ParticipantItem
- audioMuteState = { MediaState.None }
- participant = { p }
- videoMuteState = { MediaState.None }>
- <Button
- onClick = { reject }
- style = { styles.participantActionButton }>
- {t('lobby.reject')}
- </Button>
- <Button
- onClick = { admit }
- style = { styles.participantActionButton }>
- {t('lobby.admit')}
- </Button>
- </ParticipantItem>
- );
- };
|