fix: VideoPlayer에 onClick prop 추가로 클릭 이벤트 처리

- VideoPlayer 컴포넌트에 onClick={handleVideoPlayerClick} 추가
- MediaPlayer가 modal 모드일 때 onClick을 처리하는 기능 활용
- 비디오 재생 중 클릭으로 전체화면 토글 동작

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-11 13:05:00 +09:00
parent 5299f39d0e
commit c5ce58fc43

View File

@@ -463,6 +463,7 @@ export default function ProductVideoV2({
disabled={false}
onEnded={handleVideoEnded}
onBackButton={handleBackButton}
onClick={handleVideoPlayerClick}
noAutoPlay={false}
noAutoShowMediaControls={!isFullscreen}
autoCloseTimeout={5000}