12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // @flow
-
- import React from 'react';
- import InlineDialog from '@atlaskit/inline-dialog';
-
- import { toggleVideoSettings } from '../../../actions';
- import {
- getVideoDeviceIds,
- setVideoInputDevice as setVideoInputDeviceAction
- } from '../../../../base/devices';
- import { getVideoSettingsVisibility } from '../../../functions';
- import { connect } from '../../../../base/redux';
- import { getCurrentCameraDeviceId } from '../../../../base/settings';
- import VideoSettingsContent, { type Props as VideoSettingsProps } from './VideoSettingsContent';
-
-
- type Props = VideoSettingsProps & {
-
- /**
- * Component children (the Video button).
- */
- children: React$Node,
-
- /**
- * Flag controlling the visibility of the popup.
- */
- isOpen: boolean,
-
- /**
- * Callback executed when the popup closes.
- */
- onClose: Function,
- }
-
- /**
- * Popup with a preview of all the video devices.
- *
- * @returns {ReactElement}
- */
- function VideoSettingsPopup({
- currentCameraDeviceId,
- children,
- isOpen,
- onClose,
- setVideoInputDevice,
- videoDeviceIds
- }: Props) {
- return (
- <div className = 'video-preview'>
- <InlineDialog
- content = { <VideoSettingsContent
- currentCameraDeviceId = { currentCameraDeviceId }
- setVideoInputDevice = { setVideoInputDevice }
- toggleVideoSettings = { onClose }
- videoDeviceIds = { videoDeviceIds } /> }
- isOpen = { isOpen }
- onClose = { onClose }
- position = 'top right'>
- { children }
- </InlineDialog>
- </div>
- );
- }
-
- /**
- * Maps (parts of) the redux state to the associated {@code VideoSettingsPopup}'s
- * props.
- *
- * @param {Object} state - Redux state.
- * @returns {Object}
- */
- function mapStateToProps(state) {
- return {
- currentCameraDeviceId: getCurrentCameraDeviceId(state),
- isOpen: getVideoSettingsVisibility(state),
- videoDeviceIds: getVideoDeviceIds(state)
- };
- }
-
- const mapDispatchToProps = {
- onClose: toggleVideoSettings,
- setVideoInputDevice: setVideoInputDeviceAction
- };
-
- export default connect(mapStateToProps, mapDispatchToProps)(VideoSettingsPopup);
|