feat: auto play video

This commit is contained in:
codytseng
2025-05-03 22:49:13 +08:00
parent 9e186ab974
commit 53c8483a3f
3 changed files with 62 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
import { cn } from '@/lib/utils'
import { cn, isInViewport } from '@/lib/utils'
import videoManager from '@/services/video-manager.service'
import { useEffect, useRef } from 'react'
import NsfwOverlay from '../NsfwOverlay'
@@ -25,11 +25,17 @@ export default function VideoPlayer({
const observer = new IntersectionObserver(
([entry]) => {
if (!entry.isIntersecting && !video.paused) {
videoManager.enterPiP(video)
if (entry.isIntersecting) {
setTimeout(() => {
if (isInViewport(container)) {
videoManager.autoPlay(video)
}
}, 200)
} else {
videoManager.pause(video)
}
},
{ threshold: 0.5 }
{ threshold: 1 }
)
observer.observe(container)
@@ -39,13 +45,6 @@ export default function VideoPlayer({
}
}, [])
const handlePlay = async () => {
const video = videoRef.current
if (!video) return
await videoManager.playVideo(video)
}
return (
<div ref={containerRef} className="relative">
<video
@@ -55,7 +54,10 @@ export default function VideoPlayer({
className={cn('rounded-lg', size === 'small' ? 'max-h-[30vh]' : 'max-h-[50vh]', className)}
src={src}
onClick={(e) => e.stopPropagation()}
onPlay={handlePlay}
onPlay={(event) => {
videoManager.play(event.currentTarget)
}}
muted
/>
{isNsfw && <NsfwOverlay className="rounded-lg" />}
</div>