From ddd5d5c7ba897dbf08de7d7ff2c6ed37d511627a Mon Sep 17 00:00:00 2001 From: optrader Date: Thu, 11 Dec 2025 17:59:31 +0900 Subject: [PATCH] [251211] fix: PlayerPanel autoClose activityCheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit πŸ• 컀밋 μ‹œκ°„: 2025. 12. 11. 17:59:30 πŸ“Š λ³€κ²½ 톡계: β€’ 총 파일: 2개 β€’ μΆ”κ°€: +1쀄 β€’ μ‚­μ œ: -6쀄 πŸ“ μˆ˜μ •λœ 파일: ~ com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js ~ com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx πŸ”§ μ£Όμš” λ³€κ²½ λ‚΄μš©: β€’ UI μ»΄ν¬λ„ŒνŠΈ μ•„ν‚€ν…μ²˜ κ°œμ„  β€’ μ½”λ“œ 정리 및 μ΅œμ ν™” Performance: μ½”λ“œ μ΅œμ ν™”λ‘œ μ„±λŠ₯ κ°œμ„  κΈ°λŒ€ --- .../src/components/VideoPlayer/VideoPlayer.js | 5 ----- com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js b/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js index f29d1b28..a4a71b88 100644 --- a/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js +++ b/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js @@ -1157,11 +1157,6 @@ const VideoPlayerBase = class extends React.Component { // detection of when "more" is pressed vs when the state is updated is mismatched. Using an // instance variable that's only set and used for this express purpose seems cleanest. - // TabContainerV2κ°€ ν‘œμ‹œ 쀑이면 μžλ™μœΌλ‘œ λ‹«μ§€ μ•ŠμŒ - if (this.props.tabContainerVersion === 2 && this.props.belowContentsVisible) { - return; - } - if (this.props.autoCloseTimeout && !this.props.sideContentsVisible) { this.autoCloseJob.startAfter(this.props.autoCloseTimeout); } diff --git a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx index 8188e663..02d13508 100644 --- a/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx +++ b/com.twin.app.shoptime/src/views/PlayerPanel/PlayerPanel.jsx @@ -2955,7 +2955,7 @@ const PlayerPanel = ({ isTabActivated, panelInfo, isOnTop, spotlightId, ...props disabled={panelInfo.modal} onEnded={onEnded} noAutoPlay={cannotPlay} - autoCloseTimeout={6000} + autoCloseTimeout={10000} onBackButton={onClickBack} spotlightDisabled={panelInfo.modal} isYoutube={isYoutube}