forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ToggleCamera): Implement for web.
- Loading branch information
Showing
8 changed files
with
134 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
react/features/toolbox/components/web/ToggleCameraButton.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// @flow | ||
|
||
import { isMobileBrowser } from '../../../base/environment/utils'; | ||
import { translate } from '../../../base/i18n'; | ||
import { IconCameraRefresh } from '../../../base/icons'; | ||
import { connect } from '../../../base/redux'; | ||
import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components'; | ||
import { isLocalCameraTrackMuted, toggleCamera } from '../../../base/tracks'; | ||
|
||
/** | ||
* 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() { | ||
this.props.dispatch(toggleCamera()); | ||
} | ||
|
||
/** | ||
* 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']; | ||
const { videoInput } = state['features/base/devices'].availableDevices; | ||
|
||
return { | ||
_audioOnly: Boolean(audioOnly), | ||
_videoMuted: isLocalCameraTrackMuted(tracks), | ||
visible: isMobileBrowser() && videoInput.length > 1 | ||
}; | ||
} | ||
|
||
export default translate(connect(mapStateToProps)(ToggleCameraButton)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters