Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { createToolbarEvent } from '../../analytics/AnalyticsEvents';
|
|
import { sendAnalytics } from '../../analytics/functions';
|
|
import { openDialog } from '../../base/dialog/actions';
|
|
import { IconVideoOff } from '../../base/icons/svg';
|
|
import AbstractButton, { IProps as AbstractButtonProps } from '../../base/toolbox/components/AbstractButton';
|
|
|
|
import { MuteEveryonesVideoDialog } from './';
|
|
|
|
export interface IProps extends AbstractButtonProps {
|
|
|
|
/**
|
|
* The ID of the participant object that this button is supposed to keep unmuted.
|
|
*/
|
|
participantID: string;
|
|
}
|
|
|
|
/**
|
|
* An abstract remote video menu button which disables the camera of all the other participants.
|
|
*/
|
|
export default class AbstractMuteEveryoneElsesVideoButton extends AbstractButton<IProps> {
|
|
override accessibilityLabel = 'toolbar.accessibilityLabel.muteEveryoneElsesVideoStream';
|
|
override icon = IconVideoOff;
|
|
override label = 'videothumbnail.domuteVideoOfOthers';
|
|
|
|
/**
|
|
* Handles clicking / pressing the button, and opens a confirmation dialog.
|
|
*
|
|
* @private
|
|
* @returns {void}
|
|
*/
|
|
override _handleClick() {
|
|
const { dispatch, participantID } = this.props;
|
|
|
|
sendAnalytics(createToolbarEvent('mute.everyoneelsesvideo.pressed'));
|
|
dispatch(openDialog(MuteEveryonesVideoDialog, { exclude: [ participantID ] }));
|
|
}
|
|
}
|