bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/external-video-player/component.jsx
2019-07-12 20:08:55 +00:00

214 lines
5.3 KiB
JavaScript

import React, { Component } from 'react';
import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component';
import YouTube from 'react-youtube';
import { sendMessage, onMessage } from './service';
import logger from '/imports/startup/client/logger';
import ReactPlayer from 'react-player'
const SYNC_INTERVAL_SECONDS = 2;
class VideoPlayer extends Component {
constructor(props) {
super(props);
this.player = null;
this.syncInterval = null;
this.state = {
mutedByEchoTest: false,
};
this.opts = {
width: '100%',
height: '100%',
playerVars: {
autoplay: 1,
modestbranding: 1,
autohide: 1,
rel: 0,
ecver: 2,
controls: this.props.isPresenter ? 1 : 2,
},
};
this.keepSync = this.keepSync.bind(this);
this.handleResize = this.handleResize.bind(this);
this.handleOnReady = this.handleOnReady.bind(this);
this.handleOnPlay = this.handleOnPlay.bind(this);
this.handleOnPause = this.handleOnPause.bind(this);
this.resizeListener = () => {
setTimeout(this.handleResize, 0);
};
}
componentDidMount() {
window.addEventListener('resize', this.resizeListener);
clearInterval(this.syncInterval);
this.keepSync();
}
componentDidUpdate(prevProps) {
const { inEchoTest } = this.props;
const {
mutedByEchoTest,
} = this.state;
if (inEchoTest && !this.player.isMuted() && !mutedByEchoTest) {
this.setState({ mutedByEchoTest: true });
}
if (!inEchoTest && prevProps.inEchoTest && mutedByEchoTest) {
this.setState({ mutedByEchoTest: false });
}
}
componentWillUnmount() {
window.removeEventListener('resize', this.resizeListener);
clearInterval(this.syncInterval);
this.player = null;
}
handleResize() {
if (!this.player || !this.playerParent) {
return;
}
const par = this.playerParent.parentElement;
const w = par.clientWidth;
const h = par.clientHeight;
const idealW = h * 16 / 9;
let style = {}
if (idealW > w) {
style.width = w;
style.height = w * 9 / 16;
} else {
style.width = idealW;
style.height = h;
}
var styleStr = `width: ${style.width}px; height: ${style.height}px;`;
this.player.wrapper.style = styleStr;
this.playerParent.style = styleStr;
}
keepSync() {
const { isPresenter } = this.props;
if (isPresenter) {
this.syncInterval = setInterval(() => {
const curTime = this.player.getCurrentTime();
const rate = this.player.playbackRate;
sendMessage('playerUpdate', { rate, time: curTime, state: this.state.playing });
}, SYNC_INTERVAL_SECONDS * 1000);
} else {
onMessage('play', ({ time }) => {
if (!this.player) {
return;
}
this.player.seekTo(time);
this.setState({playing: true});
logger.debug({ logCode: 'external_video_client_play' }, 'Play external video');
});
onMessage('stop', ({ time }) => {
if (!this.player) {
return;
}
this.player.seekTo(time);
this.setState({playing: false});
logger.debug({ logCode: 'external_video_client_stop' }, 'Stop external video');
});
onMessage('playerUpdate', (data) => {
if (!this.player) {
return;
}
if (data.rate !== this.player.playbackRate) {
this.player.playbackRate = data.rate;
logger.debug({ logCode: 'external_video_client_update_rate' }, 'Change external video playback rate to:', data.rate);
}
if (Math.abs(this.player.getCurrentTime() - data.time) > SYNC_INTERVAL_SECONDS) {
this.player.seekTo(data.time);
logger.debug({ logCode: 'external_video_client_update_seek' }, 'Seek external video to:', data.time);
}
if (this.state.playing !== data.state) {
this.setState({playing: data.state});
}
});
}
}
handleOnReady(event) {
const { isPresenter } = this.props;
if (!isPresenter) {
sendMessage('viewerJoined');
} else {
this.setState({playing: true});
}
this.handleResize();
}
handleOnPlay() {
const { isPresenter } = this.props;
const curTime = this.player.getCurrentTime();
if (isPresenter) {
sendMessage('play', { time: curTime });
}
this.setState({playing: true});
}
handleOnPause() {
const { isPresenter } = this.props;
const curTime = this.player.getCurrentTime();
if (isPresenter) {
sendMessage('stop', { time: curTime });
}
this.setState({playing: false});
}
render() {
const { videoId, videoUrl } = this.props;
const { playing, mutedByEchoTest } = this.state;
const { opts, handleOnReady, handleStateChange } = this;
return (
<div
id="video-player"
data-test="videoPlayer"
ref={(ref) => { this.playerParent = ref; }}
>
<ReactPlayer
url={videoUrl}
config={{
youtube: opts
}}
muted={mutedByEchoTest}
playing={playing}
onReady={this.handleOnReady}
onPlay={this.handleOnPlay}
onPause={this.handleOnPause}
ref={(ref) => { this.player = ref; }}
/>
</div>
);
}
}
export default injectWbResizeEvent(VideoPlayer);