bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/muted-alert/component.jsx

85 lines
2.1 KiB
JavaScript

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import hark from 'hark';
import Icon from '/imports/ui/components/icon/component';
import cx from 'classnames';
import { styles } from './styles';
const MUTE_ALERT_CONFIG = Meteor.settings.public.app.mutedAlert;
const propTypes = {
inputStream: PropTypes.object.isRequired,
};
class MutedAlert extends Component {
constructor(props) {
super(props);
this.state = {
visible: false,
};
this.speechEvents = null;
this.timer = null;
this.resetTimer = this.resetTimer.bind(this);
}
componentDidMount() {
this._isMounted = true;
const { inputStream } = this.props;
const { interval, threshold, duration } = MUTE_ALERT_CONFIG;
this.speechEvents = hark(inputStream, { interval, threshold });
this.speechEvents.on('speaking', () => {
this.resetTimer();
if (this._isMounted) this.setState({ visible: true });
});
this.speechEvents.on('stopped_speaking', () => {
if (this._isMounted) {
this.timer = setTimeout(() => this.setState(
{ visible: false },
), duration);
}
});
}
componentWillUnmount() {
this._isMounted = false;
if (this.speechEvents) this.speechEvents.stop();
this.resetTimer();
}
resetTimer() {
if (this.timer) clearTimeout(this.timer);
this.timer = null;
}
render() {
const { enabled } = MUTE_ALERT_CONFIG;
if (!enabled) return null;
const { isViewer, isPresenter } = this.props;
const { visible } = this.state;
const style = {};
style[styles.alignForMod] = !isViewer || isPresenter;
return visible ? (
<div className={cx(styles.muteWarning, style)}>
<span>
<FormattedMessage
id="app.muteWarning.label"
description="Warning when someone speaks while muted"
values={{
0: <Icon iconName="mute" />,
}}
/>
</span>
</div>
) : null;
}
}
MutedAlert.propTypes = propTypes;
export default MutedAlert;