123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- // @flow
-
- import React, { Component } from 'react';
-
- import { Dialog } from '../../base/dialog';
- import { translate } from '../../base/i18n';
- import { getLocalParticipant } from '../../base/participants';
- import { connect } from '../../base/redux';
- import { escapeRegexp } from '../../base/util';
-
- import SpeakerStatsItem from './SpeakerStatsItem';
- import SpeakerStatsLabels from './SpeakerStatsLabels';
- import SpeakerStatsSearch from './SpeakerStatsSearch';
-
- declare var interfaceConfig: Object;
-
- /**
- * The type of the React {@code Component} props of {@link SpeakerStats}.
- */
- type Props = {
-
- /**
- * The display name for the local participant obtained from the redux store.
- */
- _localDisplayName: string,
-
- /**
- * The JitsiConference from which stats will be pulled.
- */
- conference: Object,
-
- /**
- * The function to translate human-readable text.
- */
- t: Function
- };
-
- /**
- * The type of the React {@code Component} state of {@link SpeakerStats}.
- */
- type State = {
-
- /**
- * The stats summary provided by the JitsiConference.
- */
- stats: Object,
-
- /**
- * The search input criteria.
- */
- criteria: string,
- };
-
- /**
- * React component for displaying a list of speaker stats.
- *
- * @extends Component
- */
- class SpeakerStats extends Component<Props, State> {
- _updateInterval: IntervalID;
-
- /**
- * Initializes a new SpeakerStats instance.
- *
- * @param {Object} props - The read-only React Component props with which
- * the new instance is to be initialized.
- */
- constructor(props) {
- super(props);
-
- this.state = {
- stats: this._getSpeakerStats(),
- criteria: ''
- };
-
- // Bind event handlers so they are only bound once per instance.
- this._updateStats = this._updateStats.bind(this);
- this._onSearch = this._onSearch.bind(this);
- }
-
- /**
- * Begin polling for speaker stats updates.
- *
- * @inheritdoc
- */
- componentDidMount() {
- this._updateInterval = setInterval(this._updateStats, 1000);
- }
-
- /**
- * Stop polling for speaker stats updates.
- *
- * @inheritdoc
- * @returns {void}
- */
- componentWillUnmount() {
- clearInterval(this._updateInterval);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- const userIds = Object.keys(this.state.stats);
- const items = userIds.map(userId => this._createStatsItem(userId));
-
- return (
- <Dialog
- cancelKey = { 'dialog.close' }
- submitDisabled = { true }
- titleKey = { 'speakerStats.speakerStats' }>
- <div className = 'speaker-stats'>
- <SpeakerStatsSearch onSearch = { this._onSearch } />
- <SpeakerStatsLabels />
- { items }
- </div>
- </Dialog>
- );
- }
-
- /**
- * Update the internal state with the latest speaker stats.
- *
- * @returns {void}
- * @private
- */
- _getSpeakerStats() {
- const stats = { ...this.props.conference.getSpeakerStats() };
-
- if (this.state?.criteria) {
- const searchRegex = new RegExp(this.state.criteria, 'gi');
-
- for (const id in stats) {
- if (stats[id].hasOwnProperty('_isLocalStats')) {
- const name = stats[id].isLocalStats() ? this.props._localDisplayName : stats[id].getDisplayName();
-
- if (!name || !name.match(searchRegex)) {
- delete stats[id];
- }
- }
- }
- }
-
- return stats;
- }
-
- /**
- * Create a SpeakerStatsItem instance for the passed in user id.
- *
- * @param {string} userId - User id used to look up the associated
- * speaker stats from the jitsi library.
- * @returns {SpeakerStatsItem|null}
- * @private
- */
- _createStatsItem(userId) {
- const statsModel = this.state.stats[userId];
-
- if (!statsModel) {
- return null;
- }
-
- const isDominantSpeaker = statsModel.isDominantSpeaker();
- const dominantSpeakerTime = statsModel.getTotalDominantSpeakerTime();
- const hasLeft = statsModel.hasLeft();
-
- let displayName;
-
- if (statsModel.isLocalStats()) {
- const { t } = this.props;
- const meString = t('me');
-
- displayName = this.props._localDisplayName;
- displayName
- = displayName ? `${displayName} (${meString})` : meString;
- } else {
- displayName
- = this.state.stats[userId].getDisplayName()
- || interfaceConfig.DEFAULT_REMOTE_DISPLAY_NAME;
- }
-
- return (
- <SpeakerStatsItem
- displayName = { displayName }
- dominantSpeakerTime = { dominantSpeakerTime }
- hasLeft = { hasLeft }
- isDominantSpeaker = { isDominantSpeaker }
- key = { userId } />
- );
- }
-
- _onSearch: () => void;
-
- /**
- * Search the existing participants by name.
- *
- * @returns {void}
- * @param {string} criteria - The search parameter.
- * @protected
- */
- _onSearch(criteria = '') {
- this.setState({
- ...this.state,
- criteria: escapeRegexp(criteria)
- });
- }
-
- _updateStats: () => void;
-
- /**
- * Update the internal state with the latest speaker stats.
- *
- * @returns {void}
- * @private
- */
- _updateStats() {
- const stats = this._getSpeakerStats();
-
- this.setState({
- ...this.state,
- stats
- });
- }
- }
-
- /**
- * Maps (parts of) the redux state to the associated SpeakerStats's props.
- *
- * @param {Object} state - The redux state.
- * @private
- * @returns {{
- * _localDisplayName: ?string
- * }}
- */
- function _mapStateToProps(state) {
- const localParticipant = getLocalParticipant(state);
-
- return {
- /**
- * The local display name.
- *
- * @private
- * @type {string|undefined}
- */
- _localDisplayName: localParticipant && localParticipant.name
- };
- }
-
- export default translate(connect(_mapStateToProps)(SpeakerStats));
|