123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 |
- /* global interfaceConfig */
-
- import PropTypes from 'prop-types';
- import React, { Component } from 'react';
-
- import { translate } from '../../base/i18n';
- import { JitsiParticipantConnectionStatus } from '../../base/lib-jitsi-meet';
- import { Popover } from '../../base/popover';
- import { ConnectionStatsTable } from '../../connection-stats';
-
- import statsEmitter from '../statsEmitter';
-
- /**
- * 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}
- */
- const INDICATOR_DISPLAY_THRESHOLD = 70;
-
- /**
- * An array of display configurations for the connection indicator and its bars.
- * The ordering is done specifically for faster iteration to find a matching
- * configuration to the current connection strength percentage.
- *
- * @type {Object[]}
- */
- const QUALITY_TO_WIDTH = [
-
- // Full (3 bars)
- {
- colorClass: 'status-high',
- percent: INDICATOR_DISPLAY_THRESHOLD,
- tip: 'connectionindicator.quality.good',
- width: '100%'
- },
-
- // 2 bars
- {
- colorClass: 'status-med',
- percent: 40,
- tip: 'connectionindicator.quality.nonoptimal',
- width: '66%'
- },
-
- // 1 bar
- {
- colorClass: 'status-low',
- percent: 0,
- tip: 'connectionindicator.quality.poor',
- width: '33%'
- }
-
- // Note: we never show 0 bars as long as there is a connection.
- ];
-
- /**
- * Implements a React {@link Component} which displays the current connection
- * quality percentage and has a popover to show more detailed connection stats.
- *
- * @extends {Component}
- */
- class ConnectionIndicator extends Component {
- /**
- * {@code ConnectionIndicator} component's property types.
- *
- * @static
- */
- static propTypes = {
- /**
- * Whether or not the component should ignore setting a visibility class
- * for hiding the component when the connection quality is not strong.
- */
- alwaysVisible: PropTypes.bool,
-
- /**
- * The current condition of the user's connection, matching one of the
- * enumerated values in the library.
- *
- * @type {JitsiParticipantConnectionStatus}
- */
- connectionStatus: PropTypes.string,
-
- /**
- * Whether or not clicking the indicator should display a popover for
- * more details.
- */
- enableStatsDisplay: PropTypes.bool,
-
- /**
- * The font-size for the icon.
- */
- iconSize: PropTypes.number,
-
- /**
- * Whether or not the displays stats are for local video.
- */
- isLocalVideo: PropTypes.bool,
-
- /**
- * Relative to the icon from where the popover for more connection
- * details should display.
- */
- statsPopoverPosition: PropTypes.string,
-
- /**
- * Invoked to obtain translated strings.
- */
- t: PropTypes.func,
-
- /**
- * The user ID associated with the displayed connection indication and
- * stats.
- */
- userID: PropTypes.string
- };
-
- /**
- * Initializes a new {@code ConnectionIndicator} instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props) {
- super(props);
-
- this.state = {
- /**
- * The timeout for automatically hiding the indicator.
- *
- * @type {timeoutID}
- */
- autoHideTimeout: null,
-
- /**
- * 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.
- *
- * @type {boolean}
- */
- showIndicator: false,
-
- /**
- * Whether or not the popover content should display additional
- * statistics.
- *
- * @type {boolean}
- */
- showMoreStats: false,
-
- /**
- * 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: {}
- };
-
- // Bind event handlers so they are only bound once for every instance.
- this._onStatsUpdated = this._onStatsUpdated.bind(this);
- this._onToggleShowMore = this._onToggleShowMore.bind(this);
- }
-
- /**
- * Starts listening for stat updates.
- *
- * @inheritdoc
- * returns {void}
- */
- componentDidMount() {
- statsEmitter.subscribeToClientStats(
- this.props.userID, this._onStatsUpdated);
- }
-
- /**
- * Updates which user's stats are being listened to.
- *
- * @inheritdoc
- * returns {void}
- */
- componentDidUpdate(prevProps) {
- if (prevProps.userID !== this.props.userID) {
- statsEmitter.unsubscribeToClientStats(
- prevProps.userID, this._onStatsUpdated);
- statsEmitter.subscribeToClientStats(
- this.props.userID, 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.props.userID, this._onStatsUpdated);
-
- clearTimeout(this.state.autoHideTimeout);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const visibilityClass = this._getVisibilityClass();
- const rootClassNames = `indicator-container ${visibilityClass}`;
-
- const colorClass = this._getConnectionColorClass();
- const indicatorContainerClassNames
- = `connection-indicator indicator ${colorClass}`;
-
- return (
- <Popover
- className = { rootClassNames }
- content = { this._renderStatisticsTable() }
- disablePopover = { !this.props.enableStatsDisplay }
- position = { this.props.statsPopoverPosition }>
- <div className = 'popover-trigger'>
- <div
- className = { indicatorContainerClassNames }
- style = {{ fontSize: this.props.iconSize }}>
- <div className = 'connection indicatoricon'>
- { this._renderIcon() }
- </div>
- </div>
- </div>
- </Popover>
- );
- }
-
- /**
- * Returns a CSS class that interprets the current connection status as a
- * color.
- *
- * @private
- * @returns {string}
- */
- _getConnectionColorClass() {
- const { connectionStatus } = this.props;
- const { percent } = this.state.stats;
- const { INACTIVE, INTERRUPTED } = JitsiParticipantConnectionStatus;
-
- if (connectionStatus === INACTIVE) {
- return 'status-other';
- } else if (connectionStatus === INTERRUPTED) {
- return 'status-lost';
- } else if (typeof percent === 'undefined') {
- return 'status-high';
- }
-
- return QUALITY_TO_WIDTH.find(x => percent >= x.percent).colorClass;
- }
-
- /**
- * Returns a string that describes the current connection status.
- *
- * @private
- * @returns {string}
- */
- _getConnectionStatusTip() {
- let tipKey;
-
- switch (this.props.connectionStatus) {
- case JitsiParticipantConnectionStatus.INTERRUPTED:
- tipKey = 'connectionindicator.quality.lost';
- break;
-
- case JitsiParticipantConnectionStatus.INACTIVE:
- tipKey = 'connectionindicator.quality.inactive';
- break;
-
- default: {
- const { percent } = this.state.stats;
-
- if (typeof percent === 'undefined') {
- // If percentage is undefined then there are no stats available
- // yet, likely because only a local connection has been
- // established so far. Assume a strong connection to start.
- tipKey = 'connectionindicator.quality.good';
- } else {
- const config = QUALITY_TO_WIDTH.find(x => percent >= x.percent);
-
- tipKey = config.tip;
- }
- }
- }
-
- return this.props.t(tipKey);
- }
-
- /**
- * Returns additional class names to add to the root of the component. The
- * class names are intended to be used for hiding or showing the indicator.
- *
- * @private
- * @returns {string}
- */
- _getVisibilityClass() {
- const { connectionStatus } = this.props;
-
- return this.state.showIndicator
- || this.props.alwaysVisible
- || connectionStatus === JitsiParticipantConnectionStatus.INTERRUPTED
- || connectionStatus === JitsiParticipantConnectionStatus.INACTIVE
- ? 'show-connection-indicator' : 'hide-connection-indicator';
- }
-
- /**
- * 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 = {}) {
- const { connectionQuality } = stats;
- const newPercentageState = typeof connectionQuality === 'undefined'
- ? {} : { percent: connectionQuality };
- const newStats = Object.assign(
- {},
- this.state.stats,
- stats,
- newPercentageState);
-
- this.setState({
- stats: newStats
- });
-
- // Rely on React to batch setState actions.
- this._updateIndicatorAutoHide(newStats.percent);
- }
-
- /**
- * Callback to invoke when the show more link in the popover content is
- * clicked. Sets the state which will determine if the popover should show
- * additional statistics about the connection.
- *
- * @returns {void}
- */
- _onToggleShowMore() {
- this.setState({ showMoreStats: !this.state.showMoreStats });
- }
-
- /**
- * Creates a ReactElement for displaying an icon that represents the current
- * connection quality.
- *
- * @returns {ReactElement}
- */
- _renderIcon() {
- if (this.props.connectionStatus
- === JitsiParticipantConnectionStatus.INACTIVE) {
- return (
- <span className = 'connection_ninja'>
- <i className = 'icon-ninja' />
- </span>
- );
- }
-
- let iconWidth;
- let emptyIconWrapperClassName = 'connection_empty';
-
- if (this.props.connectionStatus
- === JitsiParticipantConnectionStatus.INTERRUPTED) {
-
- // emptyIconWrapperClassName is used by the torture tests to
- // identify lost connection status handling.
- emptyIconWrapperClassName = 'connection_lost';
- iconWidth = '0%';
- } else if (typeof this.state.stats.percent === 'undefined') {
- iconWidth = '100%';
- } else {
- const { percent } = this.state.stats;
-
- iconWidth = QUALITY_TO_WIDTH.find(x => percent >= x.percent).width;
- }
-
- return [
- <span
- className = { emptyIconWrapperClassName }
- key = 'icon-empty'>
- <i className = 'icon-gsm-bars' />
- </span>,
- <span
- className = 'connection_full'
- key = 'icon-full'
- style = {{ width: iconWidth }}>
- <i className = 'icon-gsm-bars' />
- </span>
- ];
- }
-
- /**
- * Creates a {@code ConnectionStatisticsTable} instance.
- *
- * @returns {ReactElement}
- */
- _renderStatisticsTable() {
- const {
- bandwidth,
- bitrate,
- framerate,
- packetLoss,
- resolution,
- transport
- } = this.state.stats;
-
- return (
- <ConnectionStatsTable
- bandwidth = { bandwidth }
- bitrate = { bitrate }
- connectionSummary = { this._getConnectionStatusTip() }
- framerate = { framerate }
- isLocalVideo = { this.props.isLocalVideo }
- onShowMore = { this._onToggleShowMore }
- packetLoss = { packetLoss }
- resolution = { resolution }
- shouldShowMore = { this.state.showMoreStats }
- transport = { transport } />
- );
- }
-
- /**
- * 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) {
- if (percent < INDICATOR_DISPLAY_THRESHOLD) {
- clearTimeout(this.state.autoHideTimeout);
- this.setState({
- autoHideTimeout: null,
- showIndicator: true
- });
- } else if (this.state.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.setState({
- autoHideTimeout: setTimeout(() => {
- this.setState({
- showIndicator: false
- });
- }, interfaceConfig.CONNECTION_INDICATOR_AUTO_HIDE_TIMEOUT)
- });
- }
- }
- }
-
- export default translate(ConnectionIndicator);
|