1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123 |
- // @flow
-
- import React, { Component } from 'react';
-
- import { createScreenSharingIssueEvent, sendAnalytics } from '../../../analytics';
- import { AudioLevelIndicator } from '../../../audio-level-indicator';
- import { Avatar } from '../../../base/avatar';
- import { isMobileBrowser } from '../../../base/environment/utils';
- import JitsiMeetJS from '../../../base/lib-jitsi-meet/_';
- import { MEDIA_TYPE, VideoTrack } from '../../../base/media';
- import {
- getParticipantByIdOrUndefined,
- getParticipantCount,
- pinParticipant
- } from '../../../base/participants';
- import { connect } from '../../../base/redux';
- import { isTestModeEnabled } from '../../../base/testing';
- import {
- getLocalAudioTrack,
- getLocalVideoTrack,
- getTrackByMediaTypeAndParticipant,
- updateLastTrackVideoMediaEvent
- } from '../../../base/tracks';
- import { ConnectionIndicator } from '../../../connection-indicator';
- import { DisplayName } from '../../../display-name';
- import { StatusIndicators, RaisedHandIndicator, DominantSpeakerIndicator } from '../../../filmstrip';
- import { PresenceLabel } from '../../../presence-status';
- import { getCurrentLayout, LAYOUTS } from '../../../video-layout';
- import { LocalVideoMenuTriggerButton, RemoteVideoMenuTriggerButton } from '../../../video-menu';
- import { setVolume } from '../../actions.web';
- import {
- DISPLAY_MODE_TO_CLASS_NAME,
- DISPLAY_MODE_TO_STRING,
- DISPLAY_VIDEO,
- DISPLAY_VIDEO_WITH_NAME,
- VIDEO_TEST_EVENTS,
- SHOW_TOOLBAR_CONTEXT_MENU_AFTER
- } from '../../constants';
- import { isVideoPlayable, computeDisplayMode } from '../../functions';
- import logger from '../../logger';
-
- const JitsiTrackEvents = JitsiMeetJS.events.track;
-
- declare var interfaceConfig: Object;
-
- /**
- * The type of the React {@code Component} state of {@link Thumbnail}.
- */
- export type State = {|
-
- /**
- * The current audio level value for the Thumbnail.
- */
- audioLevel: number,
-
- /**
- * Indicates that the canplay event has been received.
- */
- canPlayEventReceived: boolean,
-
- /**
- * The current display mode of the thumbnail.
- */
- displayMode: number,
-
- /**
- * Indicates whether the thumbnail is hovered or not.
- */
- isHovered: boolean
- |};
-
- /**
- * The type of the React {@code Component} props of {@link Thumbnail}.
- */
- export type Props = {|
-
- /**
- * The audio track related to the participant.
- */
- _audioTrack: ?Object,
-
- /**
- * Disable/enable the auto hide functionality for the connection indicator.
- */
- _connectionIndicatorAutoHideEnabled: boolean,
-
- /**
- * Disable/enable the connection indicator.
- */
- _connectionIndicatorDisabled: boolean,
-
- /**
- * The current layout of the filmstrip.
- */
- _currentLayout: string,
-
- /**
- * The default display name for the local participant.
- */
- _defaultLocalDisplayName: string,
-
- /**
- * Indicates whether the local video flip feature is disabled or not.
- */
- _disableLocalVideoFlip: boolean,
-
- /**
- * Indicates whether the profile functionality is disabled.
- */
- _disableProfile: boolean,
-
- /**
- * The display mode of the thumbnail.
- */
- _displayMode: number,
-
- /**
- * The height of the Thumbnail.
- */
- _height: number,
-
- /**
- * The aspect ratio of the Thumbnail in percents.
- */
- _heightToWidthPercent: number,
-
- /**
- * Indicates whether the thumbnail should be hidden or not.
- */
- _isHidden: boolean,
-
- /**
- * Indicates whether audio only mode is enabled.
- */
- _isAudioOnly: boolean,
-
- /**
- * Indicates whether the participant associated with the thumbnail is displayed on the large video.
- */
- _isCurrentlyOnLargeVideo: boolean,
-
- /**
- * Whether we are currently running in a mobile browser.
- */
- _isMobile: boolean,
-
- /**
- * Indicates whether the participant is screen sharing.
- */
- _isScreenSharing: boolean,
-
- /**
- * Indicates whether the video associated with the thumbnail is playable.
- */
- _isVideoPlayable: boolean,
-
- /**
- * Disable/enable the dominant speaker indicator.
- */
- _isDominantSpeakerDisabled: boolean,
-
- /**
- * Indicates whether testing mode is enabled.
- */
- _isTestModeEnabled: boolean,
-
- /**
- * The size of the icon of indicators.
- */
- _indicatorIconSize: number,
-
- /**
- * The current local video flip setting.
- */
- _localFlipX: boolean,
-
- /**
- * An object with information about the participant related to the thumbnaul.
- */
- _participant: Object,
-
- /**
- * True if there are more than 2 participants in the call.
- */
- _participantCountMoreThan2: boolean,
-
- /**
- * Indicates whether the "start silent" mode is enabled.
- */
- _startSilent: Boolean,
-
- /**
- * The video track that will be displayed in the thumbnail.
- */
- _videoTrack: ?Object,
-
- /**
- * The volume level for the thumbnail.
- */
- _volume?: ?number,
-
- /**
- * The width of the thumbnail.
- */
- _width: number,
-
- /**
- * The redux dispatch function.
- */
- dispatch: Function,
-
- /**
- * The horizontal offset in px for the thumbnail. Used to center the thumbnails from the last row in tile view.
- */
- horizontalOffset: number,
-
- /**
- * The ID of the participant related to the thumbnail.
- */
- participantID: ?string,
-
- /**
- * Styles that will be set to the Thumbnail's main span element.
- */
- style?: ?Object
- |};
-
- /**
- * Click handler for the display name container.
- *
- * @param {SyntheticEvent} event - The click event.
- * @returns {void}
- */
- function onClick(event) {
- // If the event is propagated to the thumbnail container the participant will be pinned. That's why the propagation
- // needs to be stopped.
- event.stopPropagation();
- }
-
- /**
- * Implements a thumbnail.
- *
- * @extends Component
- */
- class Thumbnail extends Component<Props, State> {
- /**
- * The long touch setTimeout handler.
- */
- timeoutHandle: Object;
-
- /**
- * Reference to local or remote Video Menu trigger button instance.
- */
- videoMenuTriggerRef: Object;
-
- /**
- * Initializes a new Thumbnail instance.
- *
- * @param {Object} props - The read-only React Component props with which
- * the new instance is to be initialized.
- */
- constructor(props: Props) {
- super(props);
-
- const state = {
- audioLevel: 0,
- canPlayEventReceived: false,
- isHovered: false,
- displayMode: DISPLAY_VIDEO
- };
-
- this.state = {
- ...state,
- displayMode: computeDisplayMode(Thumbnail.getDisplayModeInput(props, state))
- };
- this.timeoutHandle = null;
- this.videoMenuTriggerRef = null;
-
- this._setInstance = this._setInstance.bind(this);
- this._updateAudioLevel = this._updateAudioLevel.bind(this);
- this._onCanPlay = this._onCanPlay.bind(this);
- this._onClick = this._onClick.bind(this);
- this._onVolumeChange = this._onVolumeChange.bind(this);
- this._onMouseEnter = this._onMouseEnter.bind(this);
- this._onMouseLeave = this._onMouseLeave.bind(this);
- this._onTestingEvent = this._onTestingEvent.bind(this);
- this._onTouchStart = this._onTouchStart.bind(this);
- this._onTouchEnd = this._onTouchEnd.bind(this);
- this._onTouchMove = this._onTouchMove.bind(this);
- this._showPopupMenu = this._showPopupMenu.bind(this);
- }
-
- /**
- * Starts listening for audio level updates after the initial render.
- *
- * @inheritdoc
- * @returns {void}
- */
- componentDidMount() {
- this._listenForAudioUpdates();
- this._onDisplayModeChanged();
- }
-
- /**
- * Stops listening for audio level updates on the old track and starts
- * listening instead on the new track.
- *
- * @inheritdoc
- * @returns {void}
- */
- componentDidUpdate(prevProps: Props, prevState: State) {
- if (prevProps._audioTrack !== this.props._audioTrack) {
- this._stopListeningForAudioUpdates(prevProps._audioTrack);
- this._listenForAudioUpdates();
- this._updateAudioLevel(0);
- }
-
- if (prevState.displayMode !== this.state.displayMode) {
- this._onDisplayModeChanged();
- }
- }
-
- /**
- * Handles display mode changes.
- *
- * @returns {void}
- */
- _onDisplayModeChanged() {
- const input = Thumbnail.getDisplayModeInput(this.props, this.state);
- const displayModeString = DISPLAY_MODE_TO_STRING[this.state.displayMode];
- const id = this.props._participant?.id;
-
- this._maybeSendScreenSharingIssueEvents(input);
- logger.debug(`Displaying ${displayModeString} for ${id}, data: [${JSON.stringify(input)}]`);
- }
-
- /**
- * Sends screen sharing issue event if an issue is detected.
- *
- * @param {Object} input - The input used to compute the thumbnail display mode.
- * @returns {void}
- */
- _maybeSendScreenSharingIssueEvents(input) {
- const {
- _currentLayout,
- _isAudioOnly,
- _isScreenSharing
- } = this.props;
- const { displayMode } = this.state;
- const tileViewActive = _currentLayout === LAYOUTS.TILE_VIEW;
-
- if (![ DISPLAY_VIDEO, DISPLAY_VIDEO_WITH_NAME ].includes(displayMode)
- && tileViewActive
- && _isScreenSharing
- && !_isAudioOnly) {
- sendAnalytics(createScreenSharingIssueEvent({
- source: 'thumbnail',
- ...input
- }));
- }
- }
-
- /**
- * Implements React's {@link Component#getDerivedStateFromProps()}.
- *
- * @inheritdoc
- */
- static getDerivedStateFromProps(props: Props, prevState: State) {
- if (!props._videoTrack && prevState.canPlayEventReceived) {
- const newState = {
- ...prevState,
- canPlayEventReceived: false
- };
-
- return {
- ...newState,
- displayMode: computeDisplayMode(Thumbnail.getDisplayModeInput(props, newState))
- };
- }
-
- const newDisplayMode = computeDisplayMode(Thumbnail.getDisplayModeInput(props, prevState));
-
- if (newDisplayMode !== prevState.displayMode) {
- return {
- ...prevState,
- displayMode: newDisplayMode
- };
- }
-
- return null;
- }
-
- /**
- * Extracts information for props and state needed to compute the display mode.
- *
- * @param {Props} props - The component's props.
- * @param {State} state - The component's state.
- * @returns {Object}
- */
- static getDisplayModeInput(props: Props, state: State) {
- const {
- _currentLayout,
- _isAudioOnly,
- _isCurrentlyOnLargeVideo,
- _isScreenSharing,
- _isVideoPlayable,
- _participant,
- _videoTrack
- } = props;
- const tileViewActive = _currentLayout === LAYOUTS.TILE_VIEW;
- const { canPlayEventReceived, isHovered } = state;
-
- return {
- isCurrentlyOnLargeVideo: _isCurrentlyOnLargeVideo,
- isHovered,
- isAudioOnly: _isAudioOnly,
- tileViewActive,
- isVideoPlayable: _isVideoPlayable,
- connectionStatus: _participant?.connectionStatus,
- canPlayEventReceived,
- videoStream: Boolean(_videoTrack),
- isRemoteParticipant: !_participant?.isFakeParticipant && !_participant?.local,
- isScreenSharing: _isScreenSharing,
- videoStreamMuted: _videoTrack ? _videoTrack.muted : 'no stream'
- };
- }
-
- /**
- * Unsubscribe from audio level updates.
- *
- * @inheritdoc
- * @returns {void}
- */
- componentWillUnmount() {
- this._stopListeningForAudioUpdates(this.props._audioTrack);
- }
-
- /**
- * Starts listening for audio level updates from the library.
- *
- * @private
- * @returns {void}
- */
- _listenForAudioUpdates() {
- const { _audioTrack } = this.props;
-
- if (_audioTrack) {
- const { jitsiTrack } = _audioTrack;
-
- jitsiTrack && jitsiTrack.on(JitsiTrackEvents.TRACK_AUDIO_LEVEL_CHANGED, this._updateAudioLevel);
- }
- }
-
- /**
- * Stops listening to further updates from the passed track.
- *
- * @param {Object} audioTrack - The track.
- * @private
- * @returns {void}
- */
- _stopListeningForAudioUpdates(audioTrack) {
- if (audioTrack) {
- const { jitsiTrack } = audioTrack;
-
- jitsiTrack && jitsiTrack.off(JitsiTrackEvents.TRACK_AUDIO_LEVEL_CHANGED, this._updateAudioLevel);
- }
- }
-
- _updateAudioLevel: (number) => void;
-
- /**
- * Updates the internal state of the last know audio level. The level should
- * be between 0 and 1, as the level will be used as a percentage out of 1.
- *
- * @param {number} audioLevel - The new audio level for the track.
- * @private
- * @returns {void}
- */
- _updateAudioLevel(audioLevel) {
- this.setState({
- audioLevel
- });
- }
-
- /**
- * Returns an object with the styles for thumbnail.
- *
- * @returns {Object} - The styles for the thumbnail.
- */
- _getStyles(): Object {
- const { _height, _isHidden, _width, style, horizontalOffset } = this.props;
- let styles: {
- thumbnail: Object,
- avatar: Object
- } = {
- thumbnail: {},
- avatar: {}
- };
-
- const avatarSize = _height / 2;
- let { left } = style || {};
-
- if (typeof left === 'number' && horizontalOffset) {
- left += horizontalOffset;
- }
-
- styles = {
- thumbnail: {
- ...style,
- left,
- height: `${_height}px`,
- minHeight: `${_height}px`,
- minWidth: `${_width}px`,
- width: `${_width}px`
- },
- avatar: {
- height: `${avatarSize}px`,
- width: `${avatarSize}px`
- }
- };
-
- if (_isHidden) {
- styles.thumbnail.display = 'none';
- }
-
- return styles;
- }
-
- _onClick: () => void;
-
- /**
- * On click handler.
- *
- * @returns {void}
- */
- _onClick() {
- const { _participant, dispatch } = this.props;
- const { id, pinned } = _participant;
-
- dispatch(pinParticipant(pinned ? null : id));
- }
-
- _onMouseEnter: () => void;
-
- /**
- * Mouse enter handler.
- *
- * @returns {void}
- */
- _onMouseEnter() {
- this.setState({ isHovered: true });
- }
-
- _onMouseLeave: () => void;
-
- /**
- * Mouse leave handler.
- *
- * @returns {void}
- */
- _onMouseLeave() {
- this.setState({ isHovered: false });
- }
-
- _showPopupMenu: () => void;
-
- /**
- * Triggers showing the popover context menu.
- *
- * @returns {void}
- */
- _showPopupMenu() {
- if (this.videoMenuTriggerRef) {
- this.videoMenuTriggerRef.showContextMenu();
- }
- }
-
- _onTouchStart: () => void;
-
- /**
- * Set showing popover context menu after x miliseconds.
- *
- * @returns {void}
- */
- _onTouchStart() {
- this.timeoutHandle = setTimeout(this._showPopupMenu, SHOW_TOOLBAR_CONTEXT_MENU_AFTER);
- }
-
- _onTouchEnd: () => void;
-
- /**
- * Cancel showing popover context menu after x miliseconds if the no. Of miliseconds is not reached yet,
- * or just clears the timeout.
- *
- * @returns {void}
- */
- _onTouchEnd() {
- clearTimeout(this.timeoutHandle);
- }
-
- _onTouchMove: () => void;
-
- /**
- * Cancel showing Context menu after x miliseconds if the number of miliseconds is not reached
- * before a touch move(drag), or just clears the timeout.
- *
- * @returns {void}
- */
- _onTouchMove() {
- clearTimeout(this.timeoutHandle);
- }
-
- /**
- * Renders a fake participant (youtube video) thumbnail.
- *
- * @param {string} id - The id of the participant.
- * @returns {ReactElement}
- */
- _renderFakeParticipant() {
- const { _isMobile, _participant: { avatarURL } } = this.props;
- const styles = this._getStyles();
- const containerClassName = this._getContainerClassName();
-
- return (
- <span
- className = { containerClassName }
- id = 'sharedVideoContainer'
- onClick = { this._onClick }
- { ...(_isMobile ? {} : {
- onMouseEnter: this._onMouseEnter,
- onMouseLeave: this._onMouseLeave
- }) }
- style = { styles.thumbnail }>
- {avatarURL ? (
- <img
- className = 'sharedVideoAvatar'
- src = { avatarURL } />
- )
- : this._renderAvatar(styles.avatar)}
- </span>
- );
- }
-
- /**
- * Renders the top indicators of the thumbnail.
- *
- * @returns {Component}
- */
- _renderTopIndicators() {
- const {
- _connectionIndicatorAutoHideEnabled,
- _connectionIndicatorDisabled,
- _currentLayout,
- _isDominantSpeakerDisabled,
- _indicatorIconSize: iconSize,
- _participant,
- _participantCountMoreThan2
- } = this.props;
- const { isHovered } = this.state;
- const showConnectionIndicator = isHovered || !_connectionIndicatorAutoHideEnabled;
- const { id, dominantSpeaker = false } = _participant;
- const showDominantSpeaker = !_isDominantSpeakerDisabled && dominantSpeaker;
- let statsPopoverPosition, tooltipPosition;
-
- switch (_currentLayout) {
- case LAYOUTS.TILE_VIEW:
- statsPopoverPosition = 'right-start';
- tooltipPosition = 'right';
- break;
- case LAYOUTS.VERTICAL_FILMSTRIP_VIEW:
- statsPopoverPosition = 'left-start';
- tooltipPosition = 'left';
- break;
- case LAYOUTS.HORIZONTAL_FILMSTRIP_VIEW:
- statsPopoverPosition = 'top';
- tooltipPosition = 'top';
- break;
- default:
- statsPopoverPosition = 'auto';
- tooltipPosition = 'top';
- }
-
- return (
- <div>
- { !_connectionIndicatorDisabled
- && <ConnectionIndicator
- alwaysVisible = { showConnectionIndicator }
- enableStatsDisplay = { true }
- iconSize = { iconSize }
- participantId = { id }
- statsPopoverPosition = { statsPopoverPosition } />
- }
- <RaisedHandIndicator
- iconSize = { iconSize }
- participantId = { id }
- tooltipPosition = { tooltipPosition } />
- { showDominantSpeaker && _participantCountMoreThan2
- && <DominantSpeakerIndicator
- iconSize = { iconSize }
- tooltipPosition = { tooltipPosition } />
- }
- </div>);
- }
-
- /**
- * Renders the avatar.
- *
- * @param {Object} styles - The styles that will be applied to the avatar.
- * @returns {ReactElement}
- */
- _renderAvatar(styles) {
- const { _participant } = this.props;
- const { id } = _participant;
-
- return (
- <div
- className = 'avatar-container'
- style = { styles }>
- <Avatar
- className = 'userAvatar'
- participantId = { id } />
- </div>
- );
- }
-
- /**
- * Returns the container class name.
- *
- * @returns {string} - The class name that will be used for the container.
- */
- _getContainerClassName() {
- let className = 'videocontainer';
- const { displayMode } = this.state;
- const { _isAudioOnly, _isDominantSpeakerDisabled, _isHidden, _participant } = this.props;
- const isRemoteParticipant = !_participant?.local && !_participant?.isFakeParticipant;
-
- className += ` ${DISPLAY_MODE_TO_CLASS_NAME[displayMode]}`;
-
- if (_participant?.pinned) {
- className += ' videoContainerFocused';
- }
-
- if (!_isDominantSpeakerDisabled && _participant?.dominantSpeaker) {
- className += ' active-speaker';
- }
-
- if (_isHidden) {
- className += ' hidden';
- }
-
- if (isRemoteParticipant && _isAudioOnly) {
- className += ' audio-only';
- }
-
- return className;
- }
-
- /**
- * Renders the local participant's thumbnail.
- *
- * @returns {ReactElement}
- */
- _renderLocalParticipant() {
- const {
- _defaultLocalDisplayName,
- _disableLocalVideoFlip,
- _isMobile,
- _isScreenSharing,
- _localFlipX,
- _disableProfile,
- _participant,
- _videoTrack
- } = this.props;
- const { id } = _participant || {};
- const { audioLevel } = this.state;
- const styles = this._getStyles();
- const containerClassName = this._getContainerClassName();
- const videoTrackClassName
- = !_disableLocalVideoFlip && _videoTrack && !_isScreenSharing && _localFlipX ? 'flipVideoX' : '';
-
-
- return (
- <span
- className = { containerClassName }
- id = 'localVideoContainer'
- onClick = { this._onClick }
- { ...(_isMobile
- ? {
- onTouchEnd: this._onTouchEnd,
- onTouchMove: this._onTouchMove,
- onTouchStart: this._onTouchStart
- }
- : {
- onMouseEnter: this._onMouseEnter,
- onMouseLeave: this._onMouseLeave
- }
- ) }
- style = { styles.thumbnail }>
- <div className = 'videocontainer__background' />
- <span id = 'localVideoWrapper'>
- <VideoTrack
- className = { videoTrackClassName }
- id = 'localVideo_container'
- videoTrack = { _videoTrack } />
- </span>
- <div className = 'videocontainer__toolbar'>
- <StatusIndicators participantID = { id } />
- </div>
- <div className = 'videocontainer__toptoolbar'>
- { this._renderTopIndicators() }
- </div>
- <div className = 'videocontainer__hoverOverlay' />
- <div
- className = 'displayNameContainer'
- onClick = { onClick }>
- <DisplayName
- allowEditing = { !_disableProfile }
- displayNameSuffix = { _defaultLocalDisplayName }
- elementID = 'localDisplayName'
- participantID = { id } />
- </div>
- { this._renderAvatar(styles.avatar) }
- <span className = 'audioindicator-container'>
- <AudioLevelIndicator audioLevel = { audioLevel } />
- </span>
- <span className = 'localvideomenu'>
- <LocalVideoMenuTriggerButton
- getRef = { this._setInstance } />
- </span>
-
- </span>
- );
- }
-
- _onCanPlay: Object => void;
-
- /**
- * Canplay event listener.
- *
- * @param {SyntheticEvent} event - The event.
- * @returns {void}
- */
- _onCanPlay(event) {
- this.setState({ canPlayEventReceived: true });
-
- const {
- _isTestModeEnabled,
- _videoTrack
- } = this.props;
-
- if (_videoTrack && _isTestModeEnabled) {
- this._onTestingEvent(event);
- }
- }
-
- _onTestingEvent: Object => void;
-
- /**
- * Event handler for testing events.
- *
- * @param {SyntheticEvent} event - The event.
- * @returns {void}
- */
- _onTestingEvent(event) {
- const {
- _videoTrack,
- dispatch
- } = this.props;
- const jitsiVideoTrack = _videoTrack?.jitsiTrack;
-
- dispatch(updateLastTrackVideoMediaEvent(jitsiVideoTrack, event.type));
- }
-
- _setInstance: Object => void;
-
- /**
- * Stores the local or remote video menu button instance in a variable.
- *
- * @param {Object} instance - The local or remote video menu trigger instance.
- *
- * @returns {void}
- */
- _setInstance(instance) {
- this.videoMenuTriggerRef = instance;
- }
-
- /**
- * Renders a remote participant's 'thumbnail.
- *
- * @returns {ReactElement}
- */
- _renderRemoteParticipant() {
- const {
- _isMobile,
- _isTestModeEnabled,
- _participant,
- _startSilent,
- _videoTrack,
- _volume = 1
- } = this.props;
- const { id } = _participant;
- const { audioLevel, canPlayEventReceived } = this.state;
- const styles = this._getStyles();
- const containerClassName = this._getContainerClassName();
-
- // hide volume when in silent mode
- const onVolumeChange = _startSilent ? undefined : this._onVolumeChange;
- const jitsiVideoTrack = _videoTrack?.jitsiTrack;
- const videoTrackId = jitsiVideoTrack && jitsiVideoTrack.getId();
- const videoEventListeners = {};
-
- if (_videoTrack && _isTestModeEnabled) {
- VIDEO_TEST_EVENTS.forEach(attribute => {
- videoEventListeners[attribute] = this._onTestingEvent;
- });
- }
-
- videoEventListeners.onCanPlay = this._onCanPlay;
-
- const videoElementStyle = canPlayEventReceived ? null : {
- display: 'none'
- };
-
- return (
- <span
- className = { containerClassName }
- id = { `participant_${id}` }
- onClick = { this._onClick }
- { ...(_isMobile
- ? {
- onTouchEnd: this._onTouchEnd,
- onTouchMove: this._onTouchMove,
- onTouchStart: this._onTouchStart
- }
- : {
- onMouseEnter: this._onMouseEnter,
- onMouseLeave: this._onMouseLeave
- }
- ) }
- style = { styles.thumbnail }>
- {
- _videoTrack && <VideoTrack
- eventHandlers = { videoEventListeners }
- id = { `remoteVideo_${videoTrackId || ''}` }
- muted = { true }
- style = { videoElementStyle }
- videoTrack = { _videoTrack } />
- }
- <div className = 'videocontainer__background' />
- <div className = 'videocontainer__toptoolbar'>
- { this._renderTopIndicators() }
- </div>
- <div className = 'videocontainer__toolbar'>
- <StatusIndicators participantID = { id } />
- </div>
- <div className = 'videocontainer__hoverOverlay' />
- <div className = 'displayNameContainer'>
- <DisplayName
- elementID = { `participant_${id}_name` }
- participantID = { id } />
- </div>
- { this._renderAvatar(styles.avatar) }
- <div className = 'presence-label-container'>
- <PresenceLabel
- className = 'presence-label'
- participantID = { id } />
- </div>
- <span className = 'audioindicator-container'>
- <AudioLevelIndicator audioLevel = { audioLevel } />
- </span>
- <span className = 'remotevideomenu'>
- <RemoteVideoMenuTriggerButton
- getRef = { this._setInstance }
- initialVolumeValue = { _volume }
- onVolumeChange = { onVolumeChange }
- participantID = { id } />
- </span>
- </span>
- );
- }
-
- _onVolumeChange: number => void;
-
- /**
- * Handles volume changes.
- *
- * @param {number} value - The new value for the volume.
- * @returns {void}
- */
- _onVolumeChange(value) {
- const { _participant, dispatch } = this.props;
- const { id } = _participant;
-
- dispatch(setVolume(id, value));
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const { _participant } = this.props;
-
- if (!_participant) {
- return null;
- }
-
- const { isFakeParticipant, local } = _participant;
-
- if (local) {
- return this._renderLocalParticipant();
- }
-
- if (isFakeParticipant) {
- return this._renderFakeParticipant();
- }
-
- return this._renderRemoteParticipant();
- }
- }
-
- /**
- * Maps (parts of) the redux state to the associated props for this component.
- *
- * @param {Object} state - The Redux state.
- * @param {Object} ownProps - The own props of the component.
- * @private
- * @returns {Props}
- */
- function _mapStateToProps(state, ownProps): Object {
- const { participantID } = ownProps;
-
- const participant = getParticipantByIdOrUndefined(state, participantID);
- const id = participant?.id;
- const isLocal = participant?.local ?? true;
- const tracks = state['features/base/tracks'];
- const { participantsVolume } = state['features/filmstrip'];
- const _videoTrack = isLocal
- ? getLocalVideoTrack(tracks) : getTrackByMediaTypeAndParticipant(tracks, MEDIA_TYPE.VIDEO, participantID);
- const _audioTrack = isLocal
- ? getLocalAudioTrack(tracks) : getTrackByMediaTypeAndParticipant(tracks, MEDIA_TYPE.AUDIO, participantID);
- const _currentLayout = getCurrentLayout(state);
- let size = {};
- const {
- startSilent,
- disableLocalVideoFlip,
- disableProfile,
- iAmRecorder,
- iAmSipGateway
- } = state['features/base/config'];
- const { NORMAL = 8 } = interfaceConfig.INDICATOR_FONT_SIZES || {};
- const { localFlipX } = state['features/base/settings'];
- const _isMobile = isMobileBrowser();
-
-
- switch (_currentLayout) {
- case LAYOUTS.VERTICAL_FILMSTRIP_VIEW:
- case LAYOUTS.HORIZONTAL_FILMSTRIP_VIEW: {
- const {
- horizontalViewDimensions = {
- local: {},
- remote: {}
- },
- verticalViewDimensions = {
- local: {},
- remote: {}
- }
- } = state['features/filmstrip'];
- const { local, remote }
- = _currentLayout === LAYOUTS.VERTICAL_FILMSTRIP_VIEW
- ? verticalViewDimensions : horizontalViewDimensions;
- const { width, height } = isLocal ? local : remote;
-
- size = {
- _width: width,
- _height: height
- };
-
- break;
- }
- case LAYOUTS.TILE_VIEW: {
- const { width, height } = state['features/filmstrip'].tileViewDimensions.thumbnailSize;
-
- size = {
- _width: width,
- _height: height
- };
- break;
- }
- }
-
- return {
- _audioTrack,
- _connectionIndicatorAutoHideEnabled:
- Boolean(state['features/base/config'].connectionIndicators?.autoHide ?? true),
- _connectionIndicatorDisabled: _isMobile
- || Boolean(state['features/base/config'].connectionIndicators?.disabled),
- _currentLayout,
- _defaultLocalDisplayName: interfaceConfig.DEFAULT_LOCAL_DISPLAY_NAME,
- _disableLocalVideoFlip: Boolean(disableLocalVideoFlip),
- _disableProfile: disableProfile,
- _isHidden: isLocal && iAmRecorder && !iAmSipGateway,
- _isAudioOnly: Boolean(state['features/base/audio-only'].enabled),
- _isCurrentlyOnLargeVideo: state['features/large-video']?.participantId === id,
- _isDominantSpeakerDisabled: interfaceConfig.DISABLE_DOMINANT_SPEAKER_INDICATOR,
- _isMobile,
- _isScreenSharing: _videoTrack?.videoType === 'desktop',
- _isTestModeEnabled: isTestModeEnabled(state),
- _isVideoPlayable: id && isVideoPlayable(state, id),
- _indicatorIconSize: NORMAL,
- _localFlipX: Boolean(localFlipX),
- _participant: participant,
- _participantCountMoreThan2: getParticipantCount(state) > 2,
- _startSilent: Boolean(startSilent),
- _videoTrack,
- _volume: isLocal ? undefined : id ? participantsVolume[id] : undefined,
- ...size
- };
- }
-
- export default connect(_mapStateToProps)(Thumbnail);
|