theme menu 화면 내 아이템클릭시 통합로그 정보수집

This commit is contained in:
Dev TWIN0906
2025-05-23 11:08:23 +09:00
parent fe7c2ff3cf
commit f46368e956
2 changed files with 19 additions and 2 deletions

View File

@@ -144,7 +144,7 @@ let localLaunchParams = {
// contentTarget: "V3_3000_AD:SR_SR_1",
// contentTarget: "V3_2006_HOMEBANNER:6241018_HP_1_1307_2",
// contentTarget: "V3_2004_HOMEBANNER:4241101_HP_9_889",
contentTarget: "V3_2001_HOMEBANNER:1240712_TM_10",
// contentTarget: "V3_2001_HOMEBANNER:1240712_TM_10",
};
export const getLaunchParams = () => {

View File

@@ -8,7 +8,11 @@ import { pushPanel, updatePanel } from "../../../../../actions/panelActions";
import TItemCard from "../../../../../components/TItemCard/TItemCard";
import usePriceInfo from "../../../../../hooks/usePriceInfo";
import useScrollReset from "../../../../../hooks/useScrollReset";
import { panel_names } from "../../../../../utils/Config";
import {
LOG_CONTEXT_NAME,
LOG_MESSAGE_ID,
panel_names,
} from "../../../../../utils/Config";
import css from "./ThemeCurationProductListItem.module.less";
import { sendLogThemeProduct } from "../../../../../actions/logActions";
@@ -146,6 +150,19 @@ export default function ThemeCurationProductListItem({
productId={prdtId}
productName={prdtNm}
offerInfo={offerInfo}
curationId={themeMenuShelfInfo?.curationId}
curationTitle={themeMenuShelfInfo?.curationNm}
contentId={prdtId}
contentTitle={prdtNm}
shelfId={themeMenuShelfInfo?.shelfInfos[contentsIndex]?.shelfId}
shelfLocation={
themeMenuShelfInfo?.shelfInfos[contentsIndex]?.shelfExpsOrd
}
shelfTitle={themeMenuShelfInfo?.shelfInfos[contentsIndex]?.shelfNm}
patnerName={themeProductInfosItem?.patncNm}
order={themeProductInfosItem?.prdtExpsOrd}
contextName={LOG_CONTEXT_NAME.THEME_CURATION}
messageId={LOG_MESSAGE_ID.SHELF_CLICK}
/>
</li>
);