From 49f137620b419fed93e1341c08938be2e9fa479e Mon Sep 17 00:00:00 2001 From: "junghoon86.park" Date: Thu, 4 Dec 2025 15:51:19 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=98=81=EC=83=81=20=EC=9E=91=EB=8F=99=20?= =?UTF-8?q?=EC=88=98=EC=A0=95]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 영상 화면 live next 버튼에 포커스가 가면 영상 리스트가 노출되도록 변경. - onFocus 추가하여 focus시 작동하도록 변경. --- .../views/PlayerPanel/PlayerTabContents/v2/LiveChannelNext.jsx | 2 ++ .../views/PlayerPanel/PlayerTabContents/v2/TabContainer.v2.jsx | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveChannelNext.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveChannelNext.jsx index ab2c6e76..f198efe3 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveChannelNext.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/v2/LiveChannelNext.jsx @@ -23,6 +23,7 @@ export default function LiveChannelNext({ programName = 'Sandal Black...', backgroundColor = 'linear-gradient(180deg, #284998 0%, #06B0EE 100%)', onClick, + onFocus, spotlightId = 'live-channel-next-button', }) { const handleSpotlightUp = (e) => { @@ -47,6 +48,7 @@ export default function LiveChannelNext({ state.main.youmaylikeInfos); + const youmaylikeInfos = useSelector((state) => state.main.youmaylikeInfos); // 다음 재생 가능한 쇼 찾기 const findNextPlayableShow = useCallback((currentPlayList, currentIndex) => { @@ -337,6 +337,7 @@ export default function TabContainerV2({ } onClick={onLiveNext} spotlightId="live-channel-next-button" + onFocus={onLiveNext} />