2018-04-13 13:03:12 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import {
|
2018-05-11 04:09:58 +00:00
|
|
|
ACTION_SHORTCUT_TRIGGERED,
|
2018-04-13 13:03:12 +00:00
|
|
|
AUDIO_MUTE,
|
2018-05-11 04:09:58 +00:00
|
|
|
createShortcutEvent,
|
2018-04-13 13:03:12 +00:00
|
|
|
sendAnalytics
|
2018-05-10 23:01:55 +00:00
|
|
|
} from '../../analytics';
|
2022-09-27 07:10:28 +00:00
|
|
|
import { AUDIO_MUTE_BUTTON_ENABLED, getFeatureFlag } from '../../base/flags';
|
2018-05-10 23:01:55 +00:00
|
|
|
import { translate } from '../../base/i18n';
|
2020-02-24 12:47:37 +00:00
|
|
|
import { MEDIA_TYPE } from '../../base/media';
|
2019-03-21 16:38:29 +00:00
|
|
|
import { connect } from '../../base/redux';
|
2022-01-04 11:21:00 +00:00
|
|
|
import { AbstractAudioMuteButton, AbstractButton } from '../../base/toolbox/components';
|
2020-07-24 12:14:33 +00:00
|
|
|
import type { AbstractButtonProps } from '../../base/toolbox/components';
|
2018-05-10 23:01:55 +00:00
|
|
|
import { isLocalTrackMuted } from '../../base/tracks';
|
2021-01-21 20:46:47 +00:00
|
|
|
import { muteLocal } from '../../video-menu/actions';
|
2021-11-30 20:08:25 +00:00
|
|
|
import { isAudioMuteButtonDisabled } from '../functions';
|
2018-04-13 13:03:12 +00:00
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
declare var APP: Object;
|
|
|
|
|
2018-05-11 02:10:26 +00:00
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} props of {@link AudioMuteButton}.
|
|
|
|
*/
|
2018-04-13 13:03:12 +00:00
|
|
|
type Props = AbstractButtonProps & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether audio is currently muted or not.
|
|
|
|
*/
|
|
|
|
_audioMuted: boolean,
|
|
|
|
|
2019-06-14 11:16:08 +00:00
|
|
|
/**
|
|
|
|
* Whether the button is disabled.
|
|
|
|
*/
|
|
|
|
_disabled: boolean,
|
|
|
|
|
2018-04-13 13:03:12 +00:00
|
|
|
/**
|
|
|
|
* The redux {@code dispatch} function.
|
|
|
|
*/
|
|
|
|
dispatch: Function
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component that renders a toolbar button for toggling audio mute.
|
|
|
|
*
|
2021-11-04 21:10:43 +00:00
|
|
|
* @augments AbstractAudioMuteButton
|
2018-04-13 13:03:12 +00:00
|
|
|
*/
|
|
|
|
class AudioMuteButton extends AbstractAudioMuteButton<Props, *> {
|
2018-06-07 20:32:18 +00:00
|
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.mute';
|
2018-04-13 13:03:12 +00:00
|
|
|
label = 'toolbar.mute';
|
|
|
|
tooltip = 'toolbar.mute';
|
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new {@code AudioMuteButton} instance.
|
|
|
|
*
|
|
|
|
* @param {Props} props - The read-only React {@code Component} props with
|
|
|
|
* which the new instance is to be initialized.
|
|
|
|
*/
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
// Bind event handlers so they are only bound once per instance.
|
|
|
|
this._onKeyboardShortcut = this._onKeyboardShortcut.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Registers the keyboard shortcut that toggles the audio muting.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentDidMount() {
|
|
|
|
typeof APP === 'undefined'
|
|
|
|
|| APP.keyboardshortcut.registerShortcut(
|
|
|
|
'M',
|
|
|
|
null,
|
|
|
|
this._onKeyboardShortcut,
|
|
|
|
'keyboardShortcuts.mute');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregisters the keyboard shortcut that toggles the audio muting.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentWillUnmount() {
|
|
|
|
typeof APP === 'undefined'
|
|
|
|
|| APP.keyboardshortcut.unregisterShortcut('M');
|
|
|
|
}
|
|
|
|
|
2018-04-13 13:03:12 +00:00
|
|
|
/**
|
2021-03-16 15:59:33 +00:00
|
|
|
* Indicates if audio is currently muted or not.
|
2018-04-13 13:03:12 +00:00
|
|
|
*
|
|
|
|
* @override
|
2018-05-11 02:10:26 +00:00
|
|
|
* @protected
|
2018-04-13 13:03:12 +00:00
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_isAudioMuted() {
|
|
|
|
return this.props._audioMuted;
|
|
|
|
}
|
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
_onKeyboardShortcut: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an analytics keyboard shortcut event and dispatches an action to
|
|
|
|
* toggle the audio muting.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onKeyboardShortcut() {
|
2021-12-09 19:34:12 +00:00
|
|
|
// Ignore keyboard shortcuts if the audio button is disabled.
|
|
|
|
if (this._isDisabled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
sendAnalytics(
|
|
|
|
createShortcutEvent(
|
|
|
|
AUDIO_MUTE,
|
|
|
|
ACTION_SHORTCUT_TRIGGERED,
|
|
|
|
{ enable: !this._isAudioMuted() }));
|
|
|
|
|
2022-01-04 11:21:00 +00:00
|
|
|
AbstractButton.prototype._onClick.call(this);
|
2018-05-11 04:09:58 +00:00
|
|
|
}
|
|
|
|
|
2018-04-13 13:03:12 +00:00
|
|
|
/**
|
|
|
|
* Changes the muted state.
|
|
|
|
*
|
|
|
|
* @param {boolean} audioMuted - Whether audio should be muted or not.
|
2018-05-11 02:10:26 +00:00
|
|
|
* @protected
|
2018-04-13 13:03:12 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_setAudioMuted(audioMuted: boolean) {
|
2021-02-24 21:45:07 +00:00
|
|
|
this.props.dispatch(muteLocal(audioMuted, MEDIA_TYPE.AUDIO));
|
2018-04-13 13:03:12 +00:00
|
|
|
}
|
2019-06-14 11:16:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a boolean value indicating if this button is disabled or not.
|
|
|
|
*
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_isDisabled() {
|
|
|
|
return this.props._disabled;
|
|
|
|
}
|
2018-04-13 13:03:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps (parts of) the redux state to the associated props for the
|
|
|
|
* {@code AudioMuteButton} component.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @private
|
|
|
|
* @returns {{
|
2020-04-16 10:47:10 +00:00
|
|
|
* _audioMuted: boolean,
|
|
|
|
* _disabled: boolean
|
2018-04-13 13:03:12 +00:00
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state): Object {
|
2020-06-19 07:03:26 +00:00
|
|
|
const _audioMuted = isLocalTrackMuted(state['features/base/tracks'], MEDIA_TYPE.AUDIO);
|
2022-04-18 13:19:19 +00:00
|
|
|
const _disabled = isAudioMuteButtonDisabled(state);
|
2021-02-04 13:32:09 +00:00
|
|
|
const enabledFlag = getFeatureFlag(state, AUDIO_MUTE_BUTTON_ENABLED, true);
|
2018-04-13 13:03:12 +00:00
|
|
|
|
|
|
|
return {
|
2020-04-16 10:47:10 +00:00
|
|
|
_audioMuted,
|
2021-02-04 13:32:09 +00:00
|
|
|
_disabled,
|
|
|
|
visible: enabledFlag
|
2018-04-13 13:03:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect(_mapStateToProps)(AudioMuteButton));
|