55 lines
1.5 KiB
JavaScript
55 lines
1.5 KiB
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import { translate } from '../../../base/i18n';
|
|
import { IconMuteEveryoneElse } from '../../../base/icons';
|
|
import { connect } from '../../../base/redux';
|
|
import AbstractMuteEveryoneElseButton, {
|
|
type Props
|
|
} from '../AbstractMuteEveryoneElseButton';
|
|
|
|
import RemoteVideoMenuButton from './RemoteVideoMenuButton';
|
|
|
|
/**
|
|
* Implements a React {@link Component} which displays a button for audio muting
|
|
* every participant in the conference except the one with the given
|
|
* participantID
|
|
*/
|
|
class MuteEveryoneElseButton extends AbstractMuteEveryoneElseButton {
|
|
/**
|
|
* Instantiates a new {@code Component}.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this._handleClick = this._handleClick.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
const { participantID, t } = this.props;
|
|
|
|
return (
|
|
<RemoteVideoMenuButton
|
|
buttonText = { t('videothumbnail.domuteOthers') }
|
|
displayClass = { 'mutelink' }
|
|
icon = { IconMuteEveryoneElse }
|
|
id = { `mutelink_${participantID}` }
|
|
// eslint-disable-next-line react/jsx-handler-names
|
|
onClick = { this._handleClick } />
|
|
);
|
|
}
|
|
|
|
_handleClick: () => void;
|
|
}
|
|
|
|
export default translate(connect()(MuteEveryoneElseButton));
|