74 lines
1.7 KiB
TypeScript
74 lines
1.7 KiB
TypeScript
|
import React from 'react';
|
||
|
import { makeStyles } from 'tss-react/mui';
|
||
|
|
||
|
import Video from '../../base/media/components/Video.web';
|
||
|
|
||
|
/**
|
||
|
* 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;
|