123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { Component } from 'react';
- import { WithTranslation } from 'react-i18next';
-
- import { createRemoteVideoMenuButtonEvent } from '../../analytics/AnalyticsEvents';
- import { sendAnalytics } from '../../analytics/functions';
- import { IStore } from '../../app/types';
- import { kickParticipant } from '../../base/participants/actions';
-
- interface IProps extends WithTranslation {
-
- /**
- * The Redux dispatch function.
- */
- dispatch: IStore['dispatch'];
-
- /**
- * The ID of the remote participant to be kicked.
- */
- participantID: string;
- }
-
- /**
- * Abstract dialog to confirm a remote participant kick action.
- */
- export default class AbstractKickRemoteParticipantDialog
- extends Component<IProps> {
- /**
- * Initializes a new {@code AbstractKickRemoteParticipantDialog} instance.
- *
- * @inheritdoc
- */
- constructor(props: IProps) {
- super(props);
-
- this._onSubmit = this._onSubmit.bind(this);
- }
-
- /**
- * Callback for the confirm button.
- *
- * @private
- * @returns {boolean} - True (to note that the modal should be closed).
- */
- _onSubmit() {
- const { dispatch, participantID } = this.props;
-
- sendAnalytics(createRemoteVideoMenuButtonEvent(
- 'kick.button',
- {
- 'participant_id': participantID
- }));
-
- dispatch(kickParticipant(participantID));
-
- return true;
- }
- }
|