123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- // @flow
-
- import type { Dispatch } from 'redux';
-
- import { MEDIA_TYPE } from '../base/media';
- import {
- getDominantSpeakerParticipant,
- getLocalParticipant,
- getPinnedParticipant,
- getRemoteParticipants
- } from '../base/participants';
-
- import {
- SELECT_LARGE_VIDEO_PARTICIPANT,
- UPDATE_KNOWN_LARGE_VIDEO_RESOLUTION
- } from './actionTypes';
-
- /**
- * Action to select the participant to be displayed in LargeVideo based on the
- * participant id provided. If a participant id is not provided, the LargeVideo
- * participant will be selected based on a variety of factors: If there is a
- * dominant or pinned speaker, or if there are remote tracks, etc.
- *
- * @param {string} participant - The participant id of the user that needs to be
- * displayed on the large video.
- * @returns {Function}
- */
- export function selectParticipantInLargeVideo(participant: ?string) {
- return (dispatch: Dispatch<any>, getState: Function) => {
- const state = getState();
- const participantId = participant ?? _electParticipantInLargeVideo(state);
- const largeVideo = state['features/large-video'];
- const remoteScreenShares = state['features/video-layout'].remoteScreenShares;
- let latestScreenshareParticipantId;
-
- if (remoteScreenShares && remoteScreenShares.length) {
- latestScreenshareParticipantId = remoteScreenShares[remoteScreenShares.length - 1];
- }
-
- // When trying to auto pin screenshare, always select the endpoint even though it happens to be
- // the large video participant in redux (for the reasons listed above in the large video selection
- // logic above). The auto pin screenshare logic kicks in after the track is added
- // (which updates the large video participant and selects all endpoints because of the auto tile
- // view mode). If the screenshare endpoint is not among the forwarded endpoints from the bridge,
- // it needs to be selected again at this point.
- if (participantId !== largeVideo.participantId || participantId === latestScreenshareParticipantId) {
- dispatch({
- type: SELECT_LARGE_VIDEO_PARTICIPANT,
- participantId
- });
- }
- };
- }
-
- /**
- * Updates the currently seen resolution of the video displayed on large video.
- *
- * @param {number} resolution - The current resolution (height) of the video.
- * @returns {{
- * type: UPDATE_KNOWN_LARGE_VIDEO_RESOLUTION,
- * resolution: number
- * }}
- */
- export function updateKnownLargeVideoResolution(resolution: number) {
- return {
- type: UPDATE_KNOWN_LARGE_VIDEO_RESOLUTION,
- resolution
- };
- }
-
- /**
- * Returns the most recent existing remote video track.
- *
- * @param {Track[]} tracks - All current tracks.
- * @private
- * @returns {(Track|undefined)}
- */
- function _electLastVisibleRemoteVideo(tracks) {
- // First we try to get most recent remote video track.
- for (let i = tracks.length - 1; i >= 0; --i) {
- const track = tracks[i];
-
- if (!track.local && track.mediaType === MEDIA_TYPE.VIDEO) {
- return track;
- }
- }
- }
-
- /**
- * Returns the identifier of the participant who is to be on the stage and
- * should be displayed in {@code LargeVideo}.
- *
- * @param {Object} state - The Redux state from which the participant to be
- * displayed in {@code LargeVideo} is to be elected.
- * @private
- * @returns {(string|undefined)}
- */
- function _electParticipantInLargeVideo(state) {
- // 1. If a participant is pinned, they will be shown in the LargeVideo
- // (regardless of whether they are local or remote).
- let participant = getPinnedParticipant(state);
-
- if (participant) {
- return participant.id;
- }
-
- // 2. Next, pick the most recent remote screenshare that was added to the conference.
- const remoteScreenShares = state['features/video-layout'].remoteScreenShares;
-
- if (remoteScreenShares?.length) {
- return remoteScreenShares[remoteScreenShares.length - 1];
- }
-
- // 3. Next, pick the dominant speaker (other than self).
- participant = getDominantSpeakerParticipant(state);
- if (participant && !participant.local) {
- return participant.id;
- }
-
- // In case this is the local participant.
- participant = undefined;
-
- // 4. Next, pick the most recent participant with video.
- const tracks = state['features/base/tracks'];
- const videoTrack = _electLastVisibleRemoteVideo(tracks);
-
- if (videoTrack) {
- return videoTrack.participantId;
- }
-
- // 5. As a last resort, select the participant that joined last (other than poltergist or other bot type
- // participants).
-
- const participants = [ ...getRemoteParticipants(state).values() ];
-
- for (let i = participants.length; i > 0 && !participant; i--) {
- const p = participants[i - 1];
-
- !p.botType && (participant = p);
- }
- if (participant) {
- return participant.id;
- }
-
- return getLocalParticipant(state)?.id;
- }
|