Show local speaking indicator for group calls
This commit is contained in:
parent
dbb732e7cf
commit
41b4cce6ec
14 changed files with 87 additions and 32 deletions
|
@ -44,6 +44,7 @@ const conversation = getDefaultConversation({
|
|||
type OverridePropsBase = {
|
||||
hasLocalAudio?: boolean;
|
||||
hasLocalVideo?: boolean;
|
||||
amISpeaking?: boolean;
|
||||
isInSpeakerView?: boolean;
|
||||
};
|
||||
|
||||
|
@ -120,6 +121,7 @@ const createActiveCallProp = (
|
|||
'hasLocalVideo',
|
||||
overrideProps.hasLocalVideo || false
|
||||
),
|
||||
amISpeaking: boolean('amISpeaking', overrideProps.amISpeaking || false),
|
||||
isInSpeakerView: boolean(
|
||||
'isInSpeakerView',
|
||||
overrideProps.isInSpeakerView || false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue