2021-07-22 08:39:13 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { translate } from '../../../base/i18n';
|
|
|
|
import { IconCameraRefresh } from '../../../base/icons';
|
2022-11-08 19:15:49 +00:00
|
|
|
import { MEDIA_TYPE } from '../../../base/media';
|
2021-07-22 08:39:13 +00:00
|
|
|
import { connect } from '../../../base/redux';
|
|
|
|
import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
|
2022-11-08 19:15:49 +00:00
|
|
|
import { isLocalTrackMuted, isToggleCameraEnabled, toggleCamera } from '../../../base/tracks';
|
2021-07-22 08:39:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} props of {@link ToggleCameraButton}.
|
|
|
|
*/
|
|
|
|
type Props = AbstractButtonProps & {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the current conference is in audio only mode or not.
|
|
|
|
*/
|
|
|
|
_audioOnly: boolean,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether video is currently muted or not.
|
|
|
|
*/
|
|
|
|
_videoMuted: boolean,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Redux dispatch function.
|
|
|
|
*/
|
|
|
|
dispatch: Function
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An implementation of a button for toggling the camera facing mode.
|
|
|
|
*/
|
|
|
|
class ToggleCameraButton extends AbstractButton<Props, any> {
|
|
|
|
accessibilityLabel = 'toolbar.accessibilityLabel.toggleCamera';
|
|
|
|
icon = IconCameraRefresh;
|
|
|
|
label = 'toolbar.toggleCamera';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles clicking/pressing the button.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_handleClick() {
|
2022-01-04 11:21:00 +00:00
|
|
|
const { dispatch } = this.props;
|
2021-09-14 07:07:20 +00:00
|
|
|
|
|
|
|
dispatch(toggleCamera());
|
2021-07-22 08:39:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this button is disabled or not.
|
|
|
|
*
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
_isDisabled() {
|
|
|
|
return this.props._audioOnly || this.props._videoMuted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps (parts of) the redux state to the associated props for the
|
|
|
|
* {@code ToggleCameraButton} component.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The Redux state.
|
|
|
|
* @returns {Props}
|
|
|
|
*/
|
|
|
|
function mapStateToProps(state): Object {
|
|
|
|
const { enabled: audioOnly } = state['features/base/audio-only'];
|
|
|
|
const tracks = state['features/base/tracks'];
|
|
|
|
|
|
|
|
return {
|
|
|
|
_audioOnly: Boolean(audioOnly),
|
2022-11-08 19:15:49 +00:00
|
|
|
_videoMuted: isLocalTrackMuted(tracks, MEDIA_TYPE.VIDEO),
|
2021-07-22 08:39:13 +00:00
|
|
|
visible: isToggleCameraEnabled(state)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect(mapStateToProps)(ToggleCameraButton));
|