fix(raised-hand) Preserve raised hand order for active speaker

- fixes: https://github.com/jitsi/jitsi-meet/issues/10609
This commit is contained in:
hmuresan 2022-01-13 12:48:48 +02:00 committed by Saúl Ibarra Corretgé
parent eb010061e0
commit 8236764501
1 changed files with 6 additions and 5 deletions

View File

@ -225,13 +225,14 @@ export function getSortedParticipantIds(stateful: Object | Function): Array<stri
}
const dominant = [];
const dominantId = dominantSpeaker?.id;
const local = remoteRaisedHandParticipants.has(id) ? [] : [ id ];
// Remove dominant speaker.
if (dominantSpeaker && dominantSpeaker.id !== id) {
remoteRaisedHandParticipants.delete(dominantSpeaker.id);
reorderedParticipants.delete(dominantSpeaker.id);
dominant.push(dominantSpeaker.id);
// In case dominat speaker has raised hand, keep the order in the raised hand queue.
// In case they don't have raised hand, goes first in the participants list.
if (dominantId && dominantId !== id && !remoteRaisedHandParticipants.has(dominantId)) {
reorderedParticipants.delete(dominantId);
dominant.push(dominantId);
}
// Move self and participants with raised hand to the top of the list.