Show toast when group call is reconnecting
This commit is contained in:
parent
2b8ae412e0
commit
4c78a6c57f
5 changed files with 88 additions and 2 deletions
|
@ -27,6 +27,7 @@ import { LocalizerType } from '../types/Util';
|
|||
import { missingCaseError } from '../util/missingCaseError';
|
||||
import { DirectCallRemoteParticipant } from './DirectCallRemoteParticipant';
|
||||
import { GroupCallRemoteParticipants } from './GroupCallRemoteParticipants';
|
||||
import { GroupCallToastManager } from './GroupCallToastManager';
|
||||
|
||||
export type PropsType = {
|
||||
activeCall: ActiveCallType;
|
||||
|
@ -224,6 +225,12 @@ export const CallScreen: React.FC<PropsType> = ({
|
|||
}}
|
||||
role="group"
|
||||
>
|
||||
{call.callMode === CallMode.Group ? (
|
||||
<GroupCallToastManager
|
||||
connectionState={call.connectionState}
|
||||
i18n={i18n}
|
||||
/>
|
||||
) : null}
|
||||
<div
|
||||
className={classNames('module-ongoing-call__header', controlsFadeClass)}
|
||||
>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue