123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- import { Component } from 'react';
-
- import { IReduxState } from '../../app/types';
- import { getVirtualScreenshareParticipantOwnerId } from '../../base/participants/functions';
- import statsEmitter from '../statsEmitter';
-
- const defaultAutoHideTimeout = 5000;
-
- /**
- * The connection quality percentage that must be reached to be considered of
- * good quality and can result in the connection indicator being hidden.
- *
- * @type {number}
- */
- export const INDICATOR_DISPLAY_THRESHOLD = 30;
-
- /**
- * The type of the React {@code Component} props of {@link ConnectionIndicator}.
- */
- export interface IProps {
-
- /**
- * How long the connection indicator should remain displayed before hiding.
- */
- _autoHideTimeout: number;
-
- /**
- * Whether or not the statistics are for screen share.
- */
- _isVirtualScreenshareParticipant: boolean;
-
- /**
- * Custom icon style.
- */
- iconStyle?: Object;
-
- /**
- * The ID of the participant associated with the displayed connection indication and
- * stats.
- */
- participantId: string;
- }
-
- /**
- * The type of the React {@code Component} state of {@link ConnectionIndicator}.
- */
- export interface IState {
-
- /**
- * Whether or not a CSS class should be applied to the root for hiding the
- * connection indicator. By default the indicator should start out hidden
- * because the current connection status is not known at mount.
- */
- showIndicator: boolean;
-
- /**
- * Cache of the stats received from subscribing to stats emitting. The keys
- * should be the name of the stat. With each stat update, updates stats are
- * mixed in with cached stats and a new stats object is set in state.
- */
- stats: {
- bandwidth?: any;
- bitrate?: any;
- bridgeCount?: any;
- codec?: any;
- framerate?: any;
- maxEnabledResolution?: any;
- packetLoss?: any;
- percent?: number;
- resolution?: any;
- serverRegion?: any;
- transport?: any;
- };
- }
-
- /**
- * Implements a React {@link Component} which displays the current connection
- * quality.
- *
- * @augments {Component}
- */
- class AbstractConnectionIndicator<P extends IProps, S extends IState> extends Component<P, S> {
- /**
- * The timeout for automatically hiding the indicator.
- */
- autoHideTimeout: number | undefined;
-
- /**
- * Initializes a new {@code ConnectionIndicator} instance.
- *
- * @param {P} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props: P) {
- super(props);
-
- // Bind event handlers so they are only bound once for every instance.
- this._onStatsUpdated = this._onStatsUpdated.bind(this);
- }
-
- /**
- * Starts listening for stat updates.
- *
- * @inheritdoc
- * returns {void}
- */
- componentDidMount() {
- statsEmitter.subscribeToClientStats(this._getRealParticipantId(this.props), this._onStatsUpdated);
- }
-
- /**
- * Updates which user's stats are being listened to.
- *
- * @inheritdoc
- * returns {void}
- */
- componentDidUpdate(prevProps: IProps) {
- const prevParticipantId = this._getRealParticipantId(prevProps);
- const participantId = this._getRealParticipantId(this.props);
-
- if (prevParticipantId !== participantId) {
- statsEmitter.unsubscribeToClientStats(prevParticipantId, this._onStatsUpdated);
- statsEmitter.subscribeToClientStats(participantId, this._onStatsUpdated);
- }
- }
-
- /**
- * Cleans up any queued processes, which includes listening for new stats
- * and clearing any timeout to hide the indicator.
- *
- * @private
- * @returns {void}
- */
- componentWillUnmount() {
- statsEmitter.unsubscribeToClientStats(this._getRealParticipantId(this.props), this._onStatsUpdated);
-
- clearTimeout(this.autoHideTimeout ?? 0);
- }
-
- /**
- * Gets the "real" participant ID. FOr a virtual screenshare participant, that is its "owner".
- *
- * @param {Props} props - The props where to extract the data from.
- * @returns {string | undefined } The resolved participant ID.
- */
- _getRealParticipantId(props: IProps) {
- if (props._isVirtualScreenshareParticipant) {
- return getVirtualScreenshareParticipantOwnerId(props.participantId);
- }
-
- return props.participantId;
- }
-
- /**
- * Callback invoked when new connection stats associated with the passed in
- * user ID are available. Will update the component's display of current
- * statistics.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {void}
- */
- _onStatsUpdated(stats = { connectionQuality: undefined }) {
- // Rely on React to batch setState actions.
- const { connectionQuality } = stats;
- const newPercentageState = typeof connectionQuality === 'undefined'
- ? {} : { percent: connectionQuality };
- const newStats = Object.assign(
- {},
- this.state.stats,
- stats,
- newPercentageState);
-
- this.setState({
- stats: newStats
- });
-
- this._updateIndicatorAutoHide(newStats.percent ?? 0);
- }
-
- /**
- * Updates the internal state for automatically hiding the indicator.
- *
- * @param {number} percent - The current connection quality percentage
- * between the values 0 and 100.
- * @private
- * @returns {void}
- */
- _updateIndicatorAutoHide(percent: number) {
- if (percent < INDICATOR_DISPLAY_THRESHOLD) {
- clearTimeout(this.autoHideTimeout ?? 0);
- this.autoHideTimeout = undefined;
-
- this.setState({
- showIndicator: true
- });
- } else if (this.autoHideTimeout) {
- // This clause is intentionally left blank because no further action
- // is needed if the percent is below the threshold and there is an
- // autoHideTimeout set.
- } else {
- this.autoHideTimeout = window.setTimeout(() => {
- this.setState({
- showIndicator: false
- });
- }, this.props._autoHideTimeout);
- }
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated props for the
- * {@code ConnectorIndicator} component.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {IProps}
- */
- export function mapStateToProps(state: IReduxState) {
- return {
- _autoHideTimeout: state['features/base/config'].connectionIndicators?.autoHideTimeout ?? defaultAutoHideTimeout
- };
- }
-
- export default AbstractConnectionIndicator;
|