mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { Component } from 'react';
|
|
import { WithTranslation } from 'react-i18next';
|
|
|
|
import { IStore } from '../../app/types';
|
|
import { MEDIA_TYPE } from '../../base/media/constants';
|
|
import { muteRemote } from '../actions';
|
|
|
|
/**
|
|
* The type of the React {@code Component} props of
|
|
* {@link AbstractMuteRemoteParticipantDialog}.
|
|
*/
|
|
export interface IProps extends WithTranslation {
|
|
|
|
/**
|
|
* The Redux dispatch function.
|
|
*/
|
|
dispatch: IStore['dispatch'];
|
|
|
|
/**
|
|
* The ID of the remote participant to be muted.
|
|
*/
|
|
participantID: string;
|
|
}
|
|
|
|
/**
|
|
* Abstract dialog to confirm a remote participant mute action.
|
|
*
|
|
* @augments Component
|
|
*/
|
|
export default class AbstractMuteRemoteParticipantDialog<P extends IProps = IProps, State=void>
|
|
extends Component<P, State> {
|
|
/**
|
|
* Initializes a new {@code AbstractMuteRemoteParticipantDialog} instance.
|
|
*
|
|
* @param {Object} props - The read-only properties with which the new
|
|
* instance is to be initialized.
|
|
*/
|
|
constructor(props: P) {
|
|
super(props);
|
|
|
|
// Bind event handlers so they are only bound once per instance.
|
|
this._onSubmit = this._onSubmit.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Handles the submit button action.
|
|
*
|
|
* @private
|
|
* @returns {boolean} - True (to note that the modal should be closed).
|
|
*/
|
|
_onSubmit() {
|
|
const { dispatch, participantID } = this.props;
|
|
|
|
dispatch(muteRemote(participantID, MEDIA_TYPE.AUDIO));
|
|
|
|
return true;
|
|
}
|
|
}
|