2019-06-05 17:01:18 +00:00
|
|
|
/* global $, APP, config, interfaceConfig */
|
2017-06-19 19:06:23 +00:00
|
|
|
|
|
|
|
/* eslint-disable no-unused-vars */
|
2020-05-20 10:57:03 +00:00
|
|
|
import { AtlasKitThemeProvider } from '@atlaskit/theme';
|
|
|
|
import Logger from 'jitsi-meet-logger';
|
2017-06-19 19:06:23 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2017-06-29 03:35:43 +00:00
|
|
|
import { I18nextProvider } from 'react-i18next';
|
|
|
|
import { Provider } from 'react-redux';
|
2017-06-19 19:06:23 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
import { AudioLevelIndicator } from '../../../react/features/audio-level-indicator';
|
2019-06-26 14:08:23 +00:00
|
|
|
import { Avatar as AvatarDisplay } from '../../../react/features/base/avatar';
|
2020-05-20 10:57:03 +00:00
|
|
|
import { i18next } from '../../../react/features/base/i18n';
|
2020-10-23 22:48:56 +00:00
|
|
|
import { MEDIA_TYPE } from '../../../react/features/base/media';
|
2017-06-29 18:21:03 +00:00
|
|
|
import {
|
2020-10-23 22:48:56 +00:00
|
|
|
getLocalParticipant,
|
|
|
|
getParticipantById,
|
2019-09-12 13:03:20 +00:00
|
|
|
getParticipantCount,
|
2018-05-18 19:59:07 +00:00
|
|
|
getPinnedParticipant,
|
|
|
|
pinParticipant
|
2017-06-29 18:21:03 +00:00
|
|
|
} from '../../../react/features/base/participants';
|
2020-10-26 19:51:51 +00:00
|
|
|
import {
|
|
|
|
getTrackByMediaTypeAndParticipant,
|
|
|
|
isLocalTrackMuted,
|
|
|
|
isRemoteTrackMuted
|
|
|
|
} from '../../../react/features/base/tracks';
|
2019-12-16 14:15:02 +00:00
|
|
|
import { ConnectionIndicator } from '../../../react/features/connection-indicator';
|
2017-06-29 03:35:43 +00:00
|
|
|
import { DisplayName } from '../../../react/features/display-name';
|
2017-06-19 16:01:44 +00:00
|
|
|
import {
|
2017-07-10 22:29:44 +00:00
|
|
|
DominantSpeakerIndicator,
|
|
|
|
RaisedHandIndicator,
|
2020-02-18 16:31:04 +00:00
|
|
|
StatusIndicators
|
2017-06-19 16:01:44 +00:00
|
|
|
} from '../../../react/features/filmstrip';
|
2018-08-08 18:48:23 +00:00
|
|
|
import {
|
|
|
|
LAYOUTS,
|
|
|
|
getCurrentLayout,
|
2018-09-11 18:09:07 +00:00
|
|
|
setTileView,
|
2018-08-08 18:48:23 +00:00
|
|
|
shouldDisplayTileView
|
|
|
|
} from '../../../react/features/video-layout';
|
2017-06-19 16:01:44 +00:00
|
|
|
/* eslint-enable no-unused-vars */
|
2017-06-19 19:06:23 +00:00
|
|
|
|
2020-05-20 10:57:03 +00:00
|
|
|
const logger = Logger.getLogger(__filename);
|
2016-11-11 15:00:54 +00:00
|
|
|
|
2016-09-19 20:59:56 +00:00
|
|
|
/**
|
|
|
|
* Display mode constant used when video is being displayed on the small video.
|
|
|
|
* @type {number}
|
|
|
|
* @constant
|
|
|
|
*/
|
|
|
|
const DISPLAY_VIDEO = 0;
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2016-09-19 20:59:56 +00:00
|
|
|
/**
|
|
|
|
* Display mode constant used when the user's avatar is being displayed on
|
|
|
|
* the small video.
|
|
|
|
* @type {number}
|
|
|
|
* @constant
|
|
|
|
*/
|
|
|
|
const DISPLAY_AVATAR = 1;
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2016-09-19 20:59:56 +00:00
|
|
|
/**
|
|
|
|
* Display mode constant used when neither video nor avatar is being displayed
|
2016-10-27 18:17:17 +00:00
|
|
|
* on the small video. And we just show the display name.
|
2016-09-19 20:59:56 +00:00
|
|
|
* @type {number}
|
|
|
|
* @constant
|
|
|
|
*/
|
2016-10-27 18:17:17 +00:00
|
|
|
const DISPLAY_BLACKNESS_WITH_NAME = 2;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display mode constant used when video is displayed and display name
|
|
|
|
* at the same time.
|
|
|
|
* @type {number}
|
|
|
|
* @constant
|
|
|
|
*/
|
|
|
|
const DISPLAY_VIDEO_WITH_NAME = 3;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display mode constant used when neither video nor avatar is being displayed
|
|
|
|
* on the small video. And we just show the display name.
|
|
|
|
* @type {number}
|
|
|
|
* @constant
|
|
|
|
*/
|
|
|
|
const DISPLAY_AVATAR_WITH_NAME = 4;
|
2016-09-19 20:59:56 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
|
2017-10-12 23:02:29 +00:00
|
|
|
/**
|
2019-12-16 14:15:02 +00:00
|
|
|
*
|
2017-10-12 23:02:29 +00:00
|
|
|
*/
|
2019-12-16 14:15:02 +00:00
|
|
|
export default class SmallVideo {
|
|
|
|
/**
|
|
|
|
* Constructor.
|
2017-06-19 20:20:13 +00:00
|
|
|
*/
|
2019-12-16 14:15:02 +00:00
|
|
|
constructor(VideoLayout) {
|
|
|
|
this.videoStream = null;
|
|
|
|
this.audioStream = null;
|
|
|
|
this.VideoLayout = VideoLayout;
|
|
|
|
this.videoIsHovered = false;
|
2020-07-17 09:46:56 +00:00
|
|
|
this.videoType = undefined;
|
2019-12-16 14:15:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the connection indicator should be displayed.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this._showConnectionIndicator = !interfaceConfig.CONNECTION_INDICATOR_DISABLED;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the dominant speaker indicator should be displayed.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this._showDominantSpeaker = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the raised hand indicator should be displayed.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @type {boolean}
|
|
|
|
*/
|
|
|
|
this._showRaisedHand = false;
|
|
|
|
|
|
|
|
// Bind event handlers so they are only bound once for every instance.
|
|
|
|
this.updateView = this.updateView.bind(this);
|
|
|
|
|
|
|
|
this._onContainerClick = this._onContainerClick.bind(this);
|
|
|
|
}
|
2017-06-19 20:20:13 +00:00
|
|
|
|
|
|
|
/**
|
2019-12-16 14:15:02 +00:00
|
|
|
* Returns the identifier of this small video.
|
2017-06-19 20:20:13 +00:00
|
|
|
*
|
2019-12-16 14:15:02 +00:00
|
|
|
* @returns the identifier of this small video
|
2017-06-19 20:20:13 +00:00
|
|
|
*/
|
2019-12-16 14:15:02 +00:00
|
|
|
getId() {
|
|
|
|
return this.id;
|
|
|
|
}
|
2017-06-19 20:20:13 +00:00
|
|
|
|
2017-07-10 22:29:44 +00:00
|
|
|
/**
|
2019-12-16 14:15:02 +00:00
|
|
|
* Indicates if this small video is currently visible.
|
2017-07-10 22:29:44 +00:00
|
|
|
*
|
2019-12-16 14:15:02 +00:00
|
|
|
* @return <tt>true</tt> if this small video isn't currently visible and
|
|
|
|
* <tt>false</tt> - otherwise.
|
2017-07-10 22:29:44 +00:00
|
|
|
*/
|
2019-12-16 14:15:02 +00:00
|
|
|
isVisible() {
|
|
|
|
return this.$container.is(':visible');
|
|
|
|
}
|
2017-07-10 22:29:44 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Creates an audio or video element for a particular MediaStream.
|
|
|
|
*/
|
|
|
|
static createStreamElement(stream) {
|
|
|
|
const isVideo = stream.isVideoTrack();
|
|
|
|
const element = isVideo ? document.createElement('video') : document.createElement('audio');
|
|
|
|
|
|
|
|
if (isVideo) {
|
|
|
|
element.setAttribute('muted', 'true');
|
2020-04-14 16:05:03 +00:00
|
|
|
element.setAttribute('playsInline', 'true'); /* for Safari on iOS to work */
|
2019-12-16 14:15:02 +00:00
|
|
|
} else if (config.startSilent) {
|
|
|
|
element.muted = true;
|
|
|
|
}
|
2018-11-30 22:13:39 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
element.autoplay = !config.testing?.noAutoPlayVideo;
|
|
|
|
element.id = SmallVideo.getStreamElementID(stream);
|
2015-06-29 14:24:21 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
return element;
|
|
|
|
}
|
2016-01-29 00:33:27 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Returns the element id for a particular MediaStream.
|
|
|
|
*/
|
|
|
|
static getStreamElementID(stream) {
|
|
|
|
return (stream.isVideoTrack() ? 'remoteVideo_' : 'remoteAudio_') + stream.getId();
|
|
|
|
}
|
2016-01-26 21:26:28 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Configures hoverIn/hoverOut handlers. Depends on connection indicator.
|
|
|
|
*/
|
|
|
|
bindHoverHandler() {
|
|
|
|
// Add hover handler
|
|
|
|
this.$container.hover(
|
|
|
|
() => {
|
|
|
|
this.videoIsHovered = true;
|
|
|
|
this.updateView();
|
|
|
|
this.updateIndicators();
|
|
|
|
},
|
|
|
|
() => {
|
|
|
|
this.videoIsHovered = false;
|
|
|
|
this.updateView();
|
|
|
|
this.updateIndicators();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2015-08-05 12:09:12 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Unmounts the ConnectionIndicator component.
|
2015-08-05 12:09:12 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
removeConnectionIndicator() {
|
|
|
|
this._showConnectionIndicator = false;
|
|
|
|
this.updateIndicators();
|
|
|
|
}
|
2015-06-23 08:00:46 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Create or updates the ReactElement for displaying status indicators about
|
|
|
|
* audio mute, video mute, and moderator status.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
updateStatusBar() {
|
|
|
|
const statusBarContainer = this.container.querySelector('.videocontainer__toolbar');
|
2016-02-23 22:47:55 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (!statusBarContainer) {
|
|
|
|
return;
|
2016-10-26 20:45:51 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
ReactDOM.render(
|
2020-02-18 16:31:04 +00:00
|
|
|
<Provider store = { APP.store }>
|
|
|
|
<I18nextProvider i18n = { i18next }>
|
|
|
|
<StatusIndicators
|
|
|
|
participantID = { this.id } />
|
|
|
|
</I18nextProvider>
|
|
|
|
</Provider>,
|
2019-12-16 14:15:02 +00:00
|
|
|
statusBarContainer);
|
|
|
|
}
|
2016-09-18 21:35:35 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Adds the element indicating the audio level of the participant.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
addAudioLevelIndicator() {
|
|
|
|
let audioLevelContainer = this._getAudioLevelContainer();
|
2015-06-23 08:00:46 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (audioLevelContainer) {
|
|
|
|
return;
|
|
|
|
}
|
2015-06-23 08:00:46 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
audioLevelContainer = document.createElement('span');
|
|
|
|
audioLevelContainer.className = 'audioindicator-container';
|
|
|
|
this.container.appendChild(audioLevelContainer);
|
|
|
|
this.updateAudioLevelIndicator();
|
|
|
|
}
|
2015-06-23 08:00:46 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Removes the element indicating the audio level of the participant.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
removeAudioLevelIndicator() {
|
|
|
|
const audioLevelContainer = this._getAudioLevelContainer();
|
2016-09-28 21:31:40 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (audioLevelContainer) {
|
|
|
|
ReactDOM.unmountComponentAtNode(audioLevelContainer);
|
|
|
|
}
|
2016-09-28 21:31:40 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Updates the audio level for this small video.
|
|
|
|
*
|
|
|
|
* @param lvl the new audio level to set
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
updateAudioLevelIndicator(lvl = 0) {
|
|
|
|
const audioLevelContainer = this._getAudioLevelContainer();
|
2017-06-19 19:06:23 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (audioLevelContainer) {
|
|
|
|
ReactDOM.render(<AudioLevelIndicator audioLevel = { lvl }/>, audioLevelContainer);
|
|
|
|
}
|
|
|
|
}
|
2017-06-19 19:06:23 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Queries the component's DOM for the element that should be the parent to the
|
|
|
|
* AudioLevelIndicator.
|
|
|
|
*
|
|
|
|
* @returns {HTMLElement} The DOM element that holds the AudioLevelIndicator.
|
|
|
|
*/
|
|
|
|
_getAudioLevelContainer() {
|
|
|
|
return this.container.querySelector('.audioindicator-container');
|
2017-06-19 19:06:23 +00:00
|
|
|
}
|
2016-09-28 21:31:40 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* This is an especially interesting function. A naive reader might think that
|
|
|
|
* it returns this SmallVideo's "video" element. But it is much more exciting.
|
|
|
|
* It first finds this video's parent element using jquery, then uses a utility
|
|
|
|
* from lib-jitsi-meet to extract the video element from it (with two more
|
|
|
|
* jquery calls), and finally uses jquery again to encapsulate the video element
|
|
|
|
* in an array. This last step allows (some might prefer "forces") users of
|
|
|
|
* this function to access the video element via the 0th element of the returned
|
|
|
|
* array (after checking its length of course!).
|
|
|
|
*/
|
|
|
|
selectVideoElement() {
|
|
|
|
return $($(this.container).find('video')[0]);
|
2017-06-19 19:06:23 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Selects the HTML image element which displays user's avatar.
|
|
|
|
*
|
|
|
|
* @return {jQuery|HTMLElement} a jQuery selector pointing to the HTML image
|
|
|
|
* element which displays the user's avatar.
|
|
|
|
*/
|
|
|
|
$avatar() {
|
|
|
|
return this.$container.find('.avatar-container');
|
|
|
|
}
|
2016-09-28 21:31:40 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Returns the display name element, which appears on the video thumbnail.
|
|
|
|
*
|
|
|
|
* @return {jQuery} a jQuery selector pointing to the display name element of
|
|
|
|
* the video thumbnail
|
|
|
|
*/
|
|
|
|
$displayName() {
|
|
|
|
return this.$container.find('.displayNameContainer');
|
|
|
|
}
|
2016-07-08 01:44:04 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Creates or updates the participant's display name that is shown over the
|
|
|
|
* video preview.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The React {@code Component} props to pass into the
|
|
|
|
* {@code DisplayName} component.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_renderDisplayName(props) {
|
|
|
|
const displayNameContainer = this.container.querySelector('.displayNameContainer');
|
|
|
|
|
|
|
|
if (displayNameContainer) {
|
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store = { APP.store }>
|
|
|
|
<I18nextProvider i18n = { i18next }>
|
|
|
|
<DisplayName { ...props } />
|
|
|
|
</I18nextProvider>
|
|
|
|
</Provider>,
|
|
|
|
displayNameContainer);
|
|
|
|
}
|
|
|
|
}
|
2015-08-21 14:26:39 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Removes the component responsible for showing the participant's display name,
|
|
|
|
* if its container is present.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
removeDisplayName() {
|
|
|
|
const displayNameContainer = this.container.querySelector('.displayNameContainer');
|
2016-09-19 18:57:14 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (displayNameContainer) {
|
|
|
|
ReactDOM.unmountComponentAtNode(displayNameContainer);
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 03:35:43 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Enables / disables the css responsible for focusing/pinning a video
|
|
|
|
* thumbnail.
|
|
|
|
*
|
|
|
|
* @param isFocused indicates if the thumbnail should be focused/pinned or not
|
|
|
|
*/
|
|
|
|
focus(isFocused) {
|
|
|
|
const focusedCssClass = 'videoContainerFocused';
|
|
|
|
const isFocusClassEnabled = this.$container.hasClass(focusedCssClass);
|
|
|
|
|
|
|
|
if (!isFocused && isFocusClassEnabled) {
|
|
|
|
this.$container.removeClass(focusedCssClass);
|
|
|
|
} else if (isFocused && !isFocusClassEnabled) {
|
|
|
|
this.$container.addClass(focusedCssClass);
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 03:35:43 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
hasVideo() {
|
|
|
|
return this.selectVideoElement().length !== 0;
|
2017-06-29 03:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Checks whether the user associated with this <tt>SmallVideo</tt> is currently
|
|
|
|
* being displayed on the "large video".
|
|
|
|
*
|
|
|
|
* @return {boolean} <tt>true</tt> if the user is displayed on the large video
|
|
|
|
* or <tt>false</tt> otherwise.
|
|
|
|
*/
|
|
|
|
isCurrentlyOnLargeVideo() {
|
2020-04-14 22:41:30 +00:00
|
|
|
return APP.store.getState()['features/large-video']?.participantId === this.id;
|
2019-12-16 14:15:02 +00:00
|
|
|
}
|
2017-06-29 03:35:43 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Checks whether there is a playable video stream available for the user
|
|
|
|
* associated with this <tt>SmallVideo</tt>.
|
|
|
|
*
|
|
|
|
* @return {boolean} <tt>true</tt> if there is a playable video stream available
|
|
|
|
* or <tt>false</tt> otherwise.
|
|
|
|
*/
|
|
|
|
isVideoPlayable() {
|
2020-10-23 22:48:56 +00:00
|
|
|
const state = APP.store.getState();
|
|
|
|
const tracks = state['features/base/tracks'];
|
|
|
|
const participant = this.id ? getParticipantById(state, this.id) : getLocalParticipant(state);
|
|
|
|
let isVideoMuted = true;
|
|
|
|
|
|
|
|
if (participant?.local) {
|
|
|
|
isVideoMuted = isLocalTrackMuted(tracks, MEDIA_TYPE.VIDEO);
|
|
|
|
} else if (!participant?.isFakeParticipant) { // remote participants excluding shared video
|
|
|
|
isVideoMuted = isRemoteTrackMuted(tracks, MEDIA_TYPE.VIDEO, this.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.videoStream && !isVideoMuted && !APP.conference.isAudioOnly();
|
2017-06-29 03:35:43 +00:00
|
|
|
}
|
2016-10-20 19:28:10 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Determines what should be display on the thumbnail.
|
|
|
|
*
|
|
|
|
* @return {number} one of <tt>DISPLAY_VIDEO</tt>,<tt>DISPLAY_AVATAR</tt>
|
|
|
|
* or <tt>DISPLAY_BLACKNESS_WITH_NAME</tt>.
|
|
|
|
*/
|
|
|
|
selectDisplayMode(input) {
|
2020-07-17 09:46:56 +00:00
|
|
|
if (!input.tileViewActive && input.isScreenSharing) {
|
|
|
|
return input.isHovered ? DISPLAY_AVATAR_WITH_NAME : DISPLAY_AVATAR;
|
|
|
|
} else if (input.isCurrentlyOnLargeVideo && !input.tileViewActive) {
|
|
|
|
// Display name is always and only displayed when user is on the stage
|
2019-12-16 14:15:02 +00:00
|
|
|
return input.isVideoPlayable && !input.isAudioOnly ? DISPLAY_BLACKNESS_WITH_NAME : DISPLAY_AVATAR_WITH_NAME;
|
|
|
|
} else if (input.isVideoPlayable && input.hasVideo && !input.isAudioOnly) {
|
|
|
|
// check hovering and change state to video with name
|
|
|
|
return input.isHovered ? DISPLAY_VIDEO_WITH_NAME : DISPLAY_VIDEO;
|
|
|
|
}
|
2016-03-31 20:12:33 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
// check hovering and change state to avatar with name
|
|
|
|
return input.isHovered ? DISPLAY_AVATAR_WITH_NAME : DISPLAY_AVATAR;
|
2015-06-23 08:00:46 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Computes information that determine the display mode.
|
|
|
|
*
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
computeDisplayModeInput() {
|
2020-10-26 19:51:51 +00:00
|
|
|
let isScreenSharing = false;
|
2020-10-29 16:11:15 +00:00
|
|
|
let connectionStatus, mutedWhileDisconnected;
|
2020-10-26 19:51:51 +00:00
|
|
|
const state = APP.store.getState();
|
|
|
|
const participant = getParticipantById(state, this.id);
|
|
|
|
|
|
|
|
if (typeof participant !== 'undefined' && !participant.isFakeParticipant && !participant.local) {
|
|
|
|
const tracks = state['features/base/tracks'];
|
|
|
|
const track = getTrackByMediaTypeAndParticipant(tracks, MEDIA_TYPE.VIDEO, this.id);
|
|
|
|
|
|
|
|
isScreenSharing = typeof track !== 'undefined' && track.videoType === 'desktop';
|
2020-10-28 20:06:59 +00:00
|
|
|
connectionStatus = participant.connectionStatus;
|
2020-10-29 16:11:15 +00:00
|
|
|
mutedWhileDisconnected = participant.mutedWhileDisconnected;
|
2020-10-26 19:51:51 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
return {
|
|
|
|
isCurrentlyOnLargeVideo: this.isCurrentlyOnLargeVideo(),
|
|
|
|
isHovered: this._isHovered(),
|
|
|
|
isAudioOnly: APP.conference.isAudioOnly(),
|
2020-10-26 19:51:51 +00:00
|
|
|
tileViewActive: shouldDisplayTileView(state),
|
2019-12-16 14:15:02 +00:00
|
|
|
isVideoPlayable: this.isVideoPlayable(),
|
|
|
|
hasVideo: Boolean(this.selectVideoElement().length),
|
2020-10-28 20:06:59 +00:00
|
|
|
connectionStatus,
|
2020-10-29 16:11:15 +00:00
|
|
|
mutedWhileDisconnected,
|
2020-04-17 01:15:07 +00:00
|
|
|
canPlayEventReceived: this._canPlayEventReceived,
|
2019-12-16 14:15:02 +00:00
|
|
|
videoStream: Boolean(this.videoStream),
|
2020-10-26 19:51:51 +00:00
|
|
|
isScreenSharing,
|
2019-12-16 14:15:02 +00:00
|
|
|
videoStreamMuted: this.videoStream ? this.videoStream.isMuted() : 'no stream'
|
|
|
|
};
|
|
|
|
}
|
2015-06-23 08:00:46 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Checks whether current video is considered hovered. Currently it is hovered
|
|
|
|
* if the mouse is over the video, or if the connection
|
|
|
|
* indicator is shown(hovered).
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_isHovered() {
|
2020-10-16 20:59:33 +00:00
|
|
|
return this.videoIsHovered;
|
2019-12-16 14:15:02 +00:00
|
|
|
}
|
2016-09-19 19:04:55 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
2020-02-25 16:54:20 +00:00
|
|
|
* Updates the css classes of the thumbnail based on the current state.
|
2019-12-16 14:15:02 +00:00
|
|
|
*/
|
|
|
|
updateView() {
|
|
|
|
this.$container.removeClass((index, classNames) =>
|
|
|
|
classNames.split(' ').filter(name => name.startsWith('display-')));
|
|
|
|
|
|
|
|
const oldDisplayMode = this.displayMode;
|
|
|
|
let displayModeString = '';
|
|
|
|
|
|
|
|
const displayModeInput = this.computeDisplayModeInput();
|
|
|
|
|
|
|
|
// Determine whether video, avatar or blackness should be displayed
|
|
|
|
this.displayMode = this.selectDisplayMode(displayModeInput);
|
|
|
|
|
|
|
|
switch (this.displayMode) {
|
|
|
|
case DISPLAY_AVATAR_WITH_NAME:
|
|
|
|
displayModeString = 'avatar-with-name';
|
|
|
|
this.$container.addClass('display-avatar-with-name');
|
|
|
|
break;
|
|
|
|
case DISPLAY_BLACKNESS_WITH_NAME:
|
|
|
|
displayModeString = 'blackness-with-name';
|
|
|
|
this.$container.addClass('display-name-on-black');
|
|
|
|
break;
|
|
|
|
case DISPLAY_VIDEO:
|
|
|
|
displayModeString = 'video';
|
|
|
|
this.$container.addClass('display-video');
|
|
|
|
break;
|
|
|
|
case DISPLAY_VIDEO_WITH_NAME:
|
|
|
|
displayModeString = 'video-with-name';
|
|
|
|
this.$container.addClass('display-name-on-video');
|
|
|
|
break;
|
|
|
|
case DISPLAY_AVATAR:
|
|
|
|
default:
|
|
|
|
displayModeString = 'avatar';
|
|
|
|
this.$container.addClass('display-avatar-only');
|
|
|
|
break;
|
|
|
|
}
|
2019-08-08 15:28:21 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (this.displayMode !== oldDisplayMode) {
|
|
|
|
logger.debug(`Displaying ${displayModeString} for ${this.id}, data: [${JSON.stringify(displayModeInput)}]`);
|
|
|
|
}
|
2016-09-19 20:59:56 +00:00
|
|
|
}
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Updates the react component displaying the avatar with the passed in avatar
|
|
|
|
* url.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
initializeAvatar() {
|
|
|
|
const thumbnail = this.$avatar().get(0);
|
|
|
|
|
|
|
|
if (thumbnail) {
|
|
|
|
// Maybe add a special case for local participant, as on init of
|
|
|
|
// LocalVideo.js the id is set to "local" but will get updated later.
|
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store = { APP.store }>
|
|
|
|
<AvatarDisplay
|
|
|
|
className = 'userAvatar'
|
2020-01-24 16:28:47 +00:00
|
|
|
participantId = { this.id } />
|
2019-12-16 14:15:02 +00:00
|
|
|
</Provider>,
|
|
|
|
thumbnail
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Unmounts any attached react components (particular the avatar image) from
|
|
|
|
* the avatar container.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
removeAvatar() {
|
|
|
|
const thumbnail = this.$avatar().get(0);
|
2016-09-19 20:59:56 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (thumbnail) {
|
|
|
|
ReactDOM.unmountComponentAtNode(thumbnail);
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 18:17:17 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Shows or hides the dominant speaker indicator.
|
|
|
|
* @param show whether to show or hide.
|
|
|
|
*/
|
|
|
|
showDominantSpeakerIndicator(show) {
|
|
|
|
// Don't create and show dominant speaker indicator if
|
|
|
|
// DISABLE_DOMINANT_SPEAKER_INDICATOR is true
|
|
|
|
if (interfaceConfig.DISABLE_DOMINANT_SPEAKER_INDICATOR) {
|
|
|
|
return;
|
|
|
|
}
|
2015-06-29 14:24:21 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (!this.container) {
|
|
|
|
logger.warn(`Unable to set dominant speaker indicator - ${this.videoSpanId} does not exist`);
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (this._showDominantSpeaker === show) {
|
|
|
|
return;
|
|
|
|
}
|
2015-06-29 14:24:21 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
this._showDominantSpeaker = show;
|
|
|
|
this.$container.toggleClass('active-speaker', this._showDominantSpeaker);
|
|
|
|
this.updateIndicators();
|
|
|
|
this.updateView();
|
2017-06-29 18:21:03 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Shows or hides the raised hand indicator.
|
|
|
|
* @param show whether to show or hide.
|
|
|
|
*/
|
|
|
|
showRaisedHandIndicator(show) {
|
|
|
|
if (!this.container) {
|
|
|
|
logger.warn(`Unable to raised hand indication - ${
|
|
|
|
this.videoSpanId} does not exist`);
|
2017-06-29 18:21:03 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-06-29 14:24:21 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
this._showRaisedHand = show;
|
|
|
|
this.updateIndicators();
|
2017-10-12 23:02:29 +00:00
|
|
|
}
|
2016-10-10 22:03:28 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Initalizes any browser specific properties. Currently sets the overflow
|
|
|
|
* property for Qt browsers on Windows to hidden, thus fixing the following
|
|
|
|
* problem:
|
|
|
|
* Some browsers don't have full support of the object-fit property for the
|
|
|
|
* video element and when we set video object-fit to "cover" the video
|
|
|
|
* actually overflows the boundaries of its container, so it's important
|
|
|
|
* to indicate that the "overflow" should be hidden.
|
|
|
|
*
|
|
|
|
* Setting this property for all browsers will result in broken audio levels,
|
|
|
|
* which makes this a temporary solution, before reworking audio levels.
|
|
|
|
*/
|
|
|
|
initBrowserSpecificProperties() {
|
|
|
|
const userAgent = window.navigator.userAgent;
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (userAgent.indexOf('QtWebEngine') > -1
|
|
|
|
&& (userAgent.indexOf('Windows') > -1 || userAgent.indexOf('Linux') > -1)) {
|
|
|
|
this.$container.css('overflow', 'hidden');
|
|
|
|
}
|
2016-02-08 21:41:04 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Cleans up components on {@code SmallVideo} and removes itself from the DOM.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
remove() {
|
|
|
|
logger.log('Remove thumbnail', this.id);
|
|
|
|
this.removeAudioLevelIndicator();
|
2016-06-20 21:13:17 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
const toolbarContainer
|
|
|
|
= this.container.querySelector('.videocontainer__toolbar');
|
2016-02-08 21:41:04 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (toolbarContainer) {
|
|
|
|
ReactDOM.unmountComponentAtNode(toolbarContainer);
|
2016-07-08 20:14:49 +00:00
|
|
|
}
|
2016-08-08 22:03:00 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
this.removeConnectionIndicator();
|
|
|
|
this.removeDisplayName();
|
|
|
|
this.removeAvatar();
|
|
|
|
this._unmountIndicators();
|
2017-10-12 23:02:29 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
// Remove whole container
|
|
|
|
if (this.container.parentNode) {
|
|
|
|
this.container.parentNode.removeChild(this.container);
|
|
|
|
}
|
2016-08-08 22:03:00 +00:00
|
|
|
}
|
2019-01-01 21:19:34 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Helper function for re-rendering multiple react components of the small
|
|
|
|
* video.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
rerender() {
|
|
|
|
this.updateIndicators();
|
|
|
|
this.updateStatusBar();
|
|
|
|
this.updateView();
|
2019-01-01 21:19:34 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Updates the React element responsible for showing connection status, dominant
|
|
|
|
* speaker, and raised hand icons. Uses instance variables to get the necessary
|
|
|
|
* state to display. Will create the React element if not already created.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
updateIndicators() {
|
|
|
|
const indicatorToolbar = this.container.querySelector('.videocontainer__toptoolbar');
|
2019-01-01 21:19:34 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (!indicatorToolbar) {
|
|
|
|
return;
|
|
|
|
}
|
2019-01-01 21:19:34 +00:00
|
|
|
|
2020-01-24 16:28:47 +00:00
|
|
|
const { NORMAL = 8 } = interfaceConfig.INDICATOR_FONT_SIZES || {};
|
|
|
|
const iconSize = NORMAL;
|
2019-12-16 14:15:02 +00:00
|
|
|
const showConnectionIndicator = this.videoIsHovered || !interfaceConfig.CONNECTION_INDICATOR_AUTO_HIDE_ENABLED;
|
|
|
|
const state = APP.store.getState();
|
|
|
|
const currentLayout = getCurrentLayout(state);
|
|
|
|
const participantCount = getParticipantCount(state);
|
|
|
|
let statsPopoverPosition, tooltipPosition;
|
|
|
|
|
|
|
|
if (currentLayout === LAYOUTS.TILE_VIEW) {
|
|
|
|
statsPopoverPosition = 'right top';
|
|
|
|
tooltipPosition = 'right';
|
|
|
|
} else if (currentLayout === LAYOUTS.VERTICAL_FILMSTRIP_VIEW) {
|
|
|
|
statsPopoverPosition = this.statsPopoverLocation;
|
|
|
|
tooltipPosition = 'left';
|
|
|
|
} else {
|
|
|
|
statsPopoverPosition = this.statsPopoverLocation;
|
|
|
|
tooltipPosition = 'top';
|
|
|
|
}
|
2018-08-08 18:48:23 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store = { APP.store }>
|
|
|
|
<I18nextProvider i18n = { i18next }>
|
|
|
|
<div>
|
|
|
|
<AtlasKitThemeProvider mode = 'dark'>
|
|
|
|
{ this._showConnectionIndicator
|
|
|
|
? <ConnectionIndicator
|
|
|
|
alwaysVisible = { showConnectionIndicator }
|
|
|
|
iconSize = { iconSize }
|
|
|
|
isLocalVideo = { this.isLocal }
|
2020-11-10 22:21:07 +00:00
|
|
|
enableStatsDisplay = { true }
|
2019-12-16 14:15:02 +00:00
|
|
|
participantId = { this.id }
|
2020-01-24 16:28:47 +00:00
|
|
|
statsPopoverPosition = { statsPopoverPosition } />
|
2019-12-16 14:15:02 +00:00
|
|
|
: null }
|
|
|
|
<RaisedHandIndicator
|
2017-10-06 16:14:45 +00:00
|
|
|
iconSize = { iconSize }
|
2019-04-15 16:23:28 +00:00
|
|
|
participantId = { this.id }
|
2017-10-06 16:14:45 +00:00
|
|
|
tooltipPosition = { tooltipPosition } />
|
2019-12-16 14:15:02 +00:00
|
|
|
{ this._showDominantSpeaker && participantCount > 2
|
|
|
|
? <DominantSpeakerIndicator
|
|
|
|
iconSize = { iconSize }
|
|
|
|
tooltipPosition = { tooltipPosition } />
|
|
|
|
: null }
|
|
|
|
</AtlasKitThemeProvider>
|
|
|
|
</div>
|
|
|
|
</I18nextProvider>
|
|
|
|
</Provider>,
|
|
|
|
indicatorToolbar
|
|
|
|
);
|
2018-11-30 22:13:39 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Callback invoked when the thumbnail is clicked and potentially trigger
|
|
|
|
* pinning of the participant.
|
|
|
|
*
|
|
|
|
* @param {MouseEvent} event - The click event to intercept.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onContainerClick(event) {
|
|
|
|
const triggerPin = this._shouldTriggerPin(event);
|
2018-11-30 22:13:39 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (event.stopPropagation && triggerPin) {
|
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
if (triggerPin) {
|
|
|
|
this.togglePin();
|
|
|
|
}
|
2018-11-30 22:13:39 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-05-18 19:59:07 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Returns whether or not a click event is targeted at certain elements which
|
|
|
|
* should not trigger a pin.
|
|
|
|
*
|
|
|
|
* @param {MouseEvent} event - The click event to intercept.
|
|
|
|
* @private
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_shouldTriggerPin(event) {
|
|
|
|
// TODO Checking the classes is a workround to allow events to bubble into
|
|
|
|
// the DisplayName component if it was clicked. React's synthetic events
|
|
|
|
// will fire after jQuery handlers execute, so stop propogation at this
|
|
|
|
// point will prevent DisplayName from getting click events. This workaround
|
|
|
|
// should be removeable once LocalVideo is a React Component because then
|
|
|
|
// the components share the same eventing system.
|
|
|
|
const $source = $(event.target || event.srcElement);
|
|
|
|
|
|
|
|
return $source.parents('.displayNameContainer').length === 0
|
|
|
|
&& $source.parents('.popover').length === 0
|
|
|
|
&& !event.target.classList.contains('popover');
|
|
|
|
}
|
2018-05-18 19:59:07 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Pins the participant displayed by this thumbnail or unpins if already pinned.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
togglePin() {
|
|
|
|
const pinnedParticipant = getPinnedParticipant(APP.store.getState()) || {};
|
|
|
|
const participantIdToPin = pinnedParticipant && pinnedParticipant.id === this.id ? null : this.id;
|
2017-07-10 22:29:44 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
APP.store.dispatch(pinParticipant(participantIdToPin));
|
2017-07-10 22:29:44 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
/**
|
|
|
|
* Removes the React element responsible for showing connection status, dominant
|
|
|
|
* speaker, and raised hand icons.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_unmountIndicators() {
|
|
|
|
const indicatorToolbar = this.container.querySelector('.videocontainer__toptoolbar');
|
2017-06-19 20:20:13 +00:00
|
|
|
|
2019-12-16 14:15:02 +00:00
|
|
|
if (indicatorToolbar) {
|
|
|
|
ReactDOM.unmountComponentAtNode(indicatorToolbar);
|
|
|
|
}
|
|
|
|
}
|
2019-01-01 21:19:34 +00:00
|
|
|
|
2020-01-24 16:28:47 +00:00
|
|
|
/**
|
|
|
|
* Sets the size of the thumbnail.
|
|
|
|
*/
|
|
|
|
_setThumbnailSize() {
|
|
|
|
const layout = getCurrentLayout(APP.store.getState());
|
|
|
|
const heightToWidthPercent = 100
|
|
|
|
/ (this.isLocal ? interfaceConfig.LOCAL_THUMBNAIL_RATIO : interfaceConfig.REMOTE_THUMBNAIL_RATIO);
|
|
|
|
|
|
|
|
switch (layout) {
|
|
|
|
case LAYOUTS.VERTICAL_FILMSTRIP_VIEW: {
|
|
|
|
this.$container.css('padding-top', `${heightToWidthPercent}%`);
|
|
|
|
this.$avatar().css({
|
|
|
|
height: '50%',
|
|
|
|
width: `${heightToWidthPercent / 2}%`
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LAYOUTS.HORIZONTAL_FILMSTRIP_VIEW: {
|
|
|
|
const state = APP.store.getState();
|
|
|
|
const { local, remote } = state['features/filmstrip'].horizontalViewDimensions;
|
|
|
|
const size = this.isLocal ? local : remote;
|
|
|
|
|
|
|
|
if (typeof size !== 'undefined') {
|
|
|
|
const { height, width } = size;
|
|
|
|
const avatarSize = height / 2;
|
|
|
|
|
|
|
|
this.$container.css({
|
|
|
|
height: `${height}px`,
|
|
|
|
'min-height': `${height}px`,
|
|
|
|
'min-width': `${width}px`,
|
|
|
|
width: `${width}px`
|
|
|
|
});
|
|
|
|
this.$avatar().css({
|
|
|
|
height: `${avatarSize}px`,
|
|
|
|
width: `${avatarSize}px`
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LAYOUTS.TILE_VIEW: {
|
|
|
|
const state = APP.store.getState();
|
|
|
|
const { thumbnailSize } = state['features/filmstrip'].tileViewDimensions;
|
|
|
|
|
|
|
|
if (typeof thumbnailSize !== 'undefined') {
|
|
|
|
const { height, width } = thumbnailSize;
|
|
|
|
const avatarSize = height / 2;
|
|
|
|
|
|
|
|
this.$container.css({
|
|
|
|
height: `${height}px`,
|
|
|
|
'min-height': `${height}px`,
|
|
|
|
'min-width': `${width}px`,
|
|
|
|
width: `${width}px`
|
|
|
|
});
|
|
|
|
this.$avatar().css({
|
|
|
|
height: `${avatarSize}px`,
|
|
|
|
width: `${avatarSize}px`
|
|
|
|
});
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-16 14:15:02 +00:00
|
|
|
}
|