2022-11-01 12:36:32 +00:00
|
|
|
import { IReduxState } from '../../app/types';
|
2022-04-29 14:32:16 +00:00
|
|
|
import {
|
2022-11-08 19:15:49 +00:00
|
|
|
getMultipleVideoSendingSupportFeatureFlag
|
2022-04-29 14:32:16 +00:00
|
|
|
} from '../config/functions.any';
|
2022-11-01 12:36:32 +00:00
|
|
|
import { JitsiTrackErrors, browser } from '../lib-jitsi-meet';
|
2022-09-27 07:10:28 +00:00
|
|
|
import { MEDIA_TYPE, MediaType, VIDEO_TYPE } from '../media/constants';
|
2022-10-06 11:12:57 +00:00
|
|
|
import {
|
|
|
|
getVirtualScreenshareParticipantOwnerId,
|
|
|
|
isScreenShareParticipant
|
|
|
|
} from '../participants/functions';
|
2022-10-20 09:11:27 +00:00
|
|
|
import { IParticipant } from '../participants/types';
|
2016-10-05 14:36:59 +00:00
|
|
|
|
2019-08-21 14:50:00 +00:00
|
|
|
import logger from './logger';
|
2022-11-01 12:36:32 +00:00
|
|
|
import { ITrack } from './types';
|
2017-07-18 21:41:39 +00:00
|
|
|
|
2021-04-21 13:48:05 +00:00
|
|
|
/**
|
|
|
|
* Returns root tracks state.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - Global state.
|
2021-04-21 13:48:05 +00:00
|
|
|
* @returns {Object} Tracks state.
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export const getTrackState = (state: IReduxState) => state['features/base/tracks'];
|
2021-04-21 13:48:05 +00:00
|
|
|
|
|
|
|
/**
|
2021-07-09 12:36:19 +00:00
|
|
|
* Checks if the passed media type is muted for the participant.
|
2021-04-21 13:48:05 +00:00
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IParticipant} participant - Participant reference.
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {MediaType} mediaType - Media type.
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - Global state.
|
2021-07-09 12:36:19 +00:00
|
|
|
* @returns {boolean} - Is the media type muted for the participant.
|
2021-04-21 13:48:05 +00:00
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function isParticipantMediaMuted(participant: IParticipant, mediaType: MediaType, state: IReduxState) {
|
2021-07-09 12:36:19 +00:00
|
|
|
if (!participant) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-04-21 13:48:05 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
const tracks = getTrackState(state);
|
2021-04-21 13:48:05 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
if (participant?.local) {
|
|
|
|
return isLocalTrackMuted(tracks, mediaType);
|
2022-10-06 11:12:57 +00:00
|
|
|
} else if (!participant?.fakeParticipant) {
|
2021-07-09 12:36:19 +00:00
|
|
|
return isRemoteTrackMuted(tracks, mediaType, participant.id);
|
|
|
|
}
|
2021-04-21 13:48:05 +00:00
|
|
|
|
2021-07-09 12:36:19 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-04-21 13:48:05 +00:00
|
|
|
|
|
|
|
/**
|
2021-07-09 12:36:19 +00:00
|
|
|
* Checks if the participant is audio muted.
|
2021-04-21 13:48:05 +00:00
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IParticipant} participant - Participant reference.
|
|
|
|
* @param {IReduxState} state - Global state.
|
2021-07-09 12:36:19 +00:00
|
|
|
* @returns {boolean} - Is audio muted for the participant.
|
2021-04-21 13:48:05 +00:00
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function isParticipantAudioMuted(participant: IParticipant, state: IReduxState) {
|
2021-07-09 12:36:19 +00:00
|
|
|
return isParticipantMediaMuted(participant, MEDIA_TYPE.AUDIO, state);
|
|
|
|
}
|
2021-04-21 13:48:05 +00:00
|
|
|
|
|
|
|
/**
|
2021-07-09 12:36:19 +00:00
|
|
|
* Checks if the participant is video muted.
|
2021-04-21 13:48:05 +00:00
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IParticipant} participant - Participant reference.
|
|
|
|
* @param {IReduxState} state - Global state.
|
2021-07-09 12:36:19 +00:00
|
|
|
* @returns {boolean} - Is video muted for the participant.
|
2021-04-21 13:48:05 +00:00
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function isParticipantVideoMuted(participant: IParticipant, state: IReduxState) {
|
2021-07-09 12:36:19 +00:00
|
|
|
return isParticipantMediaMuted(participant, MEDIA_TYPE.VIDEO, state);
|
|
|
|
}
|
2021-04-21 13:48:05 +00:00
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns local audio track.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getLocalAudioTrack(tracks: ITrack[]) {
|
2016-10-05 14:36:59 +00:00
|
|
|
return getLocalTrack(tracks, MEDIA_TYPE.AUDIO);
|
|
|
|
}
|
|
|
|
|
2022-03-15 17:24:49 +00:00
|
|
|
/**
|
|
|
|
* Returns the local desktop track.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {boolean} [includePending] - Indicates whether a local track is to be returned if it is still pending.
|
|
|
|
* A local track is pending if {@code getUserMedia} is still executing to create it and, consequently, its
|
|
|
|
* {@code jitsiTrack} property is {@code undefined}. By default a pending local track is not returned.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getLocalDesktopTrack(tracks: ITrack[], includePending = false) {
|
2022-03-15 17:24:49 +00:00
|
|
|
return (
|
|
|
|
getLocalTracks(tracks, includePending)
|
|
|
|
.find(t => t.mediaType === MEDIA_TYPE.SCREENSHARE || t.videoType === VIDEO_TYPE.DESKTOP));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the stored local desktop jitsiLocalTrack.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - The redux state.
|
2022-03-15 17:24:49 +00:00
|
|
|
* @returns {JitsiLocalTrack|undefined}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function getLocalJitsiDesktopTrack(state: IReduxState) {
|
2022-03-15 17:24:49 +00:00
|
|
|
const track = getLocalDesktopTrack(getTrackState(state));
|
|
|
|
|
|
|
|
return track?.jitsiTrack;
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns local track by media type.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
|
|
|
* @param {MediaType} mediaType - Media type.
|
2018-04-06 20:04:25 +00:00
|
|
|
* @param {boolean} [includePending] - Indicates whether a local track is to be
|
|
|
|
* returned if it is still pending. A local track is pending if
|
|
|
|
* {@code getUserMedia} is still executing to create it and, consequently, its
|
|
|
|
* {@code jitsiTrack} property is {@code undefined}. By default a pending local
|
|
|
|
* track is not returned.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getLocalTrack(tracks: ITrack[], mediaType: MediaType, includePending = false) {
|
2018-04-06 20:04:25 +00:00
|
|
|
return (
|
|
|
|
getLocalTracks(tracks, includePending)
|
|
|
|
.find(t => t.mediaType === mediaType));
|
2017-11-09 21:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-04-06 20:04:25 +00:00
|
|
|
* Returns an array containing the local tracks with or without a (valid)
|
2017-11-13 22:10:54 +00:00
|
|
|
* {@code JitsiTrack}.
|
2017-11-09 21:59:31 +00:00
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - An array containing all local tracks.
|
2018-04-06 20:04:25 +00:00
|
|
|
* @param {boolean} [includePending] - Indicates whether a local track is to be
|
|
|
|
* returned if it is still pending. A local track is pending if
|
|
|
|
* {@code getUserMedia} is still executing to create it and, consequently, its
|
|
|
|
* {@code jitsiTrack} property is {@code undefined}. By default a pending local
|
|
|
|
* track is not returned.
|
2017-11-09 21:59:31 +00:00
|
|
|
* @returns {Track[]}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getLocalTracks(tracks: ITrack[], includePending = false) {
|
2017-11-13 22:10:54 +00:00
|
|
|
// XXX A local track is considered ready only once it has its `jitsiTrack`
|
|
|
|
// property set by the `TRACK_ADDED` action. Until then there is a stub
|
|
|
|
// added just before the `getUserMedia` call with a cancellable
|
|
|
|
// `gumInProgress` property which then can be used to destroy the track that
|
|
|
|
// has not yet been added to the redux store. Once GUM is cancelled, it will
|
|
|
|
// never make it to the store nor there will be any
|
|
|
|
// `TRACK_ADDED`/`TRACK_REMOVED` actions dispatched for it.
|
2018-04-06 20:04:25 +00:00
|
|
|
return tracks.filter(t => t.local && (t.jitsiTrack || includePending));
|
2016-10-05 14:36:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns local video track.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getLocalVideoTrack(tracks: ITrack[]) {
|
2016-10-05 14:36:59 +00:00
|
|
|
return getLocalTrack(tracks, MEDIA_TYPE.VIDEO);
|
|
|
|
}
|
|
|
|
|
2020-06-19 07:03:26 +00:00
|
|
|
/**
|
|
|
|
* Returns the stored local video track.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - The redux state.
|
2020-06-19 07:03:26 +00:00
|
|
|
* @returns {Object}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function getLocalJitsiVideoTrack(state: IReduxState) {
|
2021-04-21 13:48:05 +00:00
|
|
|
const track = getLocalVideoTrack(getTrackState(state));
|
2020-06-19 07:03:26 +00:00
|
|
|
|
|
|
|
return track?.jitsiTrack;
|
|
|
|
}
|
|
|
|
|
2020-06-26 08:54:12 +00:00
|
|
|
/**
|
|
|
|
* Returns the stored local audio track.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - The redux state.
|
2020-06-26 08:54:12 +00:00
|
|
|
* @returns {Object}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function getLocalJitsiAudioTrack(state: IReduxState) {
|
2021-04-21 13:48:05 +00:00
|
|
|
const track = getLocalAudioTrack(getTrackState(state));
|
2020-06-26 08:54:12 +00:00
|
|
|
|
|
|
|
return track?.jitsiTrack;
|
|
|
|
}
|
|
|
|
|
2022-04-04 18:57:58 +00:00
|
|
|
/**
|
|
|
|
* Returns track of specified media type for specified participant.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - The redux state.
|
|
|
|
* @param {IParticipant} participant - Participant Object.
|
2022-04-04 18:57:58 +00:00
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getVideoTrackByParticipant(
|
2022-10-20 09:11:27 +00:00
|
|
|
state: IReduxState,
|
|
|
|
participant?: IParticipant) {
|
2022-04-04 18:57:58 +00:00
|
|
|
|
|
|
|
if (!participant) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-06 11:12:57 +00:00
|
|
|
const tracks = state['features/base/tracks'];
|
|
|
|
|
|
|
|
if (isScreenShareParticipant(participant)) {
|
2022-04-29 14:32:16 +00:00
|
|
|
return getVirtualScreenshareParticipantTrack(tracks, participant.id);
|
2022-04-04 18:57:58 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 14:32:16 +00:00
|
|
|
return getTrackByMediaTypeAndParticipant(tracks, MEDIA_TYPE.VIDEO, participant.id);
|
2022-04-04 18:57:58 +00:00
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns track of specified media type for specified participant id.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
|
|
|
* @param {MediaType} mediaType - Media type.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @param {string} participantId - Participant ID.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
|
|
|
export function getTrackByMediaTypeAndParticipant(
|
2022-09-23 07:48:20 +00:00
|
|
|
tracks: ITrack[],
|
|
|
|
mediaType: MediaType,
|
2022-11-23 09:12:26 +00:00
|
|
|
participantId?: string) {
|
2016-10-05 14:36:59 +00:00
|
|
|
return tracks.find(
|
2021-02-16 22:20:44 +00:00
|
|
|
t => Boolean(t.jitsiTrack) && t.participantId === participantId && t.mediaType === mediaType
|
2016-10-05 14:36:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-04 18:57:58 +00:00
|
|
|
/**
|
2022-04-29 14:32:16 +00:00
|
|
|
* Returns screenshare track of given virtualScreenshareParticipantId.
|
2022-04-04 18:57:58 +00:00
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
2022-04-29 14:32:16 +00:00
|
|
|
* @param {string} virtualScreenshareParticipantId - Virtual Screenshare Participant ID.
|
2022-04-04 18:57:58 +00:00
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getVirtualScreenshareParticipantTrack(tracks: ITrack[], virtualScreenshareParticipantId: string) {
|
2022-04-29 14:32:16 +00:00
|
|
|
const ownderId = getVirtualScreenshareParticipantOwnerId(virtualScreenshareParticipantId);
|
2022-04-04 18:57:58 +00:00
|
|
|
|
2022-04-29 14:32:16 +00:00
|
|
|
return getScreenShareTrack(tracks, ownderId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns screenshare track of given owner ID.
|
|
|
|
*
|
|
|
|
* @param {Track[]} tracks - List of all tracks.
|
|
|
|
* @param {string} ownerId - Screenshare track owner ID.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getScreenShareTrack(tracks: ITrack[], ownerId: string) {
|
2022-04-29 14:32:16 +00:00
|
|
|
return tracks.find(
|
|
|
|
t => Boolean(t.jitsiTrack)
|
|
|
|
&& t.participantId === ownerId
|
|
|
|
&& (t.mediaType === MEDIA_TYPE.SCREENSHARE || t.videoType === VIDEO_TYPE.DESKTOP)
|
|
|
|
);
|
2022-04-04 18:57:58 +00:00
|
|
|
}
|
|
|
|
|
2021-12-16 17:49:36 +00:00
|
|
|
/**
|
|
|
|
* Returns track source name of specified media type for specified participant id.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
|
|
|
* @param {MediaType} mediaType - Media type.
|
2021-12-16 17:49:36 +00:00
|
|
|
* @param {string} participantId - Participant ID.
|
|
|
|
* @returns {(string|undefined)}
|
|
|
|
*/
|
|
|
|
export function getTrackSourceNameByMediaTypeAndParticipant(
|
2022-09-23 07:48:20 +00:00
|
|
|
tracks: ITrack[],
|
|
|
|
mediaType: MediaType,
|
|
|
|
participantId: string) {
|
2021-12-16 17:49:36 +00:00
|
|
|
const track = getTrackByMediaTypeAndParticipant(
|
|
|
|
tracks,
|
|
|
|
mediaType,
|
|
|
|
participantId);
|
|
|
|
|
|
|
|
return track?.jitsiTrack?.getSourceName();
|
|
|
|
}
|
|
|
|
|
2016-10-05 14:36:59 +00:00
|
|
|
/**
|
|
|
|
* Returns the track if any which corresponds to a specific instance
|
|
|
|
* of JitsiLocalTrack or JitsiRemoteTrack.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @param {(JitsiLocalTrack|JitsiRemoteTrack)} jitsiTrack - JitsiTrack instance.
|
|
|
|
* @returns {(Track|undefined)}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getTrackByJitsiTrack(tracks: ITrack[], jitsiTrack: any) {
|
2016-10-05 14:36:59 +00:00
|
|
|
return tracks.find(t => t.jitsiTrack === jitsiTrack);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns tracks of specified media type.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
|
|
|
* @param {MediaType} mediaType - Media type.
|
2016-10-05 14:36:59 +00:00
|
|
|
* @returns {Track[]}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function getTracksByMediaType(tracks: ITrack[], mediaType: MediaType) {
|
2016-10-05 14:36:59 +00:00
|
|
|
return tracks.filter(t => t.mediaType === mediaType);
|
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the first local track in the given tracks set is muted.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
|
|
|
* @param {MediaType} mediaType - The media type of tracks to be checked.
|
2017-08-18 11:30:30 +00:00
|
|
|
* @returns {boolean} True if local track is muted or false if the track is
|
|
|
|
* unmuted or if there are no local tracks of the given media type in the given
|
|
|
|
* set of tracks.
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function isLocalTrackMuted(tracks: ITrack[], mediaType: MediaType) {
|
2017-08-18 11:30:30 +00:00
|
|
|
const track = getLocalTrack(tracks, mediaType);
|
|
|
|
|
2019-01-05 16:49:21 +00:00
|
|
|
return !track || track.muted;
|
|
|
|
}
|
|
|
|
|
2020-11-04 08:32:06 +00:00
|
|
|
/**
|
|
|
|
* Checks if the local video track is of type DESKtOP.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - The redux state.
|
2020-11-04 08:32:06 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function isLocalVideoTrackDesktop(state: IReduxState) {
|
2022-10-04 13:56:41 +00:00
|
|
|
const desktopTrack = getLocalDesktopTrack(getTrackState(state));
|
2020-11-04 08:32:06 +00:00
|
|
|
|
2022-10-04 13:56:41 +00:00
|
|
|
return desktopTrack !== undefined && !desktopTrack.muted;
|
2020-11-04 08:32:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-01-05 16:49:21 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the remote track of the given media type and the given
|
|
|
|
* participant is muted, false otherwise.
|
|
|
|
*
|
2022-09-23 07:48:20 +00:00
|
|
|
* @param {ITrack[]} tracks - List of all tracks.
|
|
|
|
* @param {MediaType} mediaType - The media type of tracks to be checked.
|
|
|
|
* @param {string} participantId - Participant ID.
|
2019-01-05 16:49:21 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-09-23 07:48:20 +00:00
|
|
|
export function isRemoteTrackMuted(tracks: ITrack[], mediaType: MediaType, participantId: string) {
|
2019-01-05 16:49:21 +00:00
|
|
|
const track = getTrackByMediaTypeAndParticipant(
|
|
|
|
tracks, mediaType, participantId);
|
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
return !track || track.muted;
|
|
|
|
}
|
|
|
|
|
2019-07-10 11:02:27 +00:00
|
|
|
/**
|
|
|
|
* Returns whether or not the current environment needs a user interaction with
|
|
|
|
* the page before any unmute can occur.
|
|
|
|
*
|
2022-10-20 09:11:27 +00:00
|
|
|
* @param {IReduxState} state - The redux state.
|
2019-07-10 11:02:27 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function isUserInteractionRequiredForUnmute(state: IReduxState) {
|
2019-07-13 13:59:58 +00:00
|
|
|
return browser.isUserInteractionRequiredForUnmute()
|
2019-07-10 11:02:27 +00:00
|
|
|
&& window
|
|
|
|
&& window.self !== window.top
|
|
|
|
&& !state['features/base/user-interaction'].interacted;
|
|
|
|
}
|
|
|
|
|
2017-08-18 11:30:30 +00:00
|
|
|
/**
|
2022-03-15 17:24:49 +00:00
|
|
|
* Mutes or unmutes a specific {@code JitsiLocalTrack}. If the muted state of the specified {@code track} is already in
|
|
|
|
* accord with the specified {@code muted} value, then does nothing.
|
2017-08-18 11:30:30 +00:00
|
|
|
*
|
2022-03-15 17:24:49 +00:00
|
|
|
* @param {JitsiLocalTrack} track - The {@code JitsiLocalTrack} to mute or unmute.
|
|
|
|
* @param {boolean} muted - If the specified {@code track} is to be muted, then {@code true}; otherwise, {@code false}.
|
|
|
|
* @param {Object} state - The redux state.
|
2017-08-18 11:30:30 +00:00
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
export function setTrackMuted(track: any, muted: boolean, state: IReduxState) {
|
2017-08-18 11:30:30 +00:00
|
|
|
muted = Boolean(muted); // eslint-disable-line no-param-reassign
|
|
|
|
|
2022-03-15 17:24:49 +00:00
|
|
|
// Ignore the check for desktop track muted operation. When the screenshare is terminated by clicking on the
|
|
|
|
// browser's 'Stop sharing' button, the local stream is stopped before the inactive stream handler is fired.
|
|
|
|
// We still need to proceed here and remove the track from the peerconnection.
|
|
|
|
if (track.isMuted() === muted
|
2022-04-29 14:32:16 +00:00
|
|
|
&& !(track.getVideoType() === VIDEO_TYPE.DESKTOP && getMultipleVideoSendingSupportFeatureFlag(state))) {
|
2017-08-18 11:30:30 +00:00
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
|
|
|
const f = muted ? 'mute' : 'unmute';
|
|
|
|
|
2022-09-23 07:48:20 +00:00
|
|
|
return track[f]().catch((error: Error) => {
|
2017-11-21 13:38:53 +00:00
|
|
|
// Track might be already disposed so ignore such an error.
|
|
|
|
if (error.name !== JitsiTrackErrors.TRACK_IS_DISPOSED) {
|
2018-07-30 14:38:25 +00:00
|
|
|
logger.error(`set track ${f} failed`, error);
|
2022-03-15 17:24:49 +00:00
|
|
|
|
|
|
|
return Promise.reject(error);
|
2017-11-21 13:38:53 +00:00
|
|
|
}
|
2017-08-18 11:30:30 +00:00
|
|
|
});
|
|
|
|
}
|