2018-04-13 13:03:12 +00:00
|
|
|
// @flow
|
|
|
|
|
2020-05-20 10:57:03 +00:00
|
|
|
import UIEvents from '../../../../service/UI/UIEvents';
|
2018-04-13 13:03:12 +00:00
|
|
|
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
|
|
|
createToolbarEvent,
|
|
|
|
sendAnalytics
|
2018-05-10 23:01:55 +00:00
|
|
|
} from '../../analytics';
|
2019-07-31 12:47:52 +00:00
|
|
|
import { setAudioOnly } from '../../base/audio-only';
|
2020-06-19 07:03:26 +00:00
|
|
|
import { hasAvailableDevices } from '../../base/devices';
|
2018-05-10 23:01:55 +00:00
|
|
|
import { translate } from '../../base/i18n';
|
2018-04-13 13:03:12 +00:00
|
|
|
import {
|
|
|
|
VIDEO_MUTISM_AUTHORITY,
|
|
|
|
setVideoMuted
|
2018-05-10 23:01:55 +00:00
|
|
|
} 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 { AbstractVideoMuteButton } from '../../base/toolbox/components';
|
|
|
|
import type { AbstractButtonProps } from '../../base/toolbox/components';
|
2019-11-26 10:57:03 +00:00
|
|
|
import { getLocalVideoType, isLocalVideoTrackMuted } from '../../base/tracks';
|
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 & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the current conference is in audio only mode or not.
|
|
|
|
*/
|
|
|
|
_audioOnly: boolean,
|
|
|
|
|
2019-11-26 10:57:03 +00:00
|
|
|
/**
|
|
|
|
* MEDIA_TYPE of the local video.
|
|
|
|
*/
|
|
|
|
_videoMediaType: string,
|
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @extends AbstractVideoMuteButton
|
|
|
|
*/
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Indicates if video 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}
|
|
|
|
*/
|
|
|
|
_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() {
|
|
|
|
sendAnalytics(
|
|
|
|
createShortcutEvent(
|
|
|
|
VIDEO_MUTE,
|
|
|
|
ACTION_SHORTCUT_TRIGGERED,
|
|
|
|
{ enable: !this._isVideoMuted() }));
|
|
|
|
|
|
|
|
super._handleClick();
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
sendAnalytics(createToolbarEvent(VIDEO_MUTE, { enable: videoMuted }));
|
2019-06-11 10:40:08 +00:00
|
|
|
if (this.props._audioOnly) {
|
|
|
|
this.props.dispatch(
|
|
|
|
setAudioOnly(false, /* ensureTrack */ true));
|
|
|
|
}
|
2019-11-26 10:57:03 +00:00
|
|
|
const mediaType = this.props._videoMediaType;
|
2018-05-15 08:45:49 +00:00
|
|
|
|
2019-06-12 15:25:46 +00:00
|
|
|
this.props.dispatch(
|
|
|
|
setVideoMuted(
|
|
|
|
videoMuted,
|
2019-11-26 10:57:03 +00:00
|
|
|
mediaType,
|
2019-06-12 15:25:46 +00:00
|
|
|
VIDEO_MUTISM_AUTHORITY.USER,
|
|
|
|
/* ensureTrack */ true));
|
|
|
|
|
2018-05-15 08:45:49 +00:00
|
|
|
// FIXME: The old conference logic still relies on this event being
|
|
|
|
// emitted.
|
|
|
|
typeof APP === 'undefined'
|
|
|
|
|| APP.UI.emitEvent(UIEvents.VIDEO_MUTED, videoMuted, 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 {{
|
|
|
|
* _audioOnly: boolean,
|
|
|
|
* _videoMuted: boolean
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _mapStateToProps(state): Object {
|
2019-07-31 12:47:52 +00:00
|
|
|
const { enabled: audioOnly } = state['features/base/audio-only'];
|
2018-04-13 13:03:12 +00:00
|
|
|
const tracks = state['features/base/tracks'];
|
|
|
|
|
|
|
|
return {
|
|
|
|
_audioOnly: Boolean(audioOnly),
|
2020-06-19 07:03:26 +00:00
|
|
|
_videoDisabled: !hasAvailableDevices(state, 'videoInput'),
|
2019-11-26 10:57:03 +00:00
|
|
|
_videoMediaType: getLocalVideoType(tracks),
|
2020-06-19 07:03:26 +00:00
|
|
|
_videoMuted: isLocalVideoTrackMuted(tracks)
|
2018-04-13 13:03:12 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect(_mapStateToProps)(VideoMuteButton));
|