123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- /* eslint-disable lines-around-comment */
-
- import React, { PureComponent } from 'react';
- import { Text, View } from 'react-native';
- import { withTheme } from 'react-native-paper';
-
- import { IReduxState } from '../../../app/types';
- // @ts-ignore
- import Avatar from '../../../base/avatar/components/Avatar';
- import { hideSheet } from '../../../base/dialog/actions';
- // @ts-ignore
- import BottomSheet from '../../../base/dialog/components/native/BottomSheet';
- // @ts-ignore
- import { bottomSheetStyles } from '../../../base/dialog/components/native/styles';
- import { translate } from '../../../base/i18n/functions';
- import { IconArrowDownLarge, IconArrowUpLarge } from '../../../base/icons/svg';
- import { MEDIA_TYPE } from '../../../base/media/constants';
- import { getParticipantDisplayName } from '../../../base/participants/functions';
- // @ts-ignore
- import BaseIndicator from '../../../base/react/components/native/BaseIndicator';
- import { connect } from '../../../base/redux/functions';
- import {
- getTrackByMediaTypeAndParticipant
- } from '../../../base/tracks/functions.native';
- import {
- isTrackStreamingStatusInactive,
- isTrackStreamingStatusInterrupted
- } from '../../../connection-indicator/functions';
- import statsEmitter from '../../../connection-indicator/statsEmitter';
-
- // @ts-ignore
- import styles from './styles';
-
- /**
- * Size of the rendered avatar in the menu.
- */
- const AVATAR_SIZE = 25;
-
- const CONNECTION_QUALITY = [
-
- // Full (3 bars)
- {
- msg: 'connectionindicator.quality.good',
- percent: 30 // INDICATOR_DISPLAY_THRESHOLD
- },
-
- // 2 bars.
- {
- msg: 'connectionindicator.quality.nonoptimal',
- percent: 10
- },
-
- // 1 bar.
- {
- msg: 'connectionindicator.quality.poor',
- percent: 0
- }
- ];
-
- type IProps = {
-
- /**
- * Whether this participant's connection is inactive.
- */
- _isConnectionStatusInactive: boolean;
-
- /**
- * Whether this participant's connection is interrupted.
- */
- _isConnectionStatusInterrupted: boolean;
-
- /**
- * True if the menu is currently open, false otherwise.
- */
- _isOpen: boolean;
-
- /**
- * Display name of the participant retrieved from Redux.
- */
- _participantDisplayName: string;
-
- /**
- * The Redux dispatch function.
- */
- dispatch: Function;
-
- /**
- * The ID of the participant that this button is supposed to pin.
- */
- participantID: string;
-
- /**
- * The function to be used to translate i18n labels.
- */
- t: Function;
-
- /**
- * Theme used for styles.
- */
- theme: any;
- };
-
- /**
- * The type of the React {@code Component} state of {@link ConnectionStatusComponent}.
- */
- type IState = {
- codecString: string;
- connectionString: string;
- downloadString: string;
- packetLostDownloadString: string;
- packetLostUploadString: string;
- resolutionString: string;
- serverRegionString: string;
- uploadString: string;
- };
-
- /**
- * Class to implement a popup menu that show the connection statistics.
- */
- class ConnectionStatusComponent extends PureComponent<IProps, IState> {
-
- /**
- * Constructor of the component.
- *
- * @param {P} props - The read-only properties with which the new
- * instance is to be initialized.
- *
- * @inheritdoc
- */
- constructor(props: IProps) {
- super(props);
-
- this._onStatsUpdated = this._onStatsUpdated.bind(this);
- this._onCancel = this._onCancel.bind(this);
- this._renderMenuHeader = this._renderMenuHeader.bind(this);
-
- this.state = {
- resolutionString: 'N/A',
- downloadString: 'N/A',
- uploadString: 'N/A',
- packetLostDownloadString: 'N/A',
- packetLostUploadString: 'N/A',
- serverRegionString: 'N/A',
- codecString: 'N/A',
- connectionString: 'N/A'
- };
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactNode}
- */
- render() {
- const { t, theme } = this.props;
- const { palette } = theme;
-
- return (
- <BottomSheet
- onCancel = { this._onCancel }
- renderHeader = { this._renderMenuHeader }>
- <View style = { styles.statsWrapper }>
- <View style = { styles.statsInfoCell }>
- <Text style = { styles.statsTitleText }>
- { t('connectionindicator.status') }
- </Text>
- <Text style = { styles.statsInfoText }>
- { t(this.state.connectionString) }
- </Text>
- </View>
- <View style = { styles.statsInfoCell }>
- <Text style = { styles.statsTitleText }>
- { t('connectionindicator.bitrate') }
- </Text>
- <BaseIndicator
- icon = { IconArrowDownLarge }
- iconStyle = {{
- color: palette.icon03
- }} />
- <Text style = { styles.statsInfoText }>
- { this.state.downloadString }
- </Text>
- <BaseIndicator
- icon = { IconArrowUpLarge }
- iconStyle = {{
- color: palette.icon03
- }} />
- <Text style = { styles.statsInfoText }>
- { `${this.state.uploadString} Kbps` }
- </Text>
- </View>
- <View style = { styles.statsInfoCell }>
- <Text style = { styles.statsTitleText }>
- { t('connectionindicator.packetloss') }
- </Text>
- <BaseIndicator
- icon = { IconArrowDownLarge }
- iconStyle = {{
- color: palette.icon03
- }} />
- <Text style = { styles.statsInfoText }>
- { this.state.packetLostDownloadString }
- </Text>
- <BaseIndicator
- icon = { IconArrowUpLarge }
- iconStyle = {{
- color: palette.icon03
- }} />
- <Text style = { styles.statsInfoText }>
- { this.state.packetLostUploadString }
- </Text>
- </View>
- <View style = { styles.statsInfoCell }>
- <Text style = { styles.statsTitleText }>
- { t('connectionindicator.resolution') }
- </Text>
- <Text style = { styles.statsInfoText }>
- { this.state.resolutionString }
- </Text>
- </View>
- <View style = { styles.statsInfoCell }>
- <Text style = { styles.statsTitleText }>
- { t('connectionindicator.codecs') }
- </Text>
- <Text style = { styles.statsInfoText }>
- { this.state.codecString }
- </Text>
- </View>
- </View>
- </BottomSheet>
- );
- }
-
- /**
- * Starts listening for stat updates.
- *
- * @inheritdoc
- * returns {void}
- */
- componentDidMount() {
- statsEmitter.subscribeToClientStats(this.props.participantID, this._onStatsUpdated);
- }
-
- /**
- * Updates which user's stats are being listened to.
- *
- * @inheritdoc
- * returns {void}
- */
- componentDidUpdate(prevProps: IProps) {
- if (prevProps.participantID !== this.props.participantID) {
- statsEmitter.unsubscribeToClientStats(
- prevProps.participantID, this._onStatsUpdated);
- statsEmitter.subscribeToClientStats(
- this.props.participantID, this._onStatsUpdated);
- }
- }
-
- /**
- * 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 newState = this._buildState(stats);
-
- this.setState(newState);
- }
-
- /**
- * Extracts statistics and builds the state object.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {State}
- */
- _buildState(stats: any) {
- const { download: downloadBitrate, upload: uploadBitrate } = this._extractBitrate(stats) ?? {};
- const { download: downloadPacketLost, upload: uploadPacketLost } = this._extractPacketLost(stats) ?? {};
-
- return {
- resolutionString: this._extractResolutionString(stats) ?? this.state.resolutionString,
- downloadString: downloadBitrate ?? this.state.downloadString,
- uploadString: uploadBitrate ?? this.state.uploadString,
- packetLostDownloadString: downloadPacketLost === undefined
- ? this.state.packetLostDownloadString : `${downloadPacketLost}%`,
- packetLostUploadString: uploadPacketLost === undefined
- ? this.state.packetLostUploadString : `${uploadPacketLost}%`,
- serverRegionString: this._extractServer(stats) ?? this.state.serverRegionString,
- codecString: this._extractCodecs(stats) ?? this.state.codecString,
- connectionString: this._extractConnection(stats)
- };
- }
-
- /**
- * Extracts the resolution and framerate.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {string}
- */
- _extractResolutionString(stats: any) {
- const { framerate, resolution } = stats;
-
- const resolutionString = Object.keys(resolution || {})
- .map(ssrc => {
- const { width, height } = resolution[ssrc];
-
- return `${width}x${height}`;
- })
- .join(', ') || null;
-
- const frameRateString = Object.keys(framerate || {})
- .map(ssrc => framerate[ssrc])
- .join(', ') || null;
-
- return resolutionString && frameRateString ? `${resolutionString}@${frameRateString}fps` : undefined;
- }
-
- /**
- * Extracts the download and upload bitrates.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {{ download, upload }}
- */
- _extractBitrate(stats: any) {
- return stats.bitrate;
- }
-
- /**
- * Extracts the download and upload packet lost.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {{ download, upload }}
- */
- _extractPacketLost(stats: any) {
- return stats.packetLoss;
- }
-
- /**
- * Extracts the server name.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {string}
- */
- _extractServer(stats: any) {
- return stats.serverRegion;
- }
-
- /**
- * Extracts the audio and video codecs names.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {string}
- */
- _extractCodecs(stats: any) {
- const { codec } = stats;
-
- let codecString;
-
- if (codec) {
- const audioCodecs = Object.values(codec)
- .map((c: any) => c.audio)
- .filter(Boolean);
- const videoCodecs = Object.values(codec)
- .map((c: any) => c.video)
- .filter(Boolean);
-
- if (audioCodecs.length || videoCodecs.length) {
- // Use a Set to eliminate duplicates.
- codecString = Array.from(new Set([ ...audioCodecs, ...videoCodecs ])).join(', ');
- }
- }
-
- return codecString;
- }
-
- /**
- * Extracts the connection percentage and sets connection quality.
- *
- * @param {Object} stats - Connection stats from the library.
- * @private
- * @returns {string}
- */
- _extractConnection(stats: any) {
- const { connectionQuality } = stats;
- const {
- _isConnectionStatusInactive,
- _isConnectionStatusInterrupted
- } = this.props;
-
- if (_isConnectionStatusInactive) {
- return 'connectionindicator.quality.inactive';
- } else if (_isConnectionStatusInterrupted) {
- return 'connectionindicator.quality.lost';
- } else if (typeof connectionQuality === 'undefined') {
- return 'connectionindicator.quality.good';
- }
-
- const qualityConfig = this._getQualityConfig(connectionQuality);
-
- return qualityConfig.msg;
- }
-
- /**
- * Get the quality configuration from CONNECTION_QUALITY which has a percentage
- * that matches or exceeds the passed in percentage. The implementation
- * assumes CONNECTION_QUALITY is already sorted by highest to lowest
- * percentage.
- *
- * @param {number} percent - The connection percentage, out of 100, to find
- * the closest matching configuration for.
- * @private
- * @returns {Object}
- */
- _getQualityConfig(percent: number): any {
- return CONNECTION_QUALITY.find(x => percent >= x.percent) || {};
- }
-
- /**
- * Callback to hide the {@code ConnectionStatusComponent}.
- *
- * @private
- * @returns {boolean}
- */
- _onCancel() {
- statsEmitter.unsubscribeToClientStats(this.props.participantID, this._onStatsUpdated);
-
- this.props.dispatch(hideSheet());
- }
-
- /**
- * Function to render the menu's header.
- *
- * @returns {React$Element}
- */
- _renderMenuHeader() {
- const { participantID } = this.props;
-
- return (
- <View
- style = { [
- bottomSheetStyles.sheet,
- styles.participantNameContainer ] }>
- <Avatar
- participantId = { participantID }
- size = { AVATAR_SIZE } />
- <Text style = { styles.participantNameLabel }>
- { this.props._participantDisplayName }
- </Text>
- </View>
- );
- }
- }
-
- /**
- * Function that maps parts of Redux state tree into component props.
- *
- * @param {Object} state - Redux state.
- * @param {Object} ownProps - Properties of component.
- * @private
- * @returns {Props}
- */
- function _mapStateToProps(state: IReduxState, ownProps: IProps) {
- const { participantID } = ownProps;
- const tracks = state['features/base/tracks'];
- const _videoTrack = getTrackByMediaTypeAndParticipant(tracks, MEDIA_TYPE.VIDEO, participantID);
- const _isConnectionStatusInactive = isTrackStreamingStatusInactive(_videoTrack);
- const _isConnectionStatusInterrupted = isTrackStreamingStatusInterrupted(_videoTrack);
-
- return {
- _isConnectionStatusInactive,
- _isConnectionStatusInterrupted,
- _participantDisplayName: getParticipantDisplayName(state, participantID)
- };
- }
-
- // @ts-ignore
- export default translate(connect(_mapStateToProps)(withTheme(ConnectionStatusComponent)));
|