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';
|
|
|
|
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';
|
2020-07-24 12:14:33 +00:00
|
|
|
import { AbstractAudioMuteButton } from '../../base/toolbox/components';
|
|
|
|
import type { AbstractButtonProps } from '../../base/toolbox/components';
|
2018-05-10 23:01:55 +00:00
|
|
|
import { isLocalTrackMuted } from '../../base/tracks';
|
2020-02-24 12:47:37 +00:00
|
|
|
import { muteLocal } from '../../remote-video-menu/actions';
|
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.
|
|
|
|
*
|
|
|
|
* @extends AbstractAudioMuteButton
|
|
|
|
*/
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Indicates if audio is currently muted ot nor.
|
|
|
|
*
|
|
|
|
* @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() {
|
|
|
|
sendAnalytics(
|
|
|
|
createShortcutEvent(
|
|
|
|
AUDIO_MUTE,
|
|
|
|
ACTION_SHORTCUT_TRIGGERED,
|
|
|
|
{ enable: !this._isAudioMuted() }));
|
|
|
|
|
|
|
|
super._handleClick();
|
|
|
|
}
|
|
|
|
|
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) {
|
2020-02-24 12:47:37 +00:00
|
|
|
this.props.dispatch(muteLocal(audioMuted));
|
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);
|
|
|
|
const _disabled = state['features/base/config'].startSilent;
|
2018-04-13 13:03:12 +00:00
|
|
|
|
|
|
|
return {
|
2020-04-16 10:47:10 +00:00
|
|
|
_audioMuted,
|
|
|
|
_disabled
|
2018-04-13 13:03:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect(_mapStateToProps)(AudioMuteButton));
|