Raise Hand in Group Calls

This commit is contained in:
ayumi-signal
2023-12-06 13:52:29 -08:00
committed by GitHub
parent 45aeaeefd4
commit d6db3f7943
33 changed files with 1050 additions and 51 deletions

View File

@@ -96,6 +96,7 @@ export type ActiveGroupCallType = ActiveCallBaseType & {
groupMembers: Array<Pick<ConversationType, 'id' | 'firstName' | 'title'>>;
isConversationTooBigToRing: boolean;
peekedParticipants: Array<ConversationType>;
raisedHands: Set<number>;
remoteParticipants: Array<GroupCallRemoteParticipantType>;
remoteAudioLevels: Map<number, number>;
};
@@ -158,6 +159,7 @@ export type GroupCallRemoteParticipantType = ConversationType & {
demuxId: number;
hasRemoteAudio: boolean;
hasRemoteVideo: boolean;
isHandRaised: boolean;
presenting: boolean;
sharingScreen: boolean;
speakerTime?: number;