45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
// @flow
|
|
|
|
import React, { useCallback } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useDispatch } from 'react-redux';
|
|
|
|
import { setKnockingParticipantApproval } from '../../lobby/actions';
|
|
import { ActionTrigger, MediaState } from '../constants';
|
|
|
|
import { ParticipantItem } from './ParticipantItem';
|
|
import { ParticipantActionButton } from './styled';
|
|
|
|
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
|
|
actionsTrigger = { ActionTrigger.Permanent }
|
|
audioMuteState = { MediaState.None }
|
|
participant = { p }
|
|
videoMuteState = { MediaState.None }>
|
|
<ParticipantActionButton
|
|
onClick = { reject }>
|
|
{t('lobby.reject')}
|
|
</ParticipantActionButton>
|
|
<ParticipantActionButton
|
|
onClick = { admit }
|
|
primary = { true }>
|
|
{t('lobby.admit')}
|
|
</ParticipantActionButton>
|
|
</ParticipantItem>
|
|
);
|
|
};
|