121 lines
3.8 KiB
JavaScript
Executable File
121 lines
3.8 KiB
JavaScript
Executable File
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import cx from 'classnames';
|
|
import { defineMessages, intlShape, injectIntl } from 'react-intl';
|
|
import Button from '/imports/ui/components/button/component';
|
|
import getFromUserSettings from '/imports/ui/services/users-settings';
|
|
import withShortcutHelper from '/imports/ui/components/shortcut-help/service';
|
|
import { styles } from './styles';
|
|
|
|
const intlMessages = defineMessages({
|
|
joinAudio: {
|
|
id: 'app.audio.joinAudio',
|
|
description: 'Join audio button label',
|
|
},
|
|
leaveAudio: {
|
|
id: 'app.audio.leaveAudio',
|
|
description: 'Leave audio button label',
|
|
},
|
|
muteAudio: {
|
|
id: 'app.actionsBar.muteLabel',
|
|
description: 'Mute audio button label',
|
|
},
|
|
unmuteAudio: {
|
|
id: 'app.actionsBar.unmuteLabel',
|
|
description: 'Unmute audio button label',
|
|
},
|
|
});
|
|
|
|
const propTypes = {
|
|
processToggleMuteFromOutside: PropTypes.func.isRequired,
|
|
handleToggleMuteMicrophone: PropTypes.func.isRequired,
|
|
handleJoinAudio: PropTypes.func.isRequired,
|
|
handleLeaveAudio: PropTypes.func.isRequired,
|
|
disable: PropTypes.bool.isRequired,
|
|
muted: PropTypes.bool.isRequired,
|
|
showMute: PropTypes.bool.isRequired,
|
|
inAudio: PropTypes.bool.isRequired,
|
|
listenOnly: PropTypes.bool.isRequired,
|
|
intl: intlShape.isRequired,
|
|
talking: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
class AudioControls extends PureComponent {
|
|
componentDidMount() {
|
|
const { processToggleMuteFromOutside } = this.props;
|
|
if (Meteor.settings.public.allowOutsideCommands.toggleSelfVoice
|
|
|| getFromUserSettings('bbb_outside_toggle_self_voice', false)) {
|
|
window.addEventListener('message', processToggleMuteFromOutside);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
handleToggleMuteMicrophone,
|
|
handleJoinAudio,
|
|
handleLeaveAudio,
|
|
showMute,
|
|
muted,
|
|
disable,
|
|
talking,
|
|
inAudio,
|
|
listenOnly,
|
|
intl,
|
|
shortcuts,
|
|
currentUser,
|
|
} = this.props;
|
|
|
|
let joinIcon = 'audio_off';
|
|
if (inAudio) {
|
|
if (listenOnly) {
|
|
joinIcon = 'listen';
|
|
} else {
|
|
joinIcon = 'audio_on';
|
|
}
|
|
}
|
|
|
|
return (
|
|
<span className={styles.container}>
|
|
{showMute && currentUser.isVoiceUser
|
|
? (
|
|
<Button
|
|
className={cx(styles.button, !talking || styles.glow, !muted || styles.btn)}
|
|
onClick={handleToggleMuteMicrophone}
|
|
disabled={disable}
|
|
hideLabel
|
|
label={muted ? intl.formatMessage(intlMessages.unmuteAudio)
|
|
: intl.formatMessage(intlMessages.muteAudio)}
|
|
aria-label={muted ? intl.formatMessage(intlMessages.unmuteAudio)
|
|
: intl.formatMessage(intlMessages.muteAudio)}
|
|
color={!muted ? 'primary' : 'default'}
|
|
ghost={muted}
|
|
icon={muted ? 'mute' : 'unmute'}
|
|
size="lg"
|
|
circle
|
|
accessKey={shortcuts.toggleMute}
|
|
/>
|
|
) : null}
|
|
<Button
|
|
className={cx(styles.button, inAudio || styles.btn)}
|
|
onClick={inAudio ? handleLeaveAudio : handleJoinAudio}
|
|
disabled={disable}
|
|
hideLabel
|
|
aria-label={inAudio ? intl.formatMessage(intlMessages.leaveAudio)
|
|
: intl.formatMessage(intlMessages.joinAudio)}
|
|
label={inAudio ? intl.formatMessage(intlMessages.leaveAudio)
|
|
: intl.formatMessage(intlMessages.joinAudio)}
|
|
color={inAudio ? 'primary' : 'default'}
|
|
ghost={!inAudio}
|
|
icon={joinIcon}
|
|
size="lg"
|
|
circle
|
|
accessKey={inAudio ? shortcuts.leaveAudio : shortcuts.joinAudio}
|
|
/>
|
|
</span>);
|
|
}
|
|
}
|
|
|
|
AudioControls.propTypes = propTypes;
|
|
|
|
export default withShortcutHelper(injectIntl(AudioControls), ['joinAudio', 'leaveAudio', 'toggleMute']);
|