From cb3a4e9bc716ca7cd4f03ff2a624e1633471e8b7 Mon Sep 17 00:00:00 2001 From: "junghoon86.park" Date: Mon, 15 Dec 2025 15:22:09 +0900 Subject: [PATCH] =?UTF-8?q?[live=EC=98=81=EC=83=81]=20now=20playing?= =?UTF-8?q?=EB=85=B8=EC=B6=9C=20=EA=B4=80=EB=A0=A8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - currentVideoVisible 추가 --- .../TabContents/LiveChannelContents.jsx | 43 +++++++++++++------ 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx index 51734216..5168f882 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerTabContents/TabContents/LiveChannelContents.jsx @@ -4,16 +4,22 @@ import { useDispatch } from 'react-redux'; import Spotlight from '@enact/spotlight'; +import { sendLogTotalRecommend } from '../../../../actions/logActions'; // <<<<<<< HEAD import { updatePanel } from '../../../../actions/panelActions'; import TVirtualGridList from '../../../../components/TVirtualGridList/TVirtualGridList'; -import { LOG_CONTEXT_NAME, LOG_MENU, LOG_MESSAGE_ID, panel_names } from '../../../../utils/Config'; +import { + LOG_CONTEXT_NAME, + LOG_MENU, + LOG_MESSAGE_ID, + panel_names, +} from '../../../../utils/Config'; import { $L } from '../../../../utils/helperMethods'; import PlayerItemCard, { TYPES } from '../../PlayerItemCard/PlayerItemCard'; import ListEmptyContents from '../TabContents/ListEmptyContents/ListEmptyContents'; import css from './LiveChannelContents.module.less'; import cssV2 from './LiveChannelContents.v2.module.less'; -import { sendLogTotalRecommend } from '../../../../actions/logActions'; + // ======= // import { updatePanel } from "../../../../actions/panelActions"; // import TVirtualGridList from "../../../../components/TVirtualGridList/TVirtualGridList"; @@ -40,7 +46,7 @@ export default function LiveChannelContents({ handleItemFocus, tabTitle, panelInfo, -// <<<<<<< HEAD + // <<<<<<< HEAD direction = 'vertical', version = 1, isFilteredByPatnr19, @@ -49,13 +55,13 @@ export default function LiveChannelContents({ const isClickBlocked = useRef(false); const blockTimeoutRef = useRef(null); -// ======= -// isFilteredByPatnr19, -// }) { -// const dispatch = useDispatch(); -// const isClickBlocked = useRef(false); + // ======= + // isFilteredByPatnr19, + // }) { + // const dispatch = useDispatch(); + // const isClickBlocked = useRef(false); const scrollToRef = useRef(null); -// >>>>>>> gitlab/develop + // >>>>>>> gitlab/develop const handleFocus = useCallback( () => () => { if (handleItemFocus) { @@ -181,15 +187,24 @@ export default function LiveChannelContents({ startDt={strtDt} endDt={endDt} currentTime={currentTime} -// <<<<<<< HEAD + currentVideoVisible={currentVideoShowId === liveInfos[index].showId} + // <<<<<<< HEAD version={version} -// ======= -// currentVideoVisible={currentVideoShowId === liveInfos[index].showId} -// >>>>>>> gitlab/develop + // ======= + // currentVideoVisible={currentVideoShowId === liveInfos[index].showId} + // >>>>>>> gitlab/develop /> ); }, - [liveInfos, currentTime, currentVideoShowId, isClickBlocked, dispatch, handleFocus, version] + [ + liveInfos, + currentTime, + currentVideoShowId, + isClickBlocked, + dispatch, + handleFocus, + version, + ] ); const containerClass = version === 2 ? cssV2.container : css.container;