From eb93dc07a7dd65d78c39fce430688178fc7e2cda Mon Sep 17 00:00:00 2001 From: dongyoungKo Date: Tue, 1 Apr 2025 16:39:24 +0900 Subject: [PATCH] =?UTF-8?q?[SHOPTIME-3844]=20Live=20/=20=ED=8F=AC=EC=BB=A4?= =?UTF-8?q?=EC=8B=B1=20=EC=8B=9C=20=EC=9E=AC=EC=83=9D=EB=90=98=EB=8A=94=20?= =?UTF-8?q?=EC=9E=91=EC=9D=80=20=ED=99=94=EB=A9=B4=20/=20Scan=20to=20Shop?= =?UTF-8?q?=20QR=20=EC=BD=94=EB=93=9C=20=EC=9D=BD=ED=9E=88=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [수정 내용] Video preview 모드일때 QRCode가 노출되지 않도록 시나리오 변경되어 작은화면일때는 QRCode가 노출되지 않게 수정 --- .../src/components/VideoPlayer/VideoPlayer.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js b/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js index 5456d4bb..02259eb5 100644 --- a/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js +++ b/com.twin.app.shoptime/src/components/VideoPlayer/VideoPlayer.js @@ -52,6 +52,7 @@ import { SpotlightIds } from "../../utils/SpotlightIds"; import ThemeIndicator from "../../views/DetailPanel/components/indicator/ThemeIndicator"; import ThemeIndicatorArrow from "../../views/DetailPanel/components/indicator/ThemeIndicatorArrow"; import PlayerOverlayContents from "../../views/PlayerPanel/PlayerOverlay/PlayerOverlayContents"; +import PlayerOverlayQRCode from "../../views/PlayerPanel/PlayerOverlay/PlayerOverlayQRCode"; import Loader from "../Loader/Loader"; import { MediaControls, @@ -68,7 +69,6 @@ import Overlay from "./Overlay"; import TReactPlayer from "./TReactPlayer"; import Video from "./Video"; import css from "./VideoPlayer.module.less"; -import PlayerOverlayQRCode from "../../views/PlayerPanel/PlayerOverlay/PlayerOverlayQRCode"; const isEnter = is("enter"); const isLeft = is("left"); @@ -2279,7 +2279,8 @@ const VideoPlayerBase = class extends React.Component { } } - const isQRCodeVisible = playListInfo && qrCurrentItem && !thumbnailUrl; + const isQRCodeVisible = + playListInfo && qrCurrentItem && !thumbnailUrl && !panelInfo.modal; const onSpotlightFocus = () => { this.showControls();