bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/external-video-player/component.jsx

225 lines
5.5 KiB
React
Raw Normal View History

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);
const isPresenter = { props };
this.player = null;
this.syncInterval = null;
this.state = {
mutedByEchoTest: false,
playing: false,
};
this.opts = {
controls: isPresenter,
youtube: {
playerVars: {
autoplay: 1,
modestbranding: 1,
autohide: 1,
rel: 0,
ecver: 2,
controls: this.props.isPresenter ? 1 : 2,
},
},
preload: true,
};
this.keepSync = this.keepSync.bind(this);
this.handleResize = this.handleResize.bind(this);
this.handleOnReady = this.handleOnReady.bind(this);
2019-07-13 04:08:55 +08:00
this.handleOnPlay = this.handleOnPlay.bind(this);
this.handleOnPause = this.handleOnPause.bind(this);
this.resizeListener = () => {
setTimeout(this.handleResize, 0);
};
}
componentDidMount() {
window.addEventListener('resize', this.resizeListener);
2019-07-13 04:08:55 +08:00
clearInterval(this.syncInterval);
this.keepSync();
}
componentDidUpdate(prevProps) {
const { inEchoTest } = this.props;
const {
mutedByEchoTest,
} = this.state;
if (inEchoTest && !this.player.isMuted() && !mutedByEchoTest) {
2019-07-13 04:08:55 +08:00
this.setState({ mutedByEchoTest: true });
}
if (!inEchoTest && prevProps.inEchoTest && mutedByEchoTest) {
2019-07-13 04:08:55 +08:00
this.setState({ mutedByEchoTest: false });
}
}
componentWillUnmount() {
window.removeEventListener('resize', this.resizeListener);
clearInterval(this.syncInterval);
this.player = null;
}
handleResize() {
2019-07-13 04:08:55 +08:00
if (!this.player || !this.playerParent) {
return;
}
2019-07-13 04:08:55 +08:00
const par = this.playerParent.parentElement;
const w = par.clientWidth;
const h = par.clientHeight;
const idealW = h * 16 / 9;
2019-07-13 04:08:55 +08:00
let style = {}
if (idealW > w) {
2019-07-13 04:08:55 +08:00
style.width = w;
style.height = w * 9 / 16;
} else {
2019-07-13 04:08:55 +08:00
style.width = idealW;
style.height = h;
}
2019-07-13 04:08:55 +08:00
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();
2019-07-13 04:08:55 +08:00
const rate = this.player.playbackRate;
sendMessage('playerUpdate', { rate, time: curTime, state: this.state.playing });
}, SYNC_INTERVAL_SECONDS * 1000);
} else {
2019-07-13 04:08:55 +08:00
onMessage('play', ({ time }) => {
2019-07-13 04:08:55 +08:00
if (!this.player) {
return;
}
2019-07-13 04:08:55 +08:00
this.player.seekTo(time);
this.setState({playing: true});
logger.debug({ logCode: 'external_video_client_play' }, 'Play external video');
});
onMessage('stop', ({ time }) => {
2019-07-13 04:08:55 +08:00
if (!this.player) {
return;
}
2019-07-13 04:08:55 +08:00
this.player.seekTo(time);
this.setState({playing: false});
logger.debug({ logCode: 'external_video_client_stop' }, 'Stop external video');
});
onMessage('playerUpdate', (data) => {
2019-07-13 04:08:55 +08:00
if (!this.player) {
return;
}
2019-07-13 04:08:55 +08:00
if (data.rate !== this.player.playbackRate) {
this.player.playbackRate = data.rate;
logger.debug({
logCode: 'external_video_client_update_rate',
extraInfo: {
2019-07-03 00:54:10 +08:00
newRate: data.rate,
},
2019-07-03 00:54:10 +08:00
}, 'Change external video playback rate.');
}
if (Math.abs(this.player.getCurrentTime() - data.time) > SYNC_INTERVAL_SECONDS) {
this.player.seekTo(data.time, true);
logger.debug({
logCode: 'external_video_client_update_seek',
extraInfo: {
time: data.time,
},
}, 'Seek external video to:');
}
2019-07-13 04:08:55 +08:00
if (this.state.playing !== data.state) {
this.setState({playing: data.state});
}
});
}
}
handleOnReady(event) {
const { isPresenter } = this.props;
if (!isPresenter) {
sendMessage('viewerJoined');
}
this.handleResize();
}
2019-07-13 04:08:55 +08:00
handleOnPlay() {
const { isPresenter } = this.props;
const curTime = this.player.getCurrentTime();
2019-07-13 04:08:55 +08:00
if (isPresenter) {
sendMessage('play', { time: curTime });
}
2019-07-13 04:08:55 +08:00
this.setState({playing: true});
}
2019-07-13 04:08:55 +08:00
handleOnPause() {
const { isPresenter } = this.props;
const curTime = this.player.getCurrentTime();
2019-07-13 04:08:55 +08:00
if (isPresenter) {
sendMessage('stop', { time: curTime });
}
2019-07-13 04:08:55 +08:00
this.setState({playing: false});
2018-12-11 07:07:20 +08:00
}
render() {
const { videoUrl } = this.props;
2019-07-13 04:08:55 +08:00
const { playing, mutedByEchoTest } = this.state;
const { opts, commonOpts, handleOnReady, handleStateChange } = this;
return (
<div
2019-07-13 04:08:55 +08:00
id="video-player"
data-test="videoPlayer"
2019-07-13 04:08:55 +08:00
ref={(ref) => { this.playerParent = ref; }}
>
2019-07-13 04:08:55 +08:00
<ReactPlayer
url={videoUrl}
config={this.opts}
2019-07-13 04:08:55 +08:00
muted={mutedByEchoTest}
playing={playing}
onReady={this.handleOnReady}
onPlay={this.handleOnPlay}
onPause={this.handleOnPause}
ref={(ref) => { this.player = ref; }}
/>
</div>
);
}
}
export default injectWbResizeEvent(VideoPlayer);