2022-08-08 08:12:22 +00:00
|
|
|
/* eslint-disable lines-around-comment */
|
|
|
|
// @ts-ignore
|
2020-07-09 07:17:23 +00:00
|
|
|
import { getGravatarURL } from '@jitsi/js-utils/avatar';
|
2017-09-01 21:25:48 +00:00
|
|
|
|
2022-08-08 09:36:06 +00:00
|
|
|
import { IState, IStore } from '../../app/types';
|
2022-08-08 08:12:22 +00:00
|
|
|
// @ts-ignore
|
2022-04-12 13:19:10 +00:00
|
|
|
import { isStageFilmstripAvailable } from '../../filmstrip/functions';
|
2022-08-08 08:12:22 +00:00
|
|
|
import { GRAVATAR_BASE_URL } from '../avatar/constants';
|
|
|
|
import { isCORSAvatarURL } from '../avatar/functions';
|
|
|
|
// @ts-ignore
|
2022-04-29 14:32:16 +00:00
|
|
|
import { getMultipleVideoSupportFeatureFlag, getSourceNameSignalingFeatureFlag } from '../config';
|
2022-08-08 08:12:22 +00:00
|
|
|
import i18next from '../i18n/i18next';
|
2022-05-25 01:37:08 +00:00
|
|
|
import { JitsiParticipantConnectionStatus, JitsiTrackStreamingStatus } from '../lib-jitsi-meet';
|
2022-08-08 08:12:22 +00:00
|
|
|
// @ts-ignore
|
2022-05-19 20:25:35 +00:00
|
|
|
import { shouldRenderVideoTrack } from '../media';
|
2022-08-08 08:12:22 +00:00
|
|
|
import { toState } from '../redux/functions';
|
|
|
|
// @ts-ignore
|
2022-05-19 20:25:35 +00:00
|
|
|
import { getScreenShareTrack, getVideoTrackByParticipant } from '../tracks';
|
2022-08-08 08:12:22 +00:00
|
|
|
import { createDeferred } from '../util/helpers';
|
2019-01-25 10:17:58 +00:00
|
|
|
|
2022-04-29 14:32:16 +00:00
|
|
|
import { JIGASI_PARTICIPANT_ICON, MAX_DISPLAY_NAME_LENGTH, PARTICIPANT_ROLE } from './constants';
|
2022-08-08 08:12:22 +00:00
|
|
|
// @ts-ignore
|
2019-06-26 14:08:23 +00:00
|
|
|
import { preloadImage } from './preloadImage';
|
2022-08-08 08:12:22 +00:00
|
|
|
import { Participant } from './reducer';
|
2017-08-16 21:28:39 +00:00
|
|
|
|
2019-06-26 14:08:23 +00:00
|
|
|
/**
|
|
|
|
* Temp structures for avatar urls to be checked/preloaded.
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
const AVATAR_QUEUE: Object[] = [];
|
2019-06-26 14:08:23 +00:00
|
|
|
const AVATAR_CHECKED_URLS = new Map();
|
2020-11-15 21:33:55 +00:00
|
|
|
/* eslint-disable arrow-body-style, no-unused-vars */
|
2019-06-26 14:08:23 +00:00
|
|
|
const AVATAR_CHECKER_FUNCTIONS = [
|
2022-08-08 08:12:22 +00:00
|
|
|
(participant: Participant) => {
|
2019-07-16 10:23:01 +00:00
|
|
|
return participant && participant.isJigasi ? JIGASI_PARTICIPANT_ICON : null;
|
|
|
|
},
|
2022-08-08 08:12:22 +00:00
|
|
|
(participant: Participant) => {
|
2019-06-26 14:08:23 +00:00
|
|
|
return participant && participant.avatarURL ? participant.avatarURL : null;
|
|
|
|
},
|
2022-08-08 08:12:22 +00:00
|
|
|
(participant: Participant, store: IStore) => {
|
2022-05-09 05:36:39 +00:00
|
|
|
const config = store.getState()['features/base/config'];
|
|
|
|
const isGravatarDisabled = config.gravatar?.disabled;
|
|
|
|
|
|
|
|
if (participant && participant.email && !isGravatarDisabled) {
|
|
|
|
const gravatarBaseURL = config.gravatar?.baseUrl
|
|
|
|
|| config.gravatarBaseURL
|
|
|
|
|| GRAVATAR_BASE_URL;
|
2020-11-24 10:19:08 +00:00
|
|
|
|
|
|
|
return getGravatarURL(participant.email, gravatarBaseURL);
|
2020-11-15 21:33:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2019-06-26 14:08:23 +00:00
|
|
|
}
|
|
|
|
];
|
2020-11-15 21:33:55 +00:00
|
|
|
/* eslint-enable arrow-body-style, no-unused-vars */
|
2019-06-26 14:08:23 +00:00
|
|
|
|
2022-07-20 19:51:47 +00:00
|
|
|
/**
|
|
|
|
* Returns the list of active speakers that should be moved to the top of the sorted list of participants so that the
|
|
|
|
* dominant speaker is visible always on the vertical filmstrip in stage layout.
|
|
|
|
*
|
|
|
|
* @param {Function | Object} stateful - The (whole) redux state, or redux's {@code getState} function to be used to
|
|
|
|
* retrieve the state.
|
|
|
|
* @returns {Array<string>}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getActiveSpeakersToBeDisplayed(stateful: IStore | Function) {
|
2022-07-20 19:51:47 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
const {
|
2022-08-12 17:44:09 +00:00
|
|
|
dominantSpeaker,
|
2022-07-20 19:51:47 +00:00
|
|
|
fakeParticipants,
|
|
|
|
sortedRemoteScreenshares,
|
|
|
|
sortedRemoteVirtualScreenshareParticipants,
|
|
|
|
speakersList
|
|
|
|
} = state['features/base/participants'];
|
|
|
|
const { visibleRemoteParticipants } = state['features/filmstrip'];
|
2022-08-16 17:20:29 +00:00
|
|
|
let activeSpeakers = new Map(speakersList);
|
2022-07-20 19:51:47 +00:00
|
|
|
|
2022-08-12 17:44:09 +00:00
|
|
|
// Do not re-sort the active speakers if dominant speaker is currently visible.
|
|
|
|
if (dominantSpeaker && visibleRemoteParticipants.has(dominantSpeaker)) {
|
2022-07-21 15:53:35 +00:00
|
|
|
return activeSpeakers;
|
2022-07-20 19:51:47 +00:00
|
|
|
}
|
|
|
|
let availableSlotsForActiveSpeakers = visibleRemoteParticipants.size;
|
|
|
|
|
2022-08-16 17:20:29 +00:00
|
|
|
if (activeSpeakers.has(dominantSpeaker)) {
|
|
|
|
activeSpeakers.delete(dominantSpeaker);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add dominant speaker to the beginning of the list (not including self) since the active speaker list is always
|
|
|
|
// alphabetically sorted.
|
|
|
|
if (dominantSpeaker && dominantSpeaker !== getLocalParticipant(state).id) {
|
|
|
|
const updatedSpeakers = Array.from(activeSpeakers);
|
|
|
|
|
|
|
|
updatedSpeakers.splice(0, 0, [ dominantSpeaker, getParticipantById(state, dominantSpeaker)?.name ]);
|
|
|
|
activeSpeakers = new Map(updatedSpeakers);
|
|
|
|
}
|
|
|
|
|
2022-07-20 19:51:47 +00:00
|
|
|
// Remove screenshares from the count.
|
|
|
|
if (getMultipleVideoSupportFeatureFlag(state)) {
|
|
|
|
if (sortedRemoteVirtualScreenshareParticipants) {
|
|
|
|
availableSlotsForActiveSpeakers -= sortedRemoteVirtualScreenshareParticipants.size * 2;
|
|
|
|
for (const screenshare of Array.from(sortedRemoteVirtualScreenshareParticipants.keys())) {
|
2022-08-08 08:12:22 +00:00
|
|
|
const ownerId = getVirtualScreenshareParticipantOwnerId(screenshare as string);
|
2022-07-20 19:51:47 +00:00
|
|
|
|
|
|
|
activeSpeakers.delete(ownerId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (sortedRemoteScreenshares) {
|
|
|
|
availableSlotsForActiveSpeakers -= sortedRemoteScreenshares.size;
|
|
|
|
for (const id of Array.from(sortedRemoteScreenshares.keys())) {
|
|
|
|
activeSpeakers.delete(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove shared video from the count.
|
|
|
|
if (fakeParticipants) {
|
|
|
|
availableSlotsForActiveSpeakers -= fakeParticipants.size;
|
|
|
|
}
|
|
|
|
const truncatedSpeakersList = Array.from(activeSpeakers).slice(0, availableSlotsForActiveSpeakers);
|
|
|
|
|
2022-08-08 08:12:22 +00:00
|
|
|
truncatedSpeakersList.sort((a: any, b: any) => a[1].localeCompare(b[1]));
|
2022-07-20 19:51:47 +00:00
|
|
|
|
|
|
|
return new Map(truncatedSpeakersList);
|
|
|
|
}
|
|
|
|
|
2019-06-26 14:08:23 +00:00
|
|
|
/**
|
|
|
|
* Resolves the first loadable avatar URL for a participant.
|
|
|
|
*
|
|
|
|
* @param {Object} participant - The participant to resolve avatars for.
|
2020-11-15 21:33:55 +00:00
|
|
|
* @param {Store} store - Redux store.
|
2019-06-26 14:08:23 +00:00
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getFirstLoadableAvatarUrl(participant: Participant, store: IStore) {
|
|
|
|
const deferred: any = createDeferred();
|
2019-06-26 14:08:23 +00:00
|
|
|
const fullPromise = deferred.promise
|
2020-11-15 21:33:55 +00:00
|
|
|
.then(() => _getFirstLoadableAvatarUrl(participant, store))
|
2022-08-08 08:12:22 +00:00
|
|
|
.then((result: any) => {
|
2019-06-26 14:08:23 +00:00
|
|
|
|
|
|
|
if (AVATAR_QUEUE.length) {
|
2022-08-08 08:12:22 +00:00
|
|
|
const next: any = AVATAR_QUEUE.shift();
|
2019-06-26 14:08:23 +00:00
|
|
|
|
|
|
|
next.resolve();
|
|
|
|
}
|
|
|
|
|
2021-12-17 00:16:24 +00:00
|
|
|
return result;
|
2019-06-26 14:08:23 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (AVATAR_QUEUE.length) {
|
|
|
|
AVATAR_QUEUE.push(deferred);
|
|
|
|
} else {
|
|
|
|
deferred.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
return fullPromise;
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns local participant from Redux state.
|
|
|
|
*
|
2021-07-09 12:36:19 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
2017-10-13 19:31:05 +00:00
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {(Participant|undefined)}
|
|
|
|
*/
|
2022-08-26 09:54:03 +00:00
|
|
|
export function getLocalParticipant(stateful: IStore | Function | IState) {
|
2021-07-09 12:36:19 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
return state.local;
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-05 15:17:25 +00:00
|
|
|
/**
|
|
|
|
* Returns local screen share participant from Redux state.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state features/base/participants.
|
|
|
|
* @returns {(Participant|undefined)}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getLocalScreenShareParticipant(stateful: IStore | Function) {
|
2022-04-05 15:17:25 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
|
|
|
|
|
|
|
return state.localScreenShare;
|
|
|
|
}
|
|
|
|
|
2022-04-14 17:07:17 +00:00
|
|
|
/**
|
|
|
|
* Returns screenshare participant.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's {@code getState} function to be used to
|
|
|
|
* retrieve the state features/base/participants.
|
|
|
|
* @param {string} id - The owner ID of the screenshare participant to retrieve.
|
|
|
|
* @returns {(Participant|undefined)}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getVirtualScreenshareParticipantByOwnerId(stateful: IStore | Function, id: string) {
|
2022-04-29 14:32:16 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
|
|
|
|
if (getMultipleVideoSupportFeatureFlag(state)) {
|
|
|
|
const track = getScreenShareTrack(state['features/base/tracks'], id);
|
|
|
|
|
|
|
|
return getParticipantById(stateful, track?.jitsiTrack.getSourceName());
|
|
|
|
}
|
2022-04-14 17:07:17 +00:00
|
|
|
|
2022-04-29 14:32:16 +00:00
|
|
|
return;
|
2022-04-14 17:07:17 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 11:28:07 +00:00
|
|
|
/**
|
|
|
|
* Normalizes a display name so then no invalid values (padding, length...etc)
|
|
|
|
* can be set.
|
|
|
|
*
|
|
|
|
* @param {string} name - The display name to set.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function getNormalizedDisplayName(name: string) {
|
|
|
|
if (!name || !name.trim()) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return name.trim().substring(0, MAX_DISPLAY_NAME_LENGTH);
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns participant by ID from Redux state.
|
|
|
|
*
|
2021-07-09 12:36:19 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
2017-10-13 19:31:05 +00:00
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @param {string} id - The ID of the participant to retrieve.
|
|
|
|
* @private
|
|
|
|
* @returns {(Participant|undefined)}
|
|
|
|
*/
|
2019-01-25 10:17:58 +00:00
|
|
|
export function getParticipantById(
|
2022-08-25 11:35:19 +00:00
|
|
|
stateful: IStore | Function | IState, id: string): Participant|undefined {
|
2021-07-09 12:36:19 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
2022-04-04 18:57:58 +00:00
|
|
|
const { local, localScreenShare, remote } = state;
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2022-04-04 18:57:58 +00:00
|
|
|
return remote.get(id)
|
|
|
|
|| (local?.id === id ? local : undefined)
|
|
|
|
|| (localScreenShare?.id === id ? localScreenShare : undefined);
|
2021-07-09 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the participant with the ID matching the passed ID or the local participant if the ID is
|
|
|
|
* undefined.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
|
|
|
* @param {string|undefined} [participantID] - An optional partipantID argument.
|
|
|
|
* @returns {Participant|undefined}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getParticipantByIdOrUndefined(stateful: IStore | Function, participantID?: string) {
|
2021-07-09 12:36:19 +00:00
|
|
|
return participantID ? getParticipantById(stateful, participantID) : getLocalParticipant(stateful);
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
2017-06-27 22:56:55 +00:00
|
|
|
/**
|
|
|
|
* Returns a count of the known participants in the passed in redux state,
|
|
|
|
* excluding any fake participants.
|
|
|
|
*
|
2021-07-09 12:36:19 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
2017-10-13 19:31:05 +00:00
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
2017-06-27 22:56:55 +00:00
|
|
|
* @returns {number}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getParticipantCount(stateful: IStore | Function) {
|
2022-04-04 18:57:58 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
const {
|
|
|
|
local,
|
|
|
|
remote,
|
|
|
|
fakeParticipants,
|
2022-04-29 14:32:16 +00:00
|
|
|
sortedRemoteVirtualScreenshareParticipants
|
2022-04-04 18:57:58 +00:00
|
|
|
} = state['features/base/participants'];
|
|
|
|
|
2022-08-01 15:31:38 +00:00
|
|
|
if (getMultipleVideoSupportFeatureFlag(state)) {
|
2022-04-29 14:32:16 +00:00
|
|
|
return remote.size - fakeParticipants.size - sortedRemoteVirtualScreenshareParticipants.size + (local ? 1 : 0);
|
2022-04-04 18:57:58 +00:00
|
|
|
}
|
2021-07-09 12:36:19 +00:00
|
|
|
|
|
|
|
return remote.size - fakeParticipants.size + (local ? 1 : 0);
|
2022-04-04 18:57:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-04-29 14:32:16 +00:00
|
|
|
* Returns participant ID of the owner of a virtual screenshare participant.
|
2022-04-04 18:57:58 +00:00
|
|
|
*
|
2022-04-29 14:32:16 +00:00
|
|
|
* @param {string} id - The ID of the virtual screenshare participant.
|
2022-04-04 18:57:58 +00:00
|
|
|
* @private
|
|
|
|
* @returns {(string|undefined)}
|
|
|
|
*/
|
2022-04-29 14:32:16 +00:00
|
|
|
export function getVirtualScreenshareParticipantOwnerId(id: string) {
|
2022-04-04 18:57:58 +00:00
|
|
|
return id.split('-')[0];
|
2021-07-09 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the Map with fake participants.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
|
|
|
* @returns {Map<string, Participant>} - The Map with fake participants.
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getFakeParticipants(stateful: IStore | Function) {
|
2021-07-09 12:36:19 +00:00
|
|
|
return toState(stateful)['features/base/participants'].fakeParticipants;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a count of the known remote participants in the passed in redux state.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
|
|
|
* @returns {number}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getRemoteParticipantCount(stateful: IStore | Function) {
|
2021-07-09 12:36:19 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
|
|
|
|
2022-08-01 15:31:38 +00:00
|
|
|
if (getMultipleVideoSupportFeatureFlag(state)) {
|
2022-04-29 14:32:16 +00:00
|
|
|
return state.remote.size - state.sortedRemoteVirtualScreenshareParticipants.size;
|
2022-04-04 18:57:58 +00:00
|
|
|
}
|
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
return state.remote.size;
|
2017-08-30 23:17:55 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 20:22:25 +00:00
|
|
|
/**
|
|
|
|
* Returns a count of the known participants in the passed in redux state,
|
|
|
|
* including fake participants.
|
|
|
|
*
|
2021-07-09 12:36:19 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
2018-11-27 20:22:25 +00:00
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
|
|
|
* @returns {number}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getParticipantCountWithFake(stateful: IStore | Function) {
|
2022-04-04 18:57:58 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
const { local, localScreenShare, remote } = state['features/base/participants'];
|
|
|
|
|
2022-08-01 15:31:38 +00:00
|
|
|
if (getMultipleVideoSupportFeatureFlag(state)) {
|
2022-04-04 18:57:58 +00:00
|
|
|
return remote.size + (local ? 1 : 0) + (localScreenShare ? 1 : 0);
|
|
|
|
}
|
2021-07-09 12:36:19 +00:00
|
|
|
|
|
|
|
return remote.size + (local ? 1 : 0);
|
2018-11-27 20:22:25 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 15:30:23 +00:00
|
|
|
/**
|
|
|
|
* Returns participant's display name.
|
2018-11-08 12:25:02 +00:00
|
|
|
*
|
2022-04-14 17:07:17 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's {@code getState} function to be used to
|
|
|
|
* retrieve the state.
|
2017-12-12 15:30:23 +00:00
|
|
|
* @param {string} id - The ID of the participant's display name to retrieve.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
2022-08-26 09:54:03 +00:00
|
|
|
export function getParticipantDisplayName(stateful: IStore | Function | IState, id: string): string {
|
2017-12-12 15:30:23 +00:00
|
|
|
const participant = getParticipantById(stateful, id);
|
2021-11-26 15:39:34 +00:00
|
|
|
const {
|
|
|
|
defaultLocalDisplayName,
|
|
|
|
defaultRemoteDisplayName
|
|
|
|
} = toState(stateful)['features/base/config'];
|
2017-12-12 15:30:23 +00:00
|
|
|
|
|
|
|
if (participant) {
|
2022-04-29 14:32:16 +00:00
|
|
|
if (participant.isVirtualScreenshareParticipant) {
|
2022-04-14 17:07:17 +00:00
|
|
|
return getScreenshareParticipantDisplayName(stateful, id);
|
|
|
|
}
|
|
|
|
|
2017-12-12 15:30:23 +00:00
|
|
|
if (participant.name) {
|
|
|
|
return participant.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (participant.local) {
|
2021-11-26 15:39:34 +00:00
|
|
|
return defaultLocalDisplayName;
|
2017-12-12 15:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-26 15:39:34 +00:00
|
|
|
return defaultRemoteDisplayName;
|
2017-12-12 15:30:23 +00:00
|
|
|
}
|
2017-06-27 22:56:55 +00:00
|
|
|
|
2022-04-14 17:07:17 +00:00
|
|
|
/**
|
|
|
|
* Returns screenshare participant's display name.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's {@code getState} function to be used to
|
|
|
|
* retrieve the state.
|
|
|
|
* @param {string} id - The ID of the screenshare participant's display name to retrieve.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
2022-08-26 09:54:03 +00:00
|
|
|
export function getScreenshareParticipantDisplayName(stateful: IStore | Function| IState, id: string) {
|
2022-05-03 14:25:19 +00:00
|
|
|
const ownerDisplayName = getParticipantDisplayName(stateful, getVirtualScreenshareParticipantOwnerId(id));
|
2022-04-14 17:07:17 +00:00
|
|
|
|
2022-05-03 14:25:19 +00:00
|
|
|
return i18next.t('screenshareDisplayName', { name: ownerDisplayName });
|
2022-04-14 17:07:17 +00:00
|
|
|
}
|
|
|
|
|
2018-05-21 20:52:30 +00:00
|
|
|
/**
|
|
|
|
* Returns the presence status of a participant associated with the passed id.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state.
|
|
|
|
* @param {string} id - The id of the participant.
|
|
|
|
* @returns {string} - The presence status.
|
|
|
|
*/
|
|
|
|
export function getParticipantPresenceStatus(
|
2022-08-08 08:12:22 +00:00
|
|
|
stateful: IStore | Function, id: string) {
|
2018-05-21 20:52:30 +00:00
|
|
|
if (!id) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
const participantById = getParticipantById(stateful, id);
|
|
|
|
|
|
|
|
if (!participantById) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return participantById.presence;
|
|
|
|
}
|
|
|
|
|
2017-06-27 22:56:55 +00:00
|
|
|
/**
|
2021-07-09 12:36:19 +00:00
|
|
|
* Selectors for getting all remote participants.
|
2017-06-27 22:56:55 +00:00
|
|
|
*
|
2021-07-09 12:36:19 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
2017-10-13 19:31:05 +00:00
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
2021-07-09 12:36:19 +00:00
|
|
|
* @returns {Map<string, Object>}
|
2017-06-27 22:56:55 +00:00
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getRemoteParticipants(stateful: IStore | Function) {
|
2021-07-09 12:36:19 +00:00
|
|
|
return toState(stateful)['features/base/participants'].remote;
|
2017-06-27 22:56:55 +00:00
|
|
|
}
|
|
|
|
|
2021-09-10 17:37:05 +00:00
|
|
|
/**
|
|
|
|
* Selectors for the getting the remote participants in the order that they are displayed in the filmstrip.
|
|
|
|
*
|
|
|
|
@param {(Function|Object)} stateful - The (whole) redux state, or redux's {@code getState} function to be used to
|
|
|
|
* retrieve the state features/filmstrip.
|
|
|
|
* @returns {Array<string>}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getRemoteParticipantsSorted(stateful: IStore | Function) {
|
2021-09-10 17:37:05 +00:00
|
|
|
return toState(stateful)['features/filmstrip'].remoteParticipants;
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
2021-07-09 12:36:19 +00:00
|
|
|
* Returns the participant which has its pinned state set to truthy.
|
2016-10-05 14:36:59 +00:00
|
|
|
*
|
2021-07-09 12:36:19 +00:00
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
2017-10-13 19:31:05 +00:00
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
2021-07-09 12:36:19 +00:00
|
|
|
* @returns {(Participant|undefined)}
|
2016-10-05 14:36:59 +00:00
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getPinnedParticipant(stateful: IStore | Function) {
|
2022-03-29 08:45:09 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
const { pinnedParticipant } = state['features/base/participants'];
|
2022-04-12 13:19:10 +00:00
|
|
|
const stageFilmstrip = isStageFilmstripAvailable(state);
|
2022-03-29 08:45:09 +00:00
|
|
|
|
|
|
|
if (stageFilmstrip) {
|
|
|
|
const { activeParticipants } = state['features/filmstrip'];
|
2022-08-08 08:12:22 +00:00
|
|
|
const id = activeParticipants.find((p: Participant) => p.pinned)?.participantId;
|
2022-03-29 08:45:09 +00:00
|
|
|
|
|
|
|
return id ? getParticipantById(stateful, id) : undefined;
|
|
|
|
}
|
2018-05-17 15:45:51 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
if (!pinnedParticipant) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2020-06-12 10:15:16 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
return getParticipantById(stateful, pinnedParticipant);
|
2020-06-12 10:15:16 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 10:13:28 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the participant is a moderator.
|
|
|
|
*
|
|
|
|
* @param {string} participant - Participant object.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function isParticipantModerator(participant?: Participant) {
|
2020-07-15 10:13:28 +00:00
|
|
|
return participant?.role === PARTICIPANT_ROLE.MODERATOR;
|
|
|
|
}
|
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
/**
|
|
|
|
* Returns the dominant speaker participant.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state features/base/participants.
|
|
|
|
* @returns {Participant} - The participant from the redux store.
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getDominantSpeakerParticipant(stateful: IStore | Function) {
|
2021-07-09 12:36:19 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
|
|
|
const { dominantSpeaker } = state;
|
|
|
|
|
|
|
|
if (!dominantSpeaker) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
return getParticipantById(stateful, dominantSpeaker);
|
|
|
|
}
|
|
|
|
|
2019-05-22 10:00:17 +00:00
|
|
|
/**
|
|
|
|
* Returns true if all of the meeting participants are moderators.
|
|
|
|
*
|
|
|
|
* @param {Object|Function} stateful -Object or function that can be resolved
|
|
|
|
* to the Redux state.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function isEveryoneModerator(stateful: IStore | Function) {
|
2021-07-09 12:36:19 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
2019-05-22 10:00:17 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
return state.everyoneIsModerator === true;
|
2019-05-22 10:00:17 +00:00
|
|
|
}
|
|
|
|
|
2019-07-16 10:23:01 +00:00
|
|
|
/**
|
2019-08-30 16:39:06 +00:00
|
|
|
* Checks a value and returns true if it's a preloaded icon object.
|
2019-07-16 10:23:01 +00:00
|
|
|
*
|
2019-08-30 16:39:06 +00:00
|
|
|
* @param {?string | ?Object} icon - The icon to check.
|
2019-07-16 10:23:01 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function isIconUrl(icon?: string | Object) {
|
2021-01-05 19:02:11 +00:00
|
|
|
return Boolean(icon) && (typeof icon === 'object' || typeof icon === 'function');
|
2019-07-16 10:23:01 +00:00
|
|
|
}
|
|
|
|
|
2018-05-17 15:45:51 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the current local participant is a moderator in the
|
|
|
|
* conference.
|
|
|
|
*
|
|
|
|
* @param {Object|Function} stateful - Object or function that can be resolved
|
|
|
|
* to the Redux state.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-08-08 09:36:06 +00:00
|
|
|
export function isLocalParticipantModerator(stateful: IStore | Function | IState) {
|
2021-07-09 12:36:19 +00:00
|
|
|
const state = toState(stateful)['features/base/participants'];
|
|
|
|
|
|
|
|
const { local } = state;
|
2018-05-17 15:45:51 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
if (!local) {
|
2018-05-17 15:45:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
return isParticipantModerator(local);
|
2018-05-17 15:45:51 +00:00
|
|
|
}
|
2019-01-25 10:17:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the video of the participant should be rendered.
|
2019-08-02 17:22:19 +00:00
|
|
|
* NOTE: This is currently only used on mobile.
|
2019-01-25 10:17:58 +00:00
|
|
|
*
|
|
|
|
* @param {Object|Function} stateful - Object or function that can be resolved
|
|
|
|
* to the Redux state.
|
|
|
|
* @param {string} id - The ID of the participant.
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function shouldRenderParticipantVideo(stateful: IStore | Function, id: string) {
|
2019-01-25 10:17:58 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
const participant = getParticipantById(state, id);
|
|
|
|
|
|
|
|
if (!participant) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-02 17:22:19 +00:00
|
|
|
/* First check if we have an unmuted video track. */
|
2022-05-19 20:25:35 +00:00
|
|
|
const videoTrack = getVideoTrackByParticipant(state['features/base/tracks'], participant);
|
2019-08-02 17:22:19 +00:00
|
|
|
|
|
|
|
if (!shouldRenderVideoTrack(videoTrack, /* waitForVideoStarted */ false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-05-25 01:37:08 +00:00
|
|
|
/* Then check if the participant connection or track streaming status is active. */
|
|
|
|
if (getSourceNameSignalingFeatureFlag(state)) {
|
|
|
|
// Note that this will work only if a listener is registered for the track's TrackStreamingStatus.
|
|
|
|
// The associated TrackStreamingStatusImpl instance is not created or disposed when there are zero listeners.
|
|
|
|
if (videoTrack
|
|
|
|
&& !videoTrack.local
|
|
|
|
&& videoTrack.jitsiTrack?.getTrackStreamingStatus() !== JitsiTrackStreamingStatus.ACTIVE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const connectionStatus = participant.connectionStatus || JitsiParticipantConnectionStatus.ACTIVE;
|
2019-08-02 17:22:19 +00:00
|
|
|
|
2022-05-25 01:37:08 +00:00
|
|
|
if (connectionStatus !== JitsiParticipantConnectionStatus.ACTIVE) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-08-02 17:22:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Then check if audio-only mode is not active. */
|
2019-07-31 12:47:52 +00:00
|
|
|
const audioOnly = state['features/base/audio-only'].enabled;
|
2019-01-25 10:17:58 +00:00
|
|
|
|
2019-08-02 17:22:19 +00:00
|
|
|
if (!audioOnly) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Last, check if the participant is sharing their screen and they are on stage. */
|
2021-01-28 12:36:01 +00:00
|
|
|
const remoteScreenShares = state['features/video-layout'].remoteScreenShares || [];
|
2019-08-02 17:22:19 +00:00
|
|
|
const largeVideoParticipantId = state['features/large-video'].participantId;
|
|
|
|
const participantIsInLargeVideoWithScreen
|
2021-01-28 12:36:01 +00:00
|
|
|
= participant.id === largeVideoParticipantId && remoteScreenShares.includes(participant.id);
|
2019-08-02 17:22:19 +00:00
|
|
|
|
|
|
|
return participantIsInLargeVideoWithScreen;
|
2019-01-25 10:17:58 +00:00
|
|
|
}
|
2019-06-26 14:08:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolves the first loadable avatar URL for a participant.
|
|
|
|
*
|
|
|
|
* @param {Object} participant - The participant to resolve avatars for.
|
2020-11-15 21:33:55 +00:00
|
|
|
* @param {Store} store - Redux store.
|
2019-06-26 14:08:23 +00:00
|
|
|
* @returns {?string}
|
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
async function _getFirstLoadableAvatarUrl(participant: Participant, store: IStore) {
|
2019-06-26 14:08:23 +00:00
|
|
|
for (let i = 0; i < AVATAR_CHECKER_FUNCTIONS.length; i++) {
|
2020-11-15 21:33:55 +00:00
|
|
|
const url = AVATAR_CHECKER_FUNCTIONS[i](participant, store);
|
2019-06-26 14:08:23 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
if (url !== null) {
|
2019-06-26 14:08:23 +00:00
|
|
|
if (AVATAR_CHECKED_URLS.has(url)) {
|
2021-12-17 00:16:24 +00:00
|
|
|
const { isLoadable, isUsingCORS } = AVATAR_CHECKED_URLS.get(url) || {};
|
|
|
|
|
|
|
|
if (isLoadable) {
|
|
|
|
return {
|
|
|
|
isUsingCORS,
|
|
|
|
src: url
|
|
|
|
};
|
2019-06-26 14:08:23 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
try {
|
2021-12-17 00:16:24 +00:00
|
|
|
const { corsAvatarURLs } = store.getState()['features/base/config'];
|
|
|
|
const { isUsingCORS, src } = await preloadImage(url, isCORSAvatarURL(url, corsAvatarURLs));
|
|
|
|
|
|
|
|
AVATAR_CHECKED_URLS.set(src, {
|
|
|
|
isLoadable: true,
|
|
|
|
isUsingCORS
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
isUsingCORS,
|
|
|
|
src
|
|
|
|
};
|
2019-06-26 14:08:23 +00:00
|
|
|
} catch (e) {
|
2021-12-17 00:16:24 +00:00
|
|
|
AVATAR_CHECKED_URLS.set(url, {
|
|
|
|
isLoadable: false,
|
|
|
|
isUsingCORS: false
|
|
|
|
});
|
2019-06-26 14:08:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
}
|
2021-08-18 11:29:41 +00:00
|
|
|
|
2021-09-10 11:05:16 +00:00
|
|
|
/**
|
|
|
|
* Get the participants queue with raised hands.
|
|
|
|
*
|
|
|
|
* @param {(Function|Object)} stateful - The (whole) redux state, or redux's
|
|
|
|
* {@code getState} function to be used to retrieve the state
|
|
|
|
* features/base/participants.
|
2021-10-21 09:40:57 +00:00
|
|
|
* @returns {Array<Object>}
|
2021-09-10 11:05:16 +00:00
|
|
|
*/
|
2022-08-08 08:12:22 +00:00
|
|
|
export function getRaiseHandsQueue(stateful: IStore | Function): Array<Object> {
|
2021-09-10 11:05:16 +00:00
|
|
|
const { raisedHandsQueue } = toState(stateful)['features/base/participants'];
|
|
|
|
|
|
|
|
return raisedHandsQueue;
|
|
|
|
}
|
2021-10-21 09:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether the given participant has his hand raised or not.
|
|
|
|
*
|
|
|
|
* @param {Object} participant - The participant.
|
|
|
|
* @returns {boolean} - Whether participant has raise hand or not.
|
|
|
|
*/
|
2022-08-26 09:54:03 +00:00
|
|
|
export function hasRaisedHand(participant?: Participant): boolean {
|
|
|
|
return Boolean(participant?.raisedHandTimestamp);
|
2021-10-21 09:40:57 +00:00
|
|
|
}
|