/* eslint-disable lines-around-comment */ import React from 'react'; // @ts-ignore import { Dialog } from '../../../base/dialog'; import { translate } from '../../../base/i18n/functions'; import { connect } from '../../../base/redux/functions'; import Switch from '../../../base/ui/components/web/Switch'; import AbstractMuteEveryoneDialog, { abstractMapStateToProps, type Props } // @ts-ignore from '../AbstractMuteEveryoneDialog'; /** * A React Component with the contents for a dialog that asks for confirmation * from the user before muting all remote participants. * * @augments AbstractMuteEveryoneDialog */ class MuteEveryoneDialog extends AbstractMuteEveryoneDialog { /** * Toggles advanced moderation switch. * * @returns {void} */ _onToggleModeration() { // @ts-ignore this.setState(state => { return { audioModerationEnabled: !state.audioModerationEnabled, // @ts-ignore content: this.props.t(state.audioModerationEnabled ? 'dialog.muteEveryoneDialog' : 'dialog.muteEveryoneDialogModerationOn' ) }; }); } /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement} */ render() { return (
{/* @ts-ignore */} { this.state.content } {/* @ts-ignore */} { this.props.isModerationSupported && this.props.exclude.length === 0 && ( <>
)}
); } _onSubmit: () => boolean; } // @ts-ignore export default translate(connect(abstractMapStateToProps)(MuteEveryoneDialog));