12345678910111213141516171819202122232425262728293031323334353637383940 |
- // @flow
-
- import React from 'react';
-
- import { Dialog } from '../../../base/dialog';
- import { translate } from '../../../base/i18n';
- import { connect } from '../../../base/redux';
- import AbstractMuteEveryoneDialog, { abstractMapStateToProps, type Props } from '../AbstractMuteEveryoneDialog';
-
- /**
- * A React Component with the contents for a dialog that asks for confirmation
- * from the user before muting all remote participants.
- *
- * @extends AbstractMuteEveryoneDialog
- */
- class MuteEveryoneDialog extends AbstractMuteEveryoneDialog<Props> {
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <Dialog
- okKey = 'dialog.muteParticipantButton'
- onSubmit = { this._onSubmit }
- titleString = { this.props.title }
- width = 'small'>
- <div>
- { this.props.content }
- </div>
- </Dialog>
- );
- }
-
- _onSubmit: () => boolean;
- }
-
- export default translate(connect(abstractMapStateToProps)(MuteEveryoneDialog));
|