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
|
|
|
VIDEO_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 { VIDEO_MUTE_BUTTON_ENABLED, getFeatureFlag } from '../../base/flags';
|
2018-05-10 23:01:55 +00:00
|
|
|
import { translate } from '../../base/i18n';
|
2022-11-08 19:15:49 +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 { AbstractButton, AbstractVideoMuteButton } from '../../base/toolbox/components';
|
2020-07-24 12:14:33 +00:00
|
|
|
import type { AbstractButtonProps } from '../../base/toolbox/components';
|
2022-11-08 19:15:49 +00:00
|
|
|
import { isLocalTrackMuted } from '../../base/tracks';
|
2022-08-30 08:42:29 +00:00
|
|
|
import { handleToggleVideoMuted } from '../actions.any';
|
2020-11-04 08:32:06 +00:00
|
|
|
import { isVideoMuteButtonDisabled } 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 VideoMuteButton}.
|
|
|
|
*/
|
2018-04-13 13:03:12 +00:00
|
|
|
type Props = AbstractButtonProps & {
|
|
|
|
|
2019-11-26 10:57:03 +00:00
|
|
|
|
2018-04-13 13:03:12 +00:00
|
|
|
/**
|
|
|
|
* Whether video is currently muted or not.
|
|
|
|
*/
|
|
|
|
_videoMuted: boolean,
|
|
|
|
|
2020-04-16 10:47:10 +00:00
|
|
|
/**
|
|
|
|
* Whether video button is disabled or not.
|
|
|
|
*/
|
|
|
|
_videoDisabled: boolean,
|
|
|
|
|
2018-04-13 13:03:12 +00:00
|
|
|
/**
|
|
|
|
* The redux {@code dispatch} function.
|
|
|
|
*/
|
|
|
|
dispatch: Function
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Component that renders a toolbar button for toggling video mute.
|
|
|
|
*
|
2021-11-04 21:10:43 +00:00
|
|
|
* @augments AbstractVideoMuteButton
|
2018-04-13 13:03:12 +00:00
|
|
|
*/
|
|
|
|
class VideoMuteButton extends AbstractVideoMuteButton<Props, *> {
|
2018-06-07 20:32:18 +00:00
|
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.videomute';
|
2018-04-13 13:03:12 +00:00
|
|
|
label = 'toolbar.videomute';
|
|
|
|
tooltip = 'toolbar.videomute';
|
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new {@code VideoMuteButton} 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 video muting.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentDidMount() {
|
|
|
|
typeof APP === 'undefined'
|
|
|
|
|| APP.keyboardshortcut.registerShortcut(
|
|
|
|
'V',
|
|
|
|
null,
|
|
|
|
this._onKeyboardShortcut,
|
|
|
|
'keyboardShortcuts.videoMute');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unregisters the keyboard shortcut that toggles the video muting.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
componentWillUnmount() {
|
|
|
|
typeof APP === 'undefined'
|
|
|
|
|| APP.keyboardshortcut.unregisterShortcut('V');
|
|
|
|
}
|
|
|
|
|
2020-04-16 10:47:10 +00:00
|
|
|
/**
|
|
|
|
* Indicates if video is currently disabled or not.
|
|
|
|
*
|
|
|
|
* @override
|
|
|
|
* @protected
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_isDisabled() {
|
|
|
|
return this.props._videoDisabled;
|
|
|
|
}
|
|
|
|
|
2018-04-13 13:03:12 +00:00
|
|
|
/**
|
2021-03-16 15:59:33 +00:00
|
|
|
* Indicates if video 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}
|
|
|
|
*/
|
|
|
|
_isVideoMuted() {
|
|
|
|
return this.props._videoMuted;
|
|
|
|
}
|
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
_onKeyboardShortcut: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an analytics keyboard shortcut event and dispatches an action to
|
|
|
|
* toggle the video muting.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onKeyboardShortcut() {
|
2021-12-09 19:34:12 +00:00
|
|
|
// Ignore keyboard shortcuts if the video button is disabled.
|
|
|
|
if (this._isDisabled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-11 04:09:58 +00:00
|
|
|
sendAnalytics(
|
|
|
|
createShortcutEvent(
|
|
|
|
VIDEO_MUTE,
|
|
|
|
ACTION_SHORTCUT_TRIGGERED,
|
|
|
|
{ enable: !this._isVideoMuted() }));
|
|
|
|
|
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.
|
|
|
|
*
|
2018-05-11 02:10:26 +00:00
|
|
|
* @override
|
2018-04-13 13:03:12 +00:00
|
|
|
* @param {boolean} videoMuted - Whether video should be muted or not.
|
2018-05-11 02:10:26 +00:00
|
|
|
* @protected
|
2018-04-13 13:03:12 +00:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_setVideoMuted(videoMuted: boolean) {
|
2022-08-30 08:42:29 +00:00
|
|
|
this.props.dispatch(handleToggleVideoMuted(videoMuted, true, true));
|
2018-04-13 13:03:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps (parts of) the redux state to the associated props for the
|
|
|
|
* {@code VideoMuteButton} component.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @private
|
|
|
|
* @returns {{
|
|
|
|
* _videoMuted: boolean
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state): Object {
|
|
|
|
const tracks = state['features/base/tracks'];
|
2021-02-04 13:32:09 +00:00
|
|
|
const enabledFlag = getFeatureFlag(state, VIDEO_MUTE_BUTTON_ENABLED, true);
|
2018-04-13 13:03:12 +00:00
|
|
|
|
|
|
|
return {
|
2020-11-04 08:32:06 +00:00
|
|
|
_videoDisabled: isVideoMuteButtonDisabled(state),
|
2022-11-08 19:15:49 +00:00
|
|
|
_videoMuted: isLocalTrackMuted(tracks, MEDIA_TYPE.VIDEO),
|
2021-02-04 13:32:09 +00:00
|
|
|
visible: enabledFlag
|
2018-04-13 13:03:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect(_mapStateToProps)(VideoMuteButton));
|