핫픽스 prdtId본.
This commit is contained in:
@@ -77,8 +77,15 @@ export default function TCFI({
|
||||
};
|
||||
|
||||
const handelEvent = () => {
|
||||
const { evntTpCd, evntId, patnrId, curationId, curationNm, eventInfoV2 } =
|
||||
data[0];
|
||||
const {
|
||||
evntTpCd,
|
||||
evntId,
|
||||
patnrId,
|
||||
curationId,
|
||||
curationNm,
|
||||
eventInfoV2,
|
||||
productInfos,
|
||||
} = data[0];
|
||||
if (eventInfo?.evntTpCd === "EVT00107") {
|
||||
if (osVersion === false) {
|
||||
if (mobilePop !== "Y") {
|
||||
@@ -87,6 +94,7 @@ export default function TCFI({
|
||||
name: panel_names.DETAIL_PANEL,
|
||||
panelInfo: {
|
||||
patnrId: patnrId,
|
||||
prdtId: productInfos[0].prdtId,
|
||||
curationId: curationId,
|
||||
curationNm: curationNm,
|
||||
bgImgNo: bgImgNm,
|
||||
@@ -129,6 +137,7 @@ export default function TCFI({
|
||||
name: panel_names.DETAIL_PANEL,
|
||||
panelInfo: {
|
||||
patnrId: patnrId,
|
||||
prdtId: productInfos[0].prdtId,
|
||||
curationId: curationId,
|
||||
curationNm: curationNm,
|
||||
bgImgNo: bgImgNm,
|
||||
|
||||
@@ -1,23 +1,33 @@
|
||||
import React, { useCallback, useEffect, useRef, useState } from "react";
|
||||
import React, {
|
||||
useCallback,
|
||||
useEffect,
|
||||
useRef,
|
||||
useState,
|
||||
} from 'react';
|
||||
|
||||
import classNames from "classnames";
|
||||
import { useDispatch } from "react-redux";
|
||||
import classNames from 'classnames';
|
||||
import { useDispatch } from 'react-redux';
|
||||
|
||||
import { Job } from "@enact/core/util";
|
||||
import Spotlight from "@enact/spotlight";
|
||||
import SpotlightContainerDecorator from "@enact/spotlight/SpotlightContainerDecorator";
|
||||
import Spottable from "@enact/spotlight/Spottable";
|
||||
import { Job } from '@enact/core/util';
|
||||
import Spotlight from '@enact/spotlight';
|
||||
import SpotlightContainerDecorator
|
||||
from '@enact/spotlight/SpotlightContainerDecorator';
|
||||
import Spottable from '@enact/spotlight/Spottable';
|
||||
|
||||
import defaultImageItem from "../../../../../assets/images/img-thumb-empty-product@3x.png";
|
||||
import { pushPanel, updatePanel } from "../../../../actions/panelActions";
|
||||
import defaultImageItem
|
||||
from '../../../../../assets/images/img-thumb-empty-product@3x.png';
|
||||
import {
|
||||
pushPanel,
|
||||
updatePanel,
|
||||
} from '../../../../actions/panelActions';
|
||||
import {
|
||||
finishVideoPreview,
|
||||
startVideoPlayer,
|
||||
} from "../../../../actions/playActions";
|
||||
import CustomImage from "../../../../components/CustomImage/CustomImage";
|
||||
import usePrevious from "../../../../hooks/usePrevious";
|
||||
import { panel_names } from "../../../../utils/Config";
|
||||
import css from "./TCFV.module.less";
|
||||
} from '../../../../actions/playActions';
|
||||
import CustomImage from '../../../../components/CustomImage/CustomImage';
|
||||
import usePrevious from '../../../../hooks/usePrevious';
|
||||
import { panel_names } from '../../../../utils/Config';
|
||||
import css from './TCFV.module.less';
|
||||
|
||||
const SpottableComponent = Spottable("li");
|
||||
const SpottableComponentDiv = Spottable("div");
|
||||
@@ -67,6 +77,7 @@ export default function TCFV({
|
||||
name: panel_names.DETAIL_PANEL,
|
||||
panelInfo: {
|
||||
patnrId: data[0].patnrId,
|
||||
prdtId: data[0].productInfos[0].prdtId,
|
||||
curationId: data[0].curationId,
|
||||
curationNm: data[0].curationNm,
|
||||
bgImgNo: bgImgNm,
|
||||
@@ -100,6 +111,7 @@ export default function TCFV({
|
||||
name: panel_names.DETAIL_PANEL,
|
||||
panelInfo: {
|
||||
patnrId: data[0].patnrId,
|
||||
prdtId: data[0].productInfos[0].prdtId,
|
||||
curationId: data[0].curationId,
|
||||
curationNm: data[0].curationNm,
|
||||
type: typeChk,
|
||||
|
||||
@@ -1,16 +1,18 @@
|
||||
import React, { useCallback } from "react";
|
||||
import React, { useCallback } from 'react';
|
||||
|
||||
import classNames from "classnames";
|
||||
import { useDispatch } from "react-redux";
|
||||
import classNames from 'classnames';
|
||||
import { useDispatch } from 'react-redux';
|
||||
|
||||
import SpotlightContainerDecorator from "@enact/spotlight/SpotlightContainerDecorator";
|
||||
import Spottable from "@enact/spotlight/Spottable";
|
||||
import SpotlightContainerDecorator
|
||||
from '@enact/spotlight/SpotlightContainerDecorator';
|
||||
import Spottable from '@enact/spotlight/Spottable';
|
||||
|
||||
import defaultImageItem from "../../../../../assets/images/img-thumb-empty-product@3x.png";
|
||||
import { pushPanel } from "../../../../actions/panelActions";
|
||||
import CustomImage from "../../../../components/CustomImage/CustomImage";
|
||||
import { panel_names } from "../../../../utils/Config";
|
||||
import css from "./TCHH.module.less";
|
||||
import defaultImageItem
|
||||
from '../../../../../assets/images/img-thumb-empty-product@3x.png';
|
||||
import { pushPanel } from '../../../../actions/panelActions';
|
||||
import CustomImage from '../../../../components/CustomImage/CustomImage';
|
||||
import { panel_names } from '../../../../utils/Config';
|
||||
import css from './TCHH.module.less';
|
||||
|
||||
const SpottableComponent = Spottable("div");
|
||||
const Container = SpotlightContainerDecorator(
|
||||
@@ -45,6 +47,7 @@ export default function TCHH({
|
||||
name: panel_names.DETAIL_PANEL,
|
||||
panelInfo: {
|
||||
patnrId: data[0].patnrId,
|
||||
prdtId: data[0].productInfos[0].prdtId,
|
||||
curationId: data[0].curationId,
|
||||
curationNm: data[0].curationNm,
|
||||
type: typeChk,
|
||||
|
||||
Reference in New Issue
Block a user