12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import React from 'react';
- import { makeStyles } from 'tss-react/mui';
-
- import { Video } from '../../base/media/components/index';
-
- /**
- * The type of the React {@code Component} props of {@link VideoInputPreview}.
- */
- interface IProps {
-
- /**
- * An error message to display instead of a preview. Displaying an error
- * will take priority over displaying a video preview.
- */
- error: string | null;
-
- /**
- * Whether or not the local video is flipped.
- */
- localFlipX: boolean;
-
- /**
- * The JitsiLocalTrack to display.
- */
- track: Object;
- }
-
- const useStyles = makeStyles()(theme => {
- return {
- container: {
- position: 'relative',
- borderRadius: '3px',
- overflow: 'hidden',
- marginBottom: theme.spacing(4),
- backgroundColor: theme.palette.uiBackground
- },
-
- video: {
- height: 'auto',
- width: '100%',
- overflow: 'hidden'
- },
-
- errorText: {
- color: theme.palette.text01,
- left: 0,
- position: 'absolute',
- right: 0,
- textAlign: 'center',
- top: '50%'
- }
- };
- });
-
- const VideoInputPreview = ({ error, localFlipX, track }: IProps) => {
- const { classes, cx } = useStyles();
-
- return (
- <div className = { classes.container }>
- <Video
- className = { cx(classes.video, localFlipX && 'flipVideoX') }
- playsinline = { true }
- videoTrack = {{ jitsiTrack: track }} />
- {error && (
- <div className = { classes.errorText }>
- {error}
- </div>
- )}
- </div>
- );
- };
-
- export default VideoInputPreview;
|