Show raise hand status in call participant list

This commit is contained in:
ayumi-signal 2024-01-17 09:47:45 -08:00 committed by GitHub
parent 23e3883ce0
commit 52d267f7b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 76 additions and 51 deletions

View file

@ -75,6 +75,7 @@ export function ManyParticipants(): JSX.Element {
}),
createParticipant({
hasRemoteAudio: true,
hasRemoteVideo: true,
presenting: true,
name: 'Rage Trunks',
title: 'Rage Trunks',
@ -90,8 +91,18 @@ export function ManyParticipants(): JSX.Element {
title: 'Goku Black',
}),
createParticipant({
isHandRaised: true,
title: 'Supreme Kai Zamasu',
}),
createParticipant({
hasRemoteAudio: false,
hasRemoteVideo: true,
isHandRaised: true,
title: 'Chi Chi',
}),
createParticipant({
title: 'Someone With A Really Long Name',
}),
],
});
return <CallingParticipantsList {...props} />;