From a265570f06ca371f746ead3797e115c44c18d880 Mon Sep 17 00:00:00 2001 From: Eimi Okuno Date: Wed, 29 Apr 2020 16:16:07 +0900 Subject: [PATCH] Remove console log --- .../VideoContextPreview/index.js | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/src/PreviewCanvas/VideoContextPreview/index.js b/src/PreviewCanvas/VideoContextPreview/index.js index eaae048..4a0e916 100644 --- a/src/PreviewCanvas/VideoContextPreview/index.js +++ b/src/PreviewCanvas/VideoContextPreview/index.js @@ -13,7 +13,6 @@ const VideoContextPreview = (props) => { const canvasRef = props.canvasRef; const [ videoContext, setVideoContext ] = useState(); const [ duration, setDuration ] = useState(0); - const [ sourceNodes, setSourceNodes ] = useState([]); useEffect(() => { if (canvasRef && canvasRef.current) { @@ -23,8 +22,8 @@ const VideoContextPreview = (props) => { useEffect(() => { const updateVideoContext = () => { - const vc = new VideoContext(canvasRef.current); - props.playlist.forEach((media) => { + videoContext.reset(); + const connectVideoContext = (media) => { const { type, sourceStart, @@ -33,22 +32,22 @@ const VideoContextPreview = (props) => { src, } = media; const end = start + mediaDuration; - const node = vc[type](src, sourceStart); + const node = videoContext[type](src, sourceStart); node.startAt(start); node.stopAt(end); - node.connect(vc.destination); - }); - setVideoContext(vc); - setDuration(vc.duration); - setSourceNodes(vc._sourceNodes); + node.connect(videoContext.destination); + }; + props.playlist.forEach((media) => + connectVideoContext(media, videoContext) + ); + + setDuration(videoContext.duration); }; - // we will always add or remove, not edit in-place - if (sourceNodes.length !== props.playlist.length) { + if (videoContext) { updateVideoContext(); } - }, [ props.playlist, videoContext ]); const handleStop = () => { @@ -60,6 +59,8 @@ const VideoContextPreview = (props) => { }); }; + const formattedDuration = secondsToHHMMSSFormat(duration); + return ( <> { - Total duration: {secondsToHHMMSSFormat(duration)} + Total duration: {formattedDuration} ); @@ -100,7 +101,7 @@ const VideoContextPreview = (props) => { VideoContextPreview.propTypes = { canvasRef: PropTypes.any, playlist: PropTypes.array, - width: PropTypes.number + width: PropTypes.number, }; export default VideoContextPreview;