12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import React from 'react';
-
- import { translate } from '../../../base/i18n/functions';
- import { connect } from '../../../base/redux/functions';
- import Dialog from '../../../base/ui/components/web/Dialog';
- import Switch from '../../../base/ui/components/web/Switch';
- import AbstractMuteEveryonesVideoDialog, { type Props, abstractMapStateToProps }
- from '../AbstractMuteEveryonesVideoDialog';
-
- /**
- * A React Component with the contents for a dialog that asks for confirmation
- * from the user before disabling all remote participants cameras.
- *
- * @augments AbstractMuteEveryonesVideoDialog
- */
- class MuteEveryonesVideoDialog extends AbstractMuteEveryonesVideoDialog<Props> {
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <Dialog
- ok = {{ translationKey: 'dialog.muteParticipantsVideoButton' }}
- onSubmit = { this._onSubmit }
- title = { this.props.title }>
- <div className = 'mute-dialog'>
- {this.state.content}
- { this.props.isModerationSupported && this.props.exclude.length === 0 && (
- <>
- <div className = 'separator-line' />
- <div className = 'control-row'>
- <label htmlFor = 'moderation-switch'>
- {this.props.t('dialog.moderationVideoLabel')}
- </label>
- <Switch
- checked = { !this.state.moderationEnabled }
- id = 'moderation-switch'
- onChange = { this._onToggleModeration } />
- </div>
- </>
- )}
- </div>
- </Dialog>
- );
- }
- }
-
- export default translate(connect(abstractMapStateToProps)(MuteEveryonesVideoDialog));
|