33 lines
1017 B
TypeScript
33 lines
1017 B
TypeScript
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 AbstractKickRemoteParticipantDialog from '../AbstractKickRemoteParticipantDialog';
|
|
|
|
/**
|
|
* Dialog to confirm a remote participant kick action.
|
|
*/
|
|
class KickRemoteParticipantDialog extends AbstractKickRemoteParticipantDialog {
|
|
/**
|
|
* Implements React's {@link Component#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
return (
|
|
<Dialog
|
|
ok = {{ translationKey: 'dialog.kickParticipantButton' }}
|
|
onSubmit = { this._onSubmit }
|
|
titleKey = 'dialog.kickParticipantTitle'>
|
|
<div>
|
|
{ this.props.t('dialog.kickParticipantDialog') }
|
|
</div>
|
|
</Dialog>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default translate(connect()(KickRemoteParticipantDialog));
|