123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- import { WithTranslation } from 'react-i18next';
-
- import { IState } from '../../app/types';
- import { requestDisableAudioModeration, requestEnableAudioModeration } from '../../av-moderation/actions';
- import { isEnabledFromState, isSupported } from '../../av-moderation/functions';
- import { MEDIA_TYPE } from '../../base/media/constants';
- import { getLocalParticipant, getParticipantDisplayName } from '../../base/participants/functions';
- // eslint-disable-next-line lines-around-comment
- // @ts-ignore
- import { muteAllParticipants } from '../actions';
-
- import AbstractMuteRemoteParticipantDialog, {
- type Props as AbstractProps
- } from './AbstractMuteRemoteParticipantDialog';
-
- /**
- * The type of the React {@code Component} props of
- * {@link AbstractMuteEveryoneDialog}.
- */
- export type Props = AbstractProps & WithTranslation & {
- content: string;
- exclude: Array<string>;
- isAudioModerationEnabled: boolean;
- isModerationSupported: boolean;
- showAdvancedModerationToggle: boolean;
- title: string;
- };
-
- type State = {
- audioModerationEnabled: boolean;
- content: string;
- };
-
- /**
- *
- * An abstract Component with the contents for a dialog that asks for confirmation
- * from the user before muting all remote participants.
- *
- * @augments AbstractMuteRemoteParticipantDialog
- */
- export default class AbstractMuteEveryoneDialog<P extends Props> extends AbstractMuteRemoteParticipantDialog<P, State> {
- static defaultProps = {
- exclude: [],
- muteLocal: false
- };
-
- /**
- * 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);
-
- this.state = {
- audioModerationEnabled: props.isAudioModerationEnabled,
- content: props.content || props.t(props.isAudioModerationEnabled
- ? 'dialog.muteEveryoneDialogModerationOn' : 'dialog.muteEveryoneDialog'
- )
- };
-
- // Bind event handlers so they are only bound once per instance.
- this._onSubmit = this._onSubmit.bind(this);
- this._onToggleModeration = this._onToggleModeration.bind(this);
- }
-
- /**
- * Toggles advanced moderation switch.
- *
- * @returns {void}
- */
- _onToggleModeration() {
- this.setState(state => {
- return {
- audioModerationEnabled: !state.audioModerationEnabled,
- content: this.props.t(state.audioModerationEnabled
- ? 'dialog.muteEveryoneDialog' : 'dialog.muteEveryoneDialogModerationOn'
- )
- };
- });
- }
-
- /**
- * Callback to be invoked when the value of this dialog is submitted.
- *
- * @returns {boolean}
- */
- _onSubmit() {
- const {
- dispatch,
- exclude
- } = this.props;
-
- dispatch(muteAllParticipants(exclude, MEDIA_TYPE.AUDIO));
- if (this.state.audioModerationEnabled) {
- dispatch(requestEnableAudioModeration());
- } else if (this.state.audioModerationEnabled !== undefined) {
- dispatch(requestDisableAudioModeration());
- }
-
- return true;
- }
- }
-
- /**
- * Maps (parts of) the Redux state to the associated {@code AbstractMuteEveryoneDialog}'s props.
- *
- * @param {IState} state - The redux state.
- * @param {Object} ownProps - The properties explicitly passed to the component.
- * @returns {Props}
- */
- export function abstractMapStateToProps(state: IState, ownProps: Props) {
- const { exclude = [], t } = ownProps;
-
- const whom = exclude
- // eslint-disable-next-line no-confusing-arrow
- .map(id => id === getLocalParticipant(state)?.id
- ? t('dialog.muteEveryoneSelf')
- : getParticipantDisplayName(state, id))
- .join(', ');
-
- return whom.length ? {
- content: t('dialog.muteEveryoneElseDialog'),
- title: t('dialog.muteEveryoneElseTitle', { whom })
- } : {
- title: t('dialog.muteEveryoneTitle'),
- isAudioModerationEnabled: isEnabledFromState(MEDIA_TYPE.AUDIO, state),
- isModerationSupported: isSupported()(state)
- };
- }
|