fix videojs bug when switching cameras, support recording delay, fix navigation highlight

This commit is contained in:
Jason Hunter
2021-06-02 23:20:07 -04:00
committed by Blake Blackshear
parent ca20c735f7
commit 9822d614e2
6 changed files with 108 additions and 28 deletions

View File

@@ -1,4 +1,5 @@
import { h, Component } from 'preact';
import { useEffect, useRef } from 'preact/hooks';
import videojs from 'video.js';
import 'videojs-playlist';
import 'video.js/dist/video-js.css';
@@ -8,6 +9,27 @@ const defaultOptions = {
fluid: true,
};
// export default function VideoPlayer({ children, options, onReady = () => {} }) {
// const playerRef = useRef(null);
// useEffect(() => {
// if (playerRef.current) {
// const player = videojs(playerRef.current, { ...defaultOptions, ...options }, () => {
// onReady(player);
// });
// return () => {
// player.dispose();
// };
// }
// }, [options, onReady]);
// return (
// <div data-vjs-player>
// <video ref={playerRef} className="video-js vjs-default-skin" controls playsInline />
// {children}
// </div>
// );
// }
export default class VideoPlayer extends Component {
componentDidMount() {
const { options, onReady = () => {} } = this.props;
@@ -21,14 +43,16 @@ export default class VideoPlayer extends Component {
}
componentWillUnmount() {
const { onDispose = () => {} } = this.props;
if (this.player) {
this.player.dispose();
onDispose();
}
}
shouldComponentUpdate() {
return false;
}
// shouldComponentUpdate() {
// return false;
// }
render() {
const { style, children } = this.props;