91 lines
1.4 KiB
JavaScript
91 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import Spinner from 'react-spinner';
|
|
|
|
export default class FullView extends React.Component
|
|
{
|
|
constructor(props)
|
|
{
|
|
super(props);
|
|
|
|
// Latest received video track.
|
|
// @type {MediaStreamTrack}
|
|
this._videoTrack = null;
|
|
}
|
|
|
|
render()
|
|
{
|
|
const {
|
|
videoVisible,
|
|
videoProfile
|
|
} = this.props;
|
|
|
|
return (
|
|
<div data-component='ScreenView'>
|
|
<video
|
|
ref='video'
|
|
className={classnames({
|
|
hidden : !videoVisible,
|
|
loading : videoProfile === 'none'
|
|
})}
|
|
autoPlay
|
|
muted={Boolean(true)}
|
|
/>
|
|
|
|
{videoProfile === 'none' ?
|
|
<div className='spinner-container'>
|
|
<Spinner />
|
|
</div>
|
|
:null
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
componentDidMount()
|
|
{
|
|
const { videoTrack } = this.props;
|
|
|
|
this._setTracks(videoTrack);
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps)
|
|
{
|
|
const { videoTrack } = nextProps;
|
|
|
|
this._setTracks(videoTrack);
|
|
}
|
|
|
|
_setTracks(videoTrack)
|
|
{
|
|
if (this._videoTrack === videoTrack)
|
|
return;
|
|
|
|
this._videoTrack = videoTrack;
|
|
|
|
const { video } = this.refs;
|
|
|
|
if (videoTrack)
|
|
{
|
|
const stream = new MediaStream;
|
|
|
|
if (videoTrack)
|
|
stream.addTrack(videoTrack);
|
|
|
|
video.srcObject = stream;
|
|
}
|
|
else
|
|
{
|
|
video.srcObject = null;
|
|
}
|
|
}
|
|
}
|
|
|
|
FullView.propTypes =
|
|
{
|
|
videoTrack : PropTypes.any,
|
|
videoVisible : PropTypes.bool,
|
|
videoProfile : PropTypes.string
|
|
};
|