123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* eslint-disable lines-around-comment */
- import { IState } from '../../app/types';
- // @ts-ignore
- import { translate } from '../../base/i18n';
- // @ts-ignore
- import {
- IconShareAudio,
- IconStopAudioShare
- // @ts-ignore
- } from '../../base/icons';
- // @ts-ignore
- import { connect } from '../../base/redux';
- // @ts-ignore
- import {
- AbstractButton,
- type AbstractButtonProps
- // @ts-ignore
- } from '../../base/toolbox/components';
- // @ts-ignore
- import { setOverflowMenuVisible } from '../../toolbox/actions';
- import { toggleNoiseSuppression } from '../actions';
- import { isNoiseSuppressionEnabled } from '../functions';
-
- type Props = AbstractButtonProps & {
-
- /**
- * The redux {@code dispatch} function.
- */
- dispatch: Function;
-
- }
-
- /**
- * Component that renders a toolbar button for toggling noise suppression.
- */
- class NoiseSuppressionButton extends AbstractButton<Props, any, any> {
- accessibilityLabel = 'toolbar.accessibilityLabel.noiseSuppression';
- icon = IconShareAudio;
- label = 'toolbar.noiseSuppression';
- tooltip = 'toolbar.noiseSuppression';
- toggledIcon = IconStopAudioShare;
- toggledLabel = 'toolbar.disableNoiseSuppression';
-
- private props: Props;
-
- /**
- * Handles clicking / pressing the button.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- const { dispatch } = this.props;
-
- dispatch(toggleNoiseSuppression());
- dispatch(setOverflowMenuVisible(false));
- }
-
- /**
- * Indicates whether this button is in toggled state or not.
- *
- * @override
- * @protected
- * @returns {boolean}
- */
- _isToggled() {
- return this.props._isNoiseSuppressionEnabled;
- }
- }
-
- /**
- * Maps part of the Redux state to the props of this component.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {Props}
- */
- function _mapStateToProps(state: IState): Object {
- return {
- _isNoiseSuppressionEnabled: isNoiseSuppressionEnabled(state)
- };
- }
-
- export default translate(connect(_mapStateToProps)(NoiseSuppressionButton));
|