import React, { forwardRef, useRef, useState, useEffect, useMemo, useImperativeHandle, useCallback, } from 'react'; import Controller from './controller'; // import { videoparameter, JoLPlayerRef } from '@/interface'; import { FlowContext, useVideoFlow } from '@/core/context'; import useMandatoryUpdate from '@/utils/useMandatoryUpdate'; import BufferComponent from '@/components/svgIcon'; import { useVideo } from '@/core/useVideo'; import useVideoCallback from '@/core/useVideoCallback'; import { defaultTheme } from '@/core/config'; import Hls from 'hls.js'; import toast from '@/components/toast'; import '@/assets/css/reset.scss'; import './index.scss'; import { JoLPlayerRef, videoparameter } from 'types'; const JoLPlayer = function JoLPlayer(props: videoparameter, ref: React.Ref | undefined) { const { option, className, style, onProgressMouseDown, onPlay, onPause, onTimeChange, onEndEd, onProgressMouseUp, onError, onvolumechange, onQualityChange, } = props; const { videoSrc, width, height, theme, poster, setBufferContent, videoType, toastPosition, autoPlay, mode, } = option; /** * @description 关灯对象 */ const lightOffMaskRef = useRef(null!); /** * @description 视频对象 */ const videoRef = useRef(null!); /** * @description 视频容器对象 */ const videoContainerRef = useRef(null!); /** * @description 定时器检测 3 秒后视频是否可用 */ const timerToCheckVideoUseful = useRef(null); /** * @description 视频缓存的开关 */ const [isBufferring, setIsBufferring] = useState(false); /** * @description 用来处理视频自动播放的 */ const muted = useRef(false); const { videoFlow, dispatch } = useVideoFlow(); const forceUpdate = useMandatoryUpdate(); const waitingListener = () => { setIsBufferring(true); }; const playingListener = () => { setIsBufferring(false); }; const setVideoWh = (e: Event) => { const event = e.target as EventTarget & { videoWidth: number; videoHeight: number }; const videoWidth = event.videoWidth; const videoHeight = event.videoHeight; if (width && height) { videoContainerRef.current.style.width = `${width}px`; videoContainerRef.current.style.height = `${height}px`; } else { if (mode === 'widthFix' && width) { const scaleH = (width * videoHeight) / videoWidth; videoContainerRef.current.style.height = `${scaleH}px`; videoContainerRef.current.style.width = `${width}px`; } else if (mode === 'heightFix' && height) { const scaleW = (videoWidth * height) / videoHeight; videoContainerRef.current.style.width = `${scaleW}px`; videoContainerRef.current.style.height = `${height}px`; } else { videoContainerRef.current.style.width = `${width ? width : videoWidth}px`; videoContainerRef.current.style.height = `${height ? height : videoHeight}px`; } } }; const setHls = (videoElem: HTMLVideoElement) => { if (videoType && videoType === 'hls') { // 支持hls格式 if (Hls.isSupported()) { var hls = new Hls(); hls.loadSource(videoSrc); hls.attachMedia(videoElem); } } }; const { videoAttributes, videoMethod } = useVideo( { videoElement: videoRef.current, }, [videoRef.current], ); useVideoCallback(videoAttributes, videoFlow, { onProgressMouseDown, onProgressMouseUp, onPlay, onPause, onTimeChange, onEndEd, onError, onvolumechange, onQualityChange, }); useEffect(() => { forceUpdate(); const videoElem = videoRef.current; // setVideoContainerStyle(videoContainerRef.current, height, width); setHls(videoElem); if (option.autoPlay) { muted.current = true; videoRef.current.volume = 0; } timerToCheckVideoUseful.current = setTimeout(() => { // 当视频未初始化时(即不可用时) if (videoElem.networkState === 0 || videoElem.networkState === 3) { toast({ message: 'Error:Video source not found', duration: 4000, position: toastPosition, }); } else { clearTimeout(timerToCheckVideoUseful.current!); } }, 3000); videoElem.addEventListener('canplay', setVideoWh); videoElem.addEventListener('waiting', waitingListener); videoElem.addEventListener('playing', playingListener); return () => { timerToCheckVideoUseful.current && clearTimeout(timerToCheckVideoUseful.current); videoElem.removeEventListener('waiting', waitingListener); videoElem.removeEventListener('playing', playingListener); }; }, [option]); useEffect(() => { if (autoPlay) { document.addEventListener('mousemove', () => videoAutoPlay(autoPlay)); } return () => { autoPlay && document.removeEventListener('mousemove', () => videoAutoPlay); }; }, [autoPlay]); const videoAutoPlay = useCallback((autoPlay: boolean) => { if (!autoPlay) { return; } if (muted.current && videoRef.current) { var promise = videoRef.current.play(); if (promise !== undefined) { promise .catch((error) => { videoRef.current.volume = 0.6; muted.current = false; }) .then(() => { videoRef.current.play(); videoRef.current.volume = 0.6; muted.current = false; }); } } else { return null; } }, []); useImperativeHandle(ref, () => { return { video: videoRef.current, ...videoMethod, ...videoAttributes, }; }); const returnVideoSource = useMemo(() => { return ( <> ); }, [videoSrc]); const contextProps = useMemo(() => { return Object.assign( {}, { videoRef: videoRef.current, videoContainerRef: videoContainerRef.current, lightOffMaskRef: lightOffMaskRef.current, dispatch, videoFlow, propsAttributes: option, }, ); }, [videoRef.current, videoFlow, option]); return (
{isBufferring && (setBufferContent ? ( setBufferContent ) : ( ))}
); }; const JoLPlayerComponent = forwardRef(JoLPlayer); export default JoLPlayerComponent;