pb-sxp-ui 1.20.8 → 1.20.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/index.cjs +181 -257
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.js +181 -257
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.cjs +7 -7
  6. package/dist/index.min.cjs.map +1 -1
  7. package/dist/index.min.js +7 -7
  8. package/dist/index.min.js.map +1 -1
  9. package/dist/pb-ui.js +181 -257
  10. package/dist/pb-ui.js.map +1 -1
  11. package/dist/pb-ui.min.js +7 -7
  12. package/dist/pb-ui.min.js.map +1 -1
  13. package/es/core/components/DiyPortalPreview/VideoWidget.js +8 -10
  14. package/es/core/components/SxpPageRender/LikeButton/index.js +18 -20
  15. package/es/core/components/SxpPageRender/PictureGroup/index.d.ts +0 -5
  16. package/es/core/components/SxpPageRender/PictureGroup/index.js +13 -39
  17. package/es/core/components/SxpPageRender/VideoWidget/index.js +46 -33
  18. package/es/core/components/SxpPageRender/WaterFall/index.js +3 -4
  19. package/es/core/components/SxpPageRender/index.js +40 -56
  20. package/es/core/context/SxpDataSourceProvider.d.ts +12 -5
  21. package/es/core/context/SxpDataSourceProvider.js +47 -90
  22. package/es/core/hooks/useEventReport.js +5 -6
  23. package/lib/core/components/DiyPortalPreview/VideoWidget.js +8 -10
  24. package/lib/core/components/SxpPageRender/LikeButton/index.js +18 -20
  25. package/lib/core/components/SxpPageRender/PictureGroup/index.d.ts +0 -5
  26. package/lib/core/components/SxpPageRender/PictureGroup/index.js +12 -38
  27. package/lib/core/components/SxpPageRender/VideoWidget/index.js +46 -33
  28. package/lib/core/components/SxpPageRender/WaterFall/index.js +3 -4
  29. package/lib/core/components/SxpPageRender/index.js +40 -56
  30. package/lib/core/context/SxpDataSourceProvider.d.ts +12 -5
  31. package/lib/core/context/SxpDataSourceProvider.js +47 -90
  32. package/lib/core/hooks/useEventReport.js +5 -6
  33. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -667,7 +667,6 @@ const DEFAULT_TAG = 'FOR U';
667
667
  const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent = true, maxSize, defaultSize, isPreview = false, sxpParameter, appDomain, hashTagSize, loadingImage, isOpenHashTag = false, enabledMetaConversionApi = false, consentHeight, consentWidth, isOpenConsent = false, isEditor = false, utmParameter, channelQueryList, data, dataList, isDiyH5, onUpdateSchema, onUpdateChannel }) => {
668
668
  var _a, _b, _c, _d, _e;
669
669
  const [rtcList, setRtcList] = React.useState([]);
670
- const [firstRtcList, setFirstRtcList] = React.useState([]);
671
670
  const [tagList, setTagList] = React.useState([]);
672
671
  const [loading, setLoading] = React.useState(true);
673
672
  const [curReqInfo, setCurReqInfo] = React.useState({ rtc: '', requestId: '' });
@@ -699,10 +698,6 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
699
698
  const [chatlabsId, setChatlabsId] = React.useState();
700
699
  const finalPageData = React.useMemo(() => pageData !== null && pageData !== void 0 ? pageData : data, [pageData, data]);
701
700
  const pixelPvStatusRef = React.useRef(false);
702
- const isDiyPage = React.useMemo(() => {
703
- var _a, _b, _c;
704
- return isDiyH5 && !((_c = (_b = (_a = finalPageData === null || finalPageData === void 0 ? void 0 : finalPageData.data) === null || _a === void 0 ? void 0 : _a.sxpPageConf) === null || _b === void 0 ? void 0 : _b.globalConfig) === null || _c === void 0 ? void 0 : _c.enablePreview);
705
- }, [isDiyH5, finalPageData]);
706
701
  React.useEffect(() => {
707
702
  var _a, _b;
708
703
  setGlobalConfig((_b = (_a = data === null || data === void 0 ? void 0 : data.data) === null || _a === void 0 ? void 0 : _a.sxpPageConf) === null || _b === void 0 ? void 0 : _b.globalConfig);
@@ -808,7 +803,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
808
803
  };
809
804
  // bff API 请求方法
810
805
  const bffFetch = React.useCallback((path, options, isBota = true) => {
811
- var _a, _b;
806
+ var _a;
812
807
  if (!bffDataSource)
813
808
  return;
814
809
  const url = bffDataSource.url;
@@ -821,9 +816,8 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
821
816
  val.split('=')[0];
822
817
  val.split('=')[1];
823
818
  });
824
- options.body = Object.assign(Object.assign({}, options.body), { productUserId: fakeUserId });
825
819
  return window
826
- .fetch(`${url}/api/${path}`, Object.assign({ headers: Object.assign({ 'Content-Type': 'application/json', 'x-user-id': fakeUserId, 'tenant-id': (_b = bffDataSource === null || bffDataSource === void 0 ? void 0 : bffDataSource.headers) === null || _b === void 0 ? void 0 : _b['x-app-id'] }, bffDataSource.headers), method: options.method, body: options.type === 'beacon' && isBota
820
+ .fetch(`${url}/api/${path}`, Object.assign({ headers: Object.assign({ 'Content-Type': 'application/json', 'x-user-id': fakeUserId }, bffDataSource.headers), method: options.method, body: options.type === 'beacon' && isBota
827
821
  ? JSON.stringify({
828
822
  body: btoa(encodeURIComponent(JSON.stringify(Object.assign(Object.assign(Object.assign({}, options.body), bffDataSource.headers), { 'x-user-id': fakeUserId }))))
829
823
  })
@@ -1108,8 +1102,8 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1108
1102
  }, [bffDataSource]);
1109
1103
  // 获取推荐视频数据
1110
1104
  const getRecommendVideos = React.useCallback((query) => __awaiter(void 0, void 0, void 0, function* () {
1111
- var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x;
1112
- query = Object.assign(Object.assign({ maxSize: (_f = query === null || query === void 0 ? void 0 : query.maxSize) !== null && _f !== void 0 ? _f : maxSize, defaultSize: (_g = query === null || query === void 0 ? void 0 : query.defaultSize) !== null && _g !== void 0 ? _g : defaultSize, hashTag: query === null || query === void 0 ? void 0 : query.hashTag, traceInfo: query === null || query === void 0 ? void 0 : query.traceInfo, themeTag: query === null || query === void 0 ? void 0 : query.themeTag, pageNum: query === null || query === void 0 ? void 0 : query.pageNum, contentFilter: query === null || query === void 0 ? void 0 : query.contentFilter, productFilter: query === null || query === void 0 ? void 0 : query.productFilter }, (chatlabsId && { chatlabsId })), (isDiyPage && { type: 'story' }));
1105
+ var _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
1106
+ query = Object.assign(Object.assign({ maxSize: (_f = query === null || query === void 0 ? void 0 : query.maxSize) !== null && _f !== void 0 ? _f : maxSize, defaultSize: (_g = query === null || query === void 0 ? void 0 : query.defaultSize) !== null && _g !== void 0 ? _g : defaultSize, hashTag: query === null || query === void 0 ? void 0 : query.hashTag, traceInfo: query === null || query === void 0 ? void 0 : query.traceInfo, themeTag: query === null || query === void 0 ? void 0 : query.themeTag, pageNum: query === null || query === void 0 ? void 0 : query.pageNum, contentFilter: query === null || query === void 0 ? void 0 : query.contentFilter, productFilter: query === null || query === void 0 ? void 0 : query.productFilter }, (chatlabsId && { chatlabsId })), (isDiyH5 && { type: 'story' }));
1113
1107
  if (channel) {
1114
1108
  query = Object.assign(Object.assign({}, query), { channel: decodeURIComponent(channel) });
1115
1109
  }
@@ -1122,10 +1116,9 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1122
1116
  if (val)
1123
1117
  query = Object.assign(Object.assign({}, query), { channel: decodeURIComponent(val) });
1124
1118
  }
1125
- const isDiy = isDiyH5 && ((_o = (_m = (_l = finalPageData === null || finalPageData === void 0 ? void 0 : finalPageData.data) === null || _l === void 0 ? void 0 : _l.sxpPageConf) === null || _m === void 0 ? void 0 : _m.globalConfig) === null || _o === void 0 ? void 0 : _o.enablePreview);
1126
1119
  if (isEditor) {
1127
1120
  let pageNum = 1;
1128
- query = Object.assign(Object.assign(Object.assign(Object.assign({}, query), { directPage: true, level: 1 }), (!utmVal && channelQueryList && (channelQueryList === null || channelQueryList === void 0 ? void 0 : channelQueryList.length) > 0 && { channel: channelQueryList === null || channelQueryList === void 0 ? void 0 : channelQueryList[0] })), (isDiy && { maxRecs: query === null || query === void 0 ? void 0 : query.maxSize }));
1121
+ query = Object.assign(Object.assign(Object.assign({}, query), { directPage: true, level: 1 }), (!utmVal && channelQueryList && (channelQueryList === null || channelQueryList === void 0 ? void 0 : channelQueryList.length) > 0 && { channel: channelQueryList === null || channelQueryList === void 0 ? void 0 : channelQueryList[0] }));
1129
1122
  if (!(query === null || query === void 0 ? void 0 : query.channel) || isInit.current) {
1130
1123
  return undefined;
1131
1124
  }
@@ -1133,24 +1126,19 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1133
1126
  let list = [];
1134
1127
  let result = null;
1135
1128
  const recurveRecList = (query) => __awaiter(void 0, void 0, void 0, function* () {
1136
- var _y, _z, _0, _1, _2, _3;
1129
+ var _v, _w, _x, _y, _z, _0;
1137
1130
  query.pageNum = pageNum;
1138
- result = isDiyH5
1139
- ? yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v3/recommend/direct/page/view', { method: 'POST', body: query }))
1140
- : yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('recommend/direct_page', { method: 'POST', body: query }));
1131
+ result = yield (bffFetchAdmin === null || bffFetchAdmin === void 0 ? void 0 : bffFetchAdmin('recommend/direct_page', { method: 'POST', body: query }));
1141
1132
  if (!(result === null || result === void 0 ? void 0 : result.success)) {
1142
1133
  return undefined;
1143
1134
  }
1144
1135
  setLoading(false);
1145
- list = list.concat((_1 = (_0 = (_z = (_y = result === null || result === void 0 ? void 0 : result.data) === null || _y === void 0 ? void 0 : _y.recList) === null || _z === void 0 ? void 0 : _z.filter) === null || _0 === void 0 ? void 0 : _0.call(_z, (item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video))) !== null && _1 !== void 0 ? _1 : []);
1136
+ list = list.concat((_y = (_x = (_w = (_v = result === null || result === void 0 ? void 0 : result.data) === null || _v === void 0 ? void 0 : _v.recList) === null || _w === void 0 ? void 0 : _w.filter) === null || _x === void 0 ? void 0 : _x.call(_w, (item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video))) !== null && _y !== void 0 ? _y : []);
1146
1137
  if ((rtcList === null || rtcList === void 0 ? void 0 : rtcList.length) === 0) {
1147
1138
  setRtcList(getFilterRecList(Object.assign(Object.assign({}, result === null || result === void 0 ? void 0 : result.data), { recList: list })));
1148
1139
  setCacheRtcList(getFilterRecList(Object.assign(Object.assign({}, result === null || result === void 0 ? void 0 : result.data), { recList: list })));
1149
- if (isDiyPage) {
1150
- setFirstRtcList(getFilterRecList(Object.assign(Object.assign({}, result === null || result === void 0 ? void 0 : result.data), { recList: list })));
1151
- }
1152
1140
  }
1153
- const isNotNullList = (_3 = (_2 = result === null || result === void 0 ? void 0 : result.data) === null || _2 === void 0 ? void 0 : _2.recList) === null || _3 === void 0 ? void 0 : _3.some((item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video));
1141
+ const isNotNullList = (_0 = (_z = result === null || result === void 0 ? void 0 : result.data) === null || _z === void 0 ? void 0 : _z.recList) === null || _0 === void 0 ? void 0 : _0.some((item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video));
1154
1142
  if (isNotNullList) {
1155
1143
  pageNum = pageNum + 1;
1156
1144
  yield recurveRecList(query);
@@ -1158,61 +1146,42 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1158
1146
  });
1159
1147
  yield recurveRecList(query);
1160
1148
  if (!(query === null || query === void 0 ? void 0 : query.hashTag) && result)
1161
- setCurReqInfo({ rtc: (_p = result === null || result === void 0 ? void 0 : result.data) === null || _p === void 0 ? void 0 : _p.rtc, requestId: (_q = result === null || result === void 0 ? void 0 : result.data) === null || _q === void 0 ? void 0 : _q.requestId });
1149
+ setCurReqInfo({ rtc: (_l = result === null || result === void 0 ? void 0 : result.data) === null || _l === void 0 ? void 0 : _l.rtc, requestId: (_m = result === null || result === void 0 ? void 0 : result.data) === null || _m === void 0 ? void 0 : _m.requestId });
1162
1150
  return Object.assign(Object.assign({}, result === null || result === void 0 ? void 0 : result.data), { recList: list });
1163
1151
  }
1164
1152
  if (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) {
1165
- query = Object.assign(Object.assign(Object.assign({}, query), { directPage: true, level: 1, pageNum: (_r = query === null || query === void 0 ? void 0 : query.pageNum) !== null && _r !== void 0 ? _r : 1 }), (isDiy && { maxRecs: query === null || query === void 0 ? void 0 : query.maxSize }));
1153
+ query = Object.assign(Object.assign({}, query), { directPage: true, level: 1, pageNum: (_o = query === null || query === void 0 ? void 0 : query.pageNum) !== null && _o !== void 0 ? _o : 1 });
1166
1154
  }
1167
- const result = isDiy
1168
- ? yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v3/recommend/direct/page/view', { method: 'POST', body: query }))
1169
- : yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/list', {
1170
- method: 'POST',
1171
- body: query
1172
- }));
1155
+ const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/list', {
1156
+ method: 'POST',
1157
+ body: query
1158
+ }));
1173
1159
  if (!(result === null || result === void 0 ? void 0 : result.success)) {
1174
1160
  return undefined;
1175
1161
  }
1176
1162
  if (!(query === null || query === void 0 ? void 0 : query.hashTag))
1177
1163
  setCurReqInfo({ rtc: result.data.rtc, requestId: result.data.requestId });
1178
1164
  if ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) && !isEditor) {
1179
- const isNotNullList = (_t = (_s = result === null || result === void 0 ? void 0 : result.data) === null || _s === void 0 ? void 0 : _s.recList) === null || _t === void 0 ? void 0 : _t.some((item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video));
1165
+ const isNotNullList = (_q = (_p = result === null || result === void 0 ? void 0 : result.data) === null || _p === void 0 ? void 0 : _p.recList) === null || _q === void 0 ? void 0 : _q.some((item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video));
1180
1166
  if (!isNotNullList) {
1181
1167
  setIsNoMoreData(true);
1182
1168
  }
1183
1169
  }
1184
1170
  let list = [];
1185
- list = list.concat((_x = (_w = (_v = (_u = result === null || result === void 0 ? void 0 : result.data) === null || _u === void 0 ? void 0 : _u.recList) === null || _v === void 0 ? void 0 : _v.filter) === null || _w === void 0 ? void 0 : _w.call(_v, (item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video))) !== null && _x !== void 0 ? _x : []);
1171
+ list = list.concat((_u = (_t = (_s = (_r = result === null || result === void 0 ? void 0 : result.data) === null || _r === void 0 ? void 0 : _r.recList) === null || _s === void 0 ? void 0 : _s.filter) === null || _t === void 0 ? void 0 : _t.call(_s, (item) => (item === null || item === void 0 ? void 0 : item.product) || (item === null || item === void 0 ? void 0 : item.video))) !== null && _u !== void 0 ? _u : []);
1186
1172
  return Object.assign(Object.assign({}, result.data), { recList: list });
1187
- }), [
1188
- bffFetch,
1189
- utmVal,
1190
- maxSize,
1191
- defaultSize,
1192
- channelQueryList,
1193
- channel,
1194
- chatlabsId,
1195
- bffFetchAdmin,
1196
- isDiyPage,
1197
- finalPageData,
1198
- isDiyH5
1199
- ]);
1173
+ }), [bffFetch, utmVal, maxSize, defaultSize, channelQueryList, channel, chatlabsId, bffFetchAdmin]);
1200
1174
  const loadVideos = React.useCallback((pageNum) => __awaiter(void 0, void 0, void 0, function* () {
1201
- var _4, _5, _6, _7;
1175
+ var _1, _2, _3, _4;
1202
1176
  if (rtcList.length <= 0) {
1203
1177
  return;
1204
1178
  }
1205
- if (isDiyPage && (firstRtcList === null || firstRtcList === void 0 ? void 0 : firstRtcList.length) > 0) {
1206
- setRtcList(rtcList.concat(firstRtcList));
1207
- setCacheRtcList(cacheRtcList.concat(firstRtcList));
1208
- return;
1209
- }
1210
1179
  const lastItem = rtcList === null || rtcList === void 0 ? void 0 : rtcList[(rtcList === null || rtcList === void 0 ? void 0 : rtcList.length) - 1];
1211
- const data = yield getRecommendVideos(Object.assign(Object.assign(Object.assign(Object.assign({ hashTag: waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag }, (((_4 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.product) === null || _4 === void 0 ? void 0 : _4.itemId) && { productFilter: [(_5 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.product) === null || _5 === void 0 ? void 0 : _5.itemId] })), (((_6 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.video) === null || _6 === void 0 ? void 0 : _6.itemId) && { contentFilter: [(_7 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.video) === null || _7 === void 0 ? void 0 : _7.itemId] })), { themeTag: themeTag.current }), ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) && !isEditor && { pageNum })));
1180
+ const data = yield getRecommendVideos(Object.assign(Object.assign(Object.assign(Object.assign({ hashTag: waterFallData === null || waterFallData === void 0 ? void 0 : waterFallData.hashTag }, (((_1 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.product) === null || _1 === void 0 ? void 0 : _1.itemId) && { productFilter: [(_2 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.product) === null || _2 === void 0 ? void 0 : _2.itemId] })), (((_3 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.video) === null || _3 === void 0 ? void 0 : _3.itemId) && { contentFilter: [(_4 = lastItem === null || lastItem === void 0 ? void 0 : lastItem.video) === null || _4 === void 0 ? void 0 : _4.itemId] })), { themeTag: themeTag.current }), ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview) && !isEditor && { pageNum })));
1212
1181
  setRtcList(rtcList.concat(getFilterRecList(data)));
1213
1182
  setCacheRtcList(cacheRtcList.concat(getFilterRecList(data)));
1214
1183
  return data;
1215
- }), [getRecommendVideos, rtcList, waterFallData, cacheRtcList, isDiyPage, firstRtcList]);
1184
+ }), [getRecommendVideos, rtcList, waterFallData, cacheRtcList]);
1216
1185
  const refreshFeSession = React.useCallback((enableReSid, event) => {
1217
1186
  var _a, _b, _c, _d, _e;
1218
1187
  let expire = false;
@@ -1243,8 +1212,8 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1243
1212
  // 用户信息都是公共的
1244
1213
  if (!userInfo) {
1245
1214
  userInfo = {
1246
- productUserId: fakeUserId // 后端逻辑会从请求头获取,所以不需要传
1247
- // tpChannelId: 'H5' // 后端处理
1215
+ // productUserId: fakeUserId, // 后端逻辑会从请求头获取,所以不需要传
1216
+ // tpChannelId: 'H5' // 后端处理
1248
1217
  };
1249
1218
  }
1250
1219
  const sessionID = storeAndLoadFeSessionId();
@@ -1278,11 +1247,10 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1278
1247
  layoutVariantId,
1279
1248
  globalConfig,
1280
1249
  playbookType,
1281
- bffDataSource,
1282
- fakeUserId
1250
+ bffDataSource
1283
1251
  ]);
1284
1252
  const getEventParamsByJson = React.useCallback((_a) => {
1285
- var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
1253
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
1286
1254
  var { json, product = [], rec, contentType = 'post', position, eventName } = _a, props = __rest(_a, ["json", "product", "rec", "contentType", "position", "eventName"]);
1287
1255
  const jsonParams = lodash.cloneDeep(json);
1288
1256
  const urlParams = new URLSearchParams(window.location.search);
@@ -1299,17 +1267,17 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1299
1267
  // funnel_type
1300
1268
  content_ids: [(_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.itemId, ...((_f = product === null || product === void 0 ? void 0 : product.map((item) => item === null || item === void 0 ? void 0 : item.itemId)) !== null && _f !== void 0 ? _f : [])], content_type: contentType, content_name: (_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.title, total_posts: rtcList === null || rtcList === void 0 ? void 0 : rtcList.length, position,
1301
1269
  // content_category
1302
- currency: (_h = product === null || product === void 0 ? void 0 : product[0]) === null || _h === void 0 ? void 0 : _h.currency, contents: (_j = product === null || product === void 0 ? void 0 : product.map((item) => ({
1270
+ currency: (_k = (_j = (_h = product === null || product === void 0 ? void 0 : product[0]) === null || _h === void 0 ? void 0 : _h.currency) === null || _j === void 0 ? void 0 : _j.split('-')) === null || _k === void 0 ? void 0 : _k[0], contents: (_l = product === null || product === void 0 ? void 0 : product.map((item) => ({
1303
1271
  id: item === null || item === void 0 ? void 0 : item.itemId,
1304
- item_price: item === null || item === void 0 ? void 0 : item.price
1305
- }))) !== null && _j !== void 0 ? _j : [], image_urls: (_l = (_k = rec === null || rec === void 0 ? void 0 : rec.video) === null || _k === void 0 ? void 0 : _k.imgUrls) !== null && _l !== void 0 ? _l : [], video_urls: (_m = rec === null || rec === void 0 ? void 0 : rec.video) === null || _m === void 0 ? void 0 : _m.url,
1272
+ value: item === null || item === void 0 ? void 0 : item.price
1273
+ }))) !== null && _l !== void 0 ? _l : [], image_urls: (_o = (_m = rec === null || rec === void 0 ? void 0 : rec.video) === null || _m === void 0 ? void 0 : _m.imgUrls) !== null && _o !== void 0 ? _o : [], video_urls: (_p = rec === null || rec === void 0 ? void 0 : rec.video) === null || _p === void 0 ? void 0 : _p.url,
1306
1274
  // prompt
1307
1275
  headline: getUrlParamByKey('headline'), scene: getUrlParamByKey('scene'), campaign_id: getUrlParamByKey('campaign_id'), ad_id: getUrlParamByKey('ad_id'), utm_source: getUrlParamByKey('utm_source'), utm_medium: getUrlParamByKey('utm_medium'), utm_campaign: getUrlParamByKey('utm_campaign'), utm_content: getUrlParamByKey('utm_content') }, props);
1308
- if (!((_o = rec === null || rec === void 0 ? void 0 : rec.video) === null || _o === void 0 ? void 0 : _o.url) &&
1309
- !((_q = (_p = rec === null || rec === void 0 ? void 0 : rec.video) === null || _p === void 0 ? void 0 : _p.imgUrls) === null || _q === void 0 ? void 0 : _q.length) &&
1276
+ if (!((_q = rec === null || rec === void 0 ? void 0 : rec.video) === null || _q === void 0 ? void 0 : _q.url) &&
1277
+ !((_s = (_r = rec === null || rec === void 0 ? void 0 : rec.video) === null || _r === void 0 ? void 0 : _r.imgUrls) === null || _s === void 0 ? void 0 : _s.length) &&
1310
1278
  (rec === null || rec === void 0 ? void 0 : rec.product) &&
1311
1279
  Array.isArray(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) &&
1312
- ((_r = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _r === void 0 ? void 0 : _r.length) > 0) {
1280
+ ((_t = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _t === void 0 ? void 0 : _t.length) > 0) {
1313
1281
  const product = rec === null || rec === void 0 ? void 0 : rec.product;
1314
1282
  const productCustomData = {
1315
1283
  content_ids: [product === null || product === void 0 ? void 0 : product.itemId],
@@ -1318,10 +1286,10 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1318
1286
  contents: [
1319
1287
  {
1320
1288
  id: product === null || product === void 0 ? void 0 : product.itemId,
1321
- item_price: product === null || product === void 0 ? void 0 : product.price
1289
+ value: product === null || product === void 0 ? void 0 : product.price
1322
1290
  }
1323
1291
  ],
1324
- image_urls: (_s = product.homePage) !== null && _s !== void 0 ? _s : []
1292
+ image_urls: (_u = product.homePage) !== null && _u !== void 0 ? _u : []
1325
1293
  };
1326
1294
  customData = Object.assign(Object.assign({}, customData), productCustomData);
1327
1295
  }
@@ -1465,40 +1433,38 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1465
1433
  }
1466
1434
  }, [bffFetch, enableReportEvent, enabledMetaConversionApi, globalConfig, bffDataSource, getEventParamsByJson]);
1467
1435
  const bffMutateLike = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
1468
- body = Object.assign(Object.assign({}, body), { productUserId: fakeUserId });
1469
1436
  const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/like', { method: 'POST', body }));
1470
1437
  return res === null || res === void 0 ? void 0 : res.success;
1471
- }), [bffFetch, fakeUserId]);
1438
+ }), [bffFetch]);
1472
1439
  const bffMutateUnlike = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
1473
- body = Object.assign(Object.assign({}, body), { productUserId: fakeUserId });
1474
1440
  const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/recommend/unlike', { method: 'POST', body }));
1475
1441
  return res === null || res === void 0 ? void 0 : res.success;
1476
- }), [bffFetch, fakeUserId]);
1442
+ }), [bffFetch]);
1477
1443
  const bffSubmitForm = React.useCallback((body) => __awaiter(void 0, void 0, void 0, function* () {
1478
1444
  const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/customform', { method: 'POST', body }));
1479
1445
  return res === null || res === void 0 ? void 0 : res.success;
1480
1446
  }), [bffFetch]);
1481
1447
  // 获取 Tag
1482
1448
  const bffGetTagList = React.useCallback((data) => __awaiter(void 0, void 0, void 0, function* () {
1483
- var _8, _9, _10, _11, _12, _13, _14, _15;
1484
- const isShowTag = !!((_10 = (_9 = (_8 = data === null || data === void 0 ? void 0 : data.data) === null || _8 === void 0 ? void 0 : _8.sxpPageConf) === null || _9 === void 0 ? void 0 : _9.globalConfig) === null || _10 === void 0 ? void 0 : _10.isShowTag);
1449
+ var _5, _6, _7, _8, _9, _10, _11, _12;
1450
+ const isShowTag = !!((_7 = (_6 = (_5 = data === null || data === void 0 ? void 0 : data.data) === null || _5 === void 0 ? void 0 : _5.sxpPageConf) === null || _6 === void 0 ? void 0 : _6.globalConfig) === null || _7 === void 0 ? void 0 : _7.isShowTag);
1485
1451
  if (!utmVal || !isShowTag)
1486
1452
  return;
1487
1453
  try {
1488
- const val = (_13 = (_12 = (_11 = splitUrlParams(utmVal)) === null || _11 === void 0 ? void 0 : _11.filter((val) => {
1454
+ const val = (_10 = (_9 = (_8 = splitUrlParams(utmVal)) === null || _8 === void 0 ? void 0 : _8.filter((val) => {
1489
1455
  var _a, _b;
1490
1456
  const key = val.split('=')[0];
1491
1457
  return (_b = ((_a = utmParameter === null || utmParameter === void 0 ? void 0 : utmParameter.channels) !== null && _a !== void 0 ? _a : [])) === null || _b === void 0 ? void 0 : _b.includes(key);
1492
- })) === null || _12 === void 0 ? void 0 : _12.join('&')) !== null && _13 !== void 0 ? _13 : '';
1458
+ })) === null || _9 === void 0 ? void 0 : _9.join('&')) !== null && _10 !== void 0 ? _10 : '';
1493
1459
  const result = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/tag/list', { method: 'GET', query: { channel: decodeURIComponent(val) } }));
1494
- setTagList((_15 = (_14 = result === null || result === void 0 ? void 0 : result.data) === null || _14 === void 0 ? void 0 : _14.tags) !== null && _15 !== void 0 ? _15 : []);
1460
+ setTagList((_12 = (_11 = result === null || result === void 0 ? void 0 : result.data) === null || _11 === void 0 ? void 0 : _11.tags) !== null && _12 !== void 0 ? _12 : []);
1495
1461
  }
1496
1462
  catch (e) {
1497
1463
  console.log('e', e);
1498
1464
  }
1499
1465
  }), [bffFetch, utmVal]);
1500
1466
  const ctaEvent = React.useCallback((eventInfo, rec, product, position, ctaActionType, targetUrl, contentType) => {
1501
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14;
1467
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11;
1502
1468
  const cta = product === null || product === void 0 ? void 0 : product.bindCta;
1503
1469
  const isProd = ((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.bindProduct) || (((_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.bindProducts) && ((_d = (_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.bindProducts) === null || _d === void 0 ? void 0 : _d.length) > 0);
1504
1470
  let fromKName = '';
@@ -1516,7 +1482,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1516
1482
  }
1517
1483
  const contentTags = (_p = (_m = (_h = product === null || product === void 0 ? void 0 : product.tags) !== null && _h !== void 0 ? _h : (_l = (_k = (_j = rec === null || rec === void 0 ? void 0 : rec.video) === null || _j === void 0 ? void 0 : _j.bindProducts) === null || _k === void 0 ? void 0 : _k[0]) === null || _l === void 0 ? void 0 : _l.tags) !== null && _m !== void 0 ? _m : (_o = rec === null || rec === void 0 ? void 0 : rec.video) === null || _o === void 0 ? void 0 : _o.tags) !== null && _p !== void 0 ? _p : (_q = rec === null || rec === void 0 ? void 0 : rec.product) === null || _q === void 0 ? void 0 : _q.tags;
1518
1484
  bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
1519
- eventInfo: Object.assign(Object.assign({}, eventInfo), { ctaId: (_r = cta === null || cta === void 0 ? void 0 : cta.itemId) !== null && _r !== void 0 ? _r : '', ctaName: (_s = cta === null || cta === void 0 ? void 0 : cta.title) !== null && _s !== void 0 ? _s : '', contentTags: contentTags ? JSON.stringify(contentTags) : '', position: position + '', contentId: (_u = (_t = rec === null || rec === void 0 ? void 0 : rec.video) === null || _t === void 0 ? void 0 : _t.itemId) !== null && _u !== void 0 ? _u : '', sceneId: (_x = (_w = (_v = rec === null || rec === void 0 ? void 0 : rec.video) === null || _v === void 0 ? void 0 : _v.scene) === null || _w === void 0 ? void 0 : _w.sceneId) !== null && _x !== void 0 ? _x : '', productId: isProd ? product === null || product === void 0 ? void 0 : product.itemId : '', traceInfo: (_13 = (_10 = (_5 = (_1 = (_y = cta === null || cta === void 0 ? void 0 : cta.traceInfo) !== null && _y !== void 0 ? _y : (_0 = (_z = rec === null || rec === void 0 ? void 0 : rec.video) === null || _z === void 0 ? void 0 : _z.bindCta) === null || _0 === void 0 ? void 0 : _0.traceInfo) !== null && _1 !== void 0 ? _1 : (_4 = (_3 = (_2 = rec === null || rec === void 0 ? void 0 : rec.video) === null || _2 === void 0 ? void 0 : _2.bindProduct) === null || _3 === void 0 ? void 0 : _3.bindCta) === null || _4 === void 0 ? void 0 : _4.traceInfo) !== null && _5 !== void 0 ? _5 : (_9 = (_8 = (_7 = (_6 = rec === null || rec === void 0 ? void 0 : rec.video) === null || _6 === void 0 ? void 0 : _6.bindProducts) === null || _7 === void 0 ? void 0 : _7[0]) === null || _8 === void 0 ? void 0 : _8.bindCta) === null || _9 === void 0 ? void 0 : _9.traceInfo) !== null && _10 !== void 0 ? _10 : (_12 = (_11 = rec === null || rec === void 0 ? void 0 : rec.product) === null || _11 === void 0 ? void 0 : _11.bindCta) === null || _12 === void 0 ? void 0 : _12.traceInfo) !== null && _13 !== void 0 ? _13 : '', fromKName, fromKPage: (_14 = location === null || location === void 0 ? void 0 : location.href) !== null && _14 !== void 0 ? _14 : '', contentFormat })
1485
+ eventInfo: Object.assign(Object.assign({}, eventInfo), { ctaId: (_r = cta === null || cta === void 0 ? void 0 : cta.itemId) !== null && _r !== void 0 ? _r : '', ctaName: (_s = cta === null || cta === void 0 ? void 0 : cta.title) !== null && _s !== void 0 ? _s : '', contentTags: contentTags ? JSON.stringify(contentTags) : '', position: position + '', contentId: (_u = (_t = rec === null || rec === void 0 ? void 0 : rec.video) === null || _t === void 0 ? void 0 : _t.itemId) !== null && _u !== void 0 ? _u : '', productId: isProd ? product === null || product === void 0 ? void 0 : product.itemId : '', traceInfo: (_10 = (_7 = (_2 = (_y = (_v = cta === null || cta === void 0 ? void 0 : cta.traceInfo) !== null && _v !== void 0 ? _v : (_x = (_w = rec === null || rec === void 0 ? void 0 : rec.video) === null || _w === void 0 ? void 0 : _w.bindCta) === null || _x === void 0 ? void 0 : _x.traceInfo) !== null && _y !== void 0 ? _y : (_1 = (_0 = (_z = rec === null || rec === void 0 ? void 0 : rec.video) === null || _z === void 0 ? void 0 : _z.bindProduct) === null || _0 === void 0 ? void 0 : _0.bindCta) === null || _1 === void 0 ? void 0 : _1.traceInfo) !== null && _2 !== void 0 ? _2 : (_6 = (_5 = (_4 = (_3 = rec === null || rec === void 0 ? void 0 : rec.video) === null || _3 === void 0 ? void 0 : _3.bindProducts) === null || _4 === void 0 ? void 0 : _4[0]) === null || _5 === void 0 ? void 0 : _5.bindCta) === null || _6 === void 0 ? void 0 : _6.traceInfo) !== null && _7 !== void 0 ? _7 : (_9 = (_8 = rec === null || rec === void 0 ? void 0 : rec.product) === null || _8 === void 0 ? void 0 : _8.bindCta) === null || _9 === void 0 ? void 0 : _9.traceInfo) !== null && _10 !== void 0 ? _10 : '', fromKName, fromKPage: (_11 = location === null || location === void 0 ? void 0 : location.href) !== null && _11 !== void 0 ? _11 : '', contentFormat })
1520
1486
  });
1521
1487
  }, [bffEventReport, isFromHashtag]);
1522
1488
  const h5EnterLink = React.useCallback(() => {
@@ -1540,10 +1506,10 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1540
1506
  });
1541
1507
  }, [bffEventReport]);
1542
1508
  const getAccount = React.useCallback(() => __awaiter(void 0, void 0, void 0, function* () {
1543
- var _16, _17;
1509
+ var _13, _14;
1544
1510
  const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/account', { method: 'GET' }));
1545
- setChatlabsId((_16 = res === null || res === void 0 ? void 0 : res.data) === null || _16 === void 0 ? void 0 : _16.chatLabsId);
1546
- return ((_17 = res === null || res === void 0 ? void 0 : res.data) === null || _17 === void 0 ? void 0 : _17.consentResult) === 'true';
1511
+ setChatlabsId((_13 = res === null || res === void 0 ? void 0 : res.data) === null || _13 === void 0 ? void 0 : _13.chatLabsId);
1512
+ return ((_14 = res === null || res === void 0 ? void 0 : res.data) === null || _14 === void 0 ? void 0 : _14.consentResult) === 'true';
1547
1513
  }), [bffFetch]);
1548
1514
  const accountSonsent = React.useCallback((consentResult) => __awaiter(void 0, void 0, void 0, function* () {
1549
1515
  const res = yield (bffFetch === null || bffFetch === void 0 ? void 0 : bffFetch('v1/account/consent', {
@@ -1607,9 +1573,6 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1607
1573
  }
1608
1574
  setRtcList(list);
1609
1575
  setCacheRtcList(list);
1610
- if (isDiyPage) {
1611
- setFirstRtcList(list);
1612
- }
1613
1576
  bffGetTagList(curData !== null && curData !== void 0 ? curData : finalPageData);
1614
1577
  if (channel) {
1615
1578
  const item = list === null || list === void 0 ? void 0 : list[0];
@@ -1629,7 +1592,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1629
1592
  });
1630
1593
  setLoading(false);
1631
1594
  });
1632
- }, [isShowConsent, channel, isDiyPage]);
1595
+ }, [isShowConsent, channel]);
1633
1596
  // cms预览
1634
1597
  React.useEffect(() => {
1635
1598
  if (!isPreview)
@@ -1645,15 +1608,12 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1645
1608
  }
1646
1609
  setRtcList(list);
1647
1610
  setCacheRtcList(list);
1648
- if (isDiyPage) {
1649
- setFirstRtcList(list);
1650
- }
1651
1611
  }
1652
1612
  })
1653
1613
  .finally(() => {
1654
1614
  setLoading(false);
1655
1615
  });
1656
- }, [getRecommendVideos, bffGetTagList, channel, isDiyPage]);
1616
+ }, [getRecommendVideos, bffGetTagList, channel]);
1657
1617
  const defaultLoadingImage = useIconLink('/pb_static/a65d23c5893c49d7aaaa81681d3179e2.gif', appDomain);
1658
1618
  return (React.createElement(SxpDataSourceContext.Provider, { value: {
1659
1619
  rtcList,
@@ -1711,8 +1671,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
1711
1671
  refreshFeSession,
1712
1672
  getAccount,
1713
1673
  accountSonsent,
1714
- isDiyH5: isDiyPage,
1715
- firstRtcList,
1674
+ isDiyH5,
1716
1675
  pixelPvStatusRef
1717
1676
  } }, isShowConsent ? (React.createElement(Consent$4, Object.assign({}, (_e = (_d = (_c = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.consent) === null || _c === void 0 ? void 0 : _c[0]) === null || _d === void 0 ? void 0 : _d.item) === null || _e === void 0 ? void 0 : _e.props))) : (render({
1718
1677
  rtcList,
@@ -2174,14 +2133,14 @@ var settingRender$f = [
2174
2133
  * @Author: binruan@chatlabs.com
2175
2134
  * @Date: 2024-03-12 10:59:06
2176
2135
  * @LastEditors: binruan@chatlabs.com
2177
- * @LastEditTime: 2025-05-09 15:30:59
2136
+ * @LastEditTime: 2024-11-28 11:17:16
2178
2137
  * @FilePath: \pb-sxp-ui\src\core\hooks\useEventReport.ts
2179
2138
  *
2180
2139
  */
2181
2140
  function useEventReport() {
2182
2141
  const { bffEventReport, popupDetailData, isFromHashtag, eventTimeList, setEventTimeList } = useSxpDataSource();
2183
2142
  const jumpToWeb = React.useCallback((e, data, product, cta, position, traceInfo) => {
2184
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16;
2143
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13;
2185
2144
  const i = eventTimeList === null || eventTimeList === void 0 ? void 0 : eventTimeList.findIndex((item) => item.target === (e === null || e === void 0 ? void 0 : e.target));
2186
2145
  if (i !== -1) {
2187
2146
  return;
@@ -2214,11 +2173,11 @@ function useEventReport() {
2214
2173
  contentFormat = 'image';
2215
2174
  }
2216
2175
  bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
2217
- eventInfo: Object.assign({ eventSubject: 'jumpToWeb', eventDescription: 'User jumped to website', productId: (_v = product === null || product === void 0 ? void 0 : product.itemId) !== null && _v !== void 0 ? _v : '', productName: (_w = product === null || product === void 0 ? void 0 : product.title) !== null && _w !== void 0 ? _w : '', price: (product === null || product === void 0 ? void 0 : product.price) ? (product === null || product === void 0 ? void 0 : product.price) + '' : '0', productCollection: (_x = product === null || product === void 0 ? void 0 : product.collection) !== null && _x !== void 0 ? _x : '', fromKName, fromKPage: location === null || location === void 0 ? void 0 : location.href, contentTags: contentTags ? JSON.stringify(contentTags) : '', position: position + '', contentId: (_z = (_y = data === null || data === void 0 ? void 0 : data.video) === null || _y === void 0 ? void 0 : _y.itemId) !== null && _z !== void 0 ? _z : '', sceneId: (_2 = (_1 = (_0 = data === null || data === void 0 ? void 0 : data.video) === null || _0 === void 0 ? void 0 : _0.scene) === null || _1 === void 0 ? void 0 : _1.sceneId) !== null && _2 !== void 0 ? _2 : '', ctatId: (_3 = cta === null || cta === void 0 ? void 0 : cta.itemId) !== null && _3 !== void 0 ? _3 : '', traceInfo: (_16 = (_13 = (_11 = (_7 = (_4 = traceInfo !== null && traceInfo !== void 0 ? traceInfo : product === null || product === void 0 ? void 0 : product.traceInfo) !== null && _4 !== void 0 ? _4 : (_6 = (_5 = data === null || data === void 0 ? void 0 : data.video) === null || _5 === void 0 ? void 0 : _5.bindProduct) === null || _6 === void 0 ? void 0 : _6.traceInfo) !== null && _7 !== void 0 ? _7 : (_10 = (_9 = (_8 = data === null || data === void 0 ? void 0 : data.video) === null || _8 === void 0 ? void 0 : _8.bindProducts) === null || _9 === void 0 ? void 0 : _9[0]) === null || _10 === void 0 ? void 0 : _10.traceInfo) !== null && _11 !== void 0 ? _11 : (_12 = data === null || data === void 0 ? void 0 : data.product) === null || _12 === void 0 ? void 0 : _12.traceInfo) !== null && _13 !== void 0 ? _13 : (_15 = (_14 = data === null || data === void 0 ? void 0 : data.video) === null || _14 === void 0 ? void 0 : _14.bindCta) === null || _15 === void 0 ? void 0 : _15.traceInfo) !== null && _16 !== void 0 ? _16 : '' }, (contentFormat && { contentFormat }))
2176
+ eventInfo: Object.assign({ eventSubject: 'jumpToWeb', eventDescription: 'User jumped to website', productId: (_v = product === null || product === void 0 ? void 0 : product.itemId) !== null && _v !== void 0 ? _v : '', productName: (_w = product === null || product === void 0 ? void 0 : product.title) !== null && _w !== void 0 ? _w : '', price: (product === null || product === void 0 ? void 0 : product.price) ? (product === null || product === void 0 ? void 0 : product.price) + '' : '0', productCollection: (_x = product === null || product === void 0 ? void 0 : product.collection) !== null && _x !== void 0 ? _x : '', fromKName, fromKPage: location === null || location === void 0 ? void 0 : location.href, contentTags: contentTags ? JSON.stringify(contentTags) : '', position: position + '', contentId: (_z = (_y = data === null || data === void 0 ? void 0 : data.video) === null || _y === void 0 ? void 0 : _y.itemId) !== null && _z !== void 0 ? _z : '', ctatId: (_0 = cta === null || cta === void 0 ? void 0 : cta.itemId) !== null && _0 !== void 0 ? _0 : '', traceInfo: (_13 = (_10 = (_8 = (_4 = (_1 = traceInfo !== null && traceInfo !== void 0 ? traceInfo : product === null || product === void 0 ? void 0 : product.traceInfo) !== null && _1 !== void 0 ? _1 : (_3 = (_2 = data === null || data === void 0 ? void 0 : data.video) === null || _2 === void 0 ? void 0 : _2.bindProduct) === null || _3 === void 0 ? void 0 : _3.traceInfo) !== null && _4 !== void 0 ? _4 : (_7 = (_6 = (_5 = data === null || data === void 0 ? void 0 : data.video) === null || _5 === void 0 ? void 0 : _5.bindProducts) === null || _6 === void 0 ? void 0 : _6[0]) === null || _7 === void 0 ? void 0 : _7.traceInfo) !== null && _8 !== void 0 ? _8 : (_9 = data === null || data === void 0 ? void 0 : data.product) === null || _9 === void 0 ? void 0 : _9.traceInfo) !== null && _10 !== void 0 ? _10 : (_12 = (_11 = data === null || data === void 0 ? void 0 : data.video) === null || _11 === void 0 ? void 0 : _11.bindCta) === null || _12 === void 0 ? void 0 : _12.traceInfo) !== null && _13 !== void 0 ? _13 : '' }, (contentFormat && { contentFormat }))
2218
2177
  });
2219
2178
  }, [bffEventReport, popupDetailData, isFromHashtag, eventTimeList]);
2220
2179
  const productView = React.useCallback((data, product, cta, viewTime, position) => {
2221
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
2180
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
2222
2181
  let fromKName = '';
2223
2182
  if (popupDetailData && (((_b = (_a = data === null || data === void 0 ? void 0 : data.video) === null || _a === void 0 ? void 0 : _a.bindProducts) === null || _b === void 0 ? void 0 : _b.length) || ((_c = data === null || data === void 0 ? void 0 : data.video) === null || _c === void 0 ? void 0 : _c.bindProduct))) {
2224
2183
  fromKName = 'pdpPage';
@@ -2237,9 +2196,8 @@ function useEventReport() {
2237
2196
  contentTags: JSON.stringify(product === null || product === void 0 ? void 0 : product.tags),
2238
2197
  position: position + '',
2239
2198
  contentId: (_d = data === null || data === void 0 ? void 0 : data.video) === null || _d === void 0 ? void 0 : _d.itemId,
2240
- sceneId: (_g = (_f = (_e = data === null || data === void 0 ? void 0 : data.video) === null || _e === void 0 ? void 0 : _e.scene) === null || _f === void 0 ? void 0 : _f.sceneId) !== null && _g !== void 0 ? _g : '',
2241
2199
  ctatId: cta === null || cta === void 0 ? void 0 : cta.itemId,
2242
- traceInfo: (_s = (_q = (_l = (_h = product === null || product === void 0 ? void 0 : product.traceInfo) !== null && _h !== void 0 ? _h : (_k = (_j = data === null || data === void 0 ? void 0 : data.video) === null || _j === void 0 ? void 0 : _j.bindProduct) === null || _k === void 0 ? void 0 : _k.traceInfo) !== null && _l !== void 0 ? _l : (_p = (_o = (_m = data === null || data === void 0 ? void 0 : data.video) === null || _m === void 0 ? void 0 : _m.bindProducts) === null || _o === void 0 ? void 0 : _o[0]) === null || _p === void 0 ? void 0 : _p.traceInfo) !== null && _q !== void 0 ? _q : (_r = data === null || data === void 0 ? void 0 : data.product) === null || _r === void 0 ? void 0 : _r.traceInfo) !== null && _s !== void 0 ? _s : '',
2200
+ traceInfo: (_p = (_m = (_h = (_e = product === null || product === void 0 ? void 0 : product.traceInfo) !== null && _e !== void 0 ? _e : (_g = (_f = data === null || data === void 0 ? void 0 : data.video) === null || _f === void 0 ? void 0 : _f.bindProduct) === null || _g === void 0 ? void 0 : _g.traceInfo) !== null && _h !== void 0 ? _h : (_l = (_k = (_j = data === null || data === void 0 ? void 0 : data.video) === null || _j === void 0 ? void 0 : _j.bindProducts) === null || _k === void 0 ? void 0 : _k[0]) === null || _l === void 0 ? void 0 : _l.traceInfo) !== null && _m !== void 0 ? _m : (_o = data === null || data === void 0 ? void 0 : data.product) === null || _o === void 0 ? void 0 : _o.traceInfo) !== null && _p !== void 0 ? _p : '',
2243
2201
  timeOnSite: Math.floor((new Date() - viewTime) / 1000) + '',
2244
2202
  eventSubject: 'productView',
2245
2203
  eventDescription: 'User browsed the product'
@@ -16283,7 +16241,7 @@ function WaterfallList(_a) {
16283
16241
  * @Author: binruan@chatlabs.com
16284
16242
  * @Date: 2024-01-10 10:58:24
16285
16243
  * @LastEditors: binruan@chatlabs.com
16286
- * @LastEditTime: 2025-05-09 15:30:41
16244
+ * @LastEditTime: 2025-02-28 10:00:31
16287
16245
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\WaterFall\index.tsx
16288
16246
  *
16289
16247
  */
@@ -16321,7 +16279,7 @@ const WaterFall = (props) => {
16321
16279
  }
16322
16280
  }, [waterFallData]);
16323
16281
  const reportTagsView = React.useCallback(() => {
16324
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
16282
+ var _a, _b, _c, _d, _e, _f;
16325
16283
  const rec = recData === null || recData === void 0 ? void 0 : recData.rec;
16326
16284
  if (!rec)
16327
16285
  return;
@@ -16341,10 +16299,9 @@ const WaterFall = (props) => {
16341
16299
  bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
16342
16300
  eventInfo: {
16343
16301
  contentId: (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.itemId,
16344
- sceneId: (_g = (_f = (_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.scene) === null || _f === void 0 ? void 0 : _f.sceneId) !== null && _g !== void 0 ? _g : '',
16345
16302
  position: cacheActiveIndex + '',
16346
- contentTags: JSON.stringify((_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.tags),
16347
- traceInfo: (_j = rec === null || rec === void 0 ? void 0 : rec.video) === null || _j === void 0 ? void 0 : _j.traceInfo,
16303
+ contentTags: JSON.stringify((_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.tags),
16304
+ traceInfo: (_f = rec === null || rec === void 0 ? void 0 : rec.video) === null || _f === void 0 ? void 0 : _f.traceInfo,
16348
16305
  hashTags: JSON.stringify([recData === null || recData === void 0 ? void 0 : recData.hashTag]),
16349
16306
  fromKName,
16350
16307
  fromKPage: location === null || location === void 0 ? void 0 : location.href,
@@ -18451,22 +18408,21 @@ const LikeButton = (_a) => {
18451
18408
  const likeIcon = useIconLink(defaultLikeIconPath$2);
18452
18409
  const unlikeIcon = useIconLink(defaultUnLikeIconPath$2);
18453
18410
  const handleClick = lodash.debounce(() => __awaiter(void 0, void 0, void 0, function* () {
18454
- var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10;
18411
+ var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2;
18455
18412
  if (state) {
18456
18413
  // 先设置状态
18457
18414
  setState(false);
18458
- const result = (_e = (yield (mutateUnlike === null || mutateUnlike === void 0 ? void 0 : mutateUnlike({ itemId: (_d = (_c = recData === null || recData === void 0 ? void 0 : recData.video) === null || _c === void 0 ? void 0 : _c.itemId) !== null && _d !== void 0 ? _d : '' })))) !== null && _e !== void 0 ? _e : false;
18415
+ const result = (_e = (yield (mutateUnlike === null || mutateUnlike === void 0 ? void 0 : mutateUnlike({ videoItemId: (_d = (_c = recData === null || recData === void 0 ? void 0 : recData.video) === null || _c === void 0 ? void 0 : _c.itemId) !== null && _d !== void 0 ? _d : '' })))) !== null && _e !== void 0 ? _e : false;
18459
18416
  bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
18460
18417
  eventInfo: {
18461
18418
  eventSubject: 'favoriteContentCanceled',
18462
18419
  eventDescription: 'This content was unfavorite by the user',
18463
18420
  contentId: (_g = (_f = recData === null || recData === void 0 ? void 0 : recData.video) === null || _f === void 0 ? void 0 : _f.itemId) !== null && _g !== void 0 ? _g : '',
18464
- sceneId: (_k = (_j = (_h = recData === null || recData === void 0 ? void 0 : recData.video) === null || _h === void 0 ? void 0 : _h.scene) === null || _j === void 0 ? void 0 : _j.sceneId) !== null && _k !== void 0 ? _k : '',
18465
- contentName: (_m = (_l = recData === null || recData === void 0 ? void 0 : recData.video) === null || _l === void 0 ? void 0 : _l.title) !== null && _m !== void 0 ? _m : '',
18466
- contentTags: JSON.stringify((_p = (_o = recData === null || recData === void 0 ? void 0 : recData.video) === null || _o === void 0 ? void 0 : _o.tags) !== null && _p !== void 0 ? _p : []),
18421
+ contentName: (_j = (_h = recData === null || recData === void 0 ? void 0 : recData.video) === null || _h === void 0 ? void 0 : _h.title) !== null && _j !== void 0 ? _j : '',
18422
+ contentTags: JSON.stringify((_l = (_k = recData === null || recData === void 0 ? void 0 : recData.video) === null || _k === void 0 ? void 0 : _k.tags) !== null && _l !== void 0 ? _l : []),
18467
18423
  position: position + '',
18468
- contentFormat: ((_q = recData === null || recData === void 0 ? void 0 : recData.video) === null || _q === void 0 ? void 0 : _q.url) ? 'video' : 'image',
18469
- traceInfo: (_r = recData === null || recData === void 0 ? void 0 : recData.video) === null || _r === void 0 ? void 0 : _r.traceInfo
18424
+ contentFormat: ((_m = recData === null || recData === void 0 ? void 0 : recData.video) === null || _m === void 0 ? void 0 : _m.url) ? 'video' : 'image',
18425
+ traceInfo: (_o = recData === null || recData === void 0 ? void 0 : recData.video) === null || _o === void 0 ? void 0 : _o.traceInfo
18470
18426
  }
18471
18427
  });
18472
18428
  // 如果接口调用失败,则回滚状态
@@ -18474,49 +18430,48 @@ const LikeButton = (_a) => {
18474
18430
  setState(true);
18475
18431
  }
18476
18432
  else {
18477
- const nRtcList = (_s = cacheRtcList === null || cacheRtcList === void 0 ? void 0 : cacheRtcList.map((item, index) => {
18433
+ const nRtcList = (_p = cacheRtcList === null || cacheRtcList === void 0 ? void 0 : cacheRtcList.map((item, index) => {
18478
18434
  if (index === position) {
18479
18435
  item.isCollected = false;
18480
18436
  }
18481
18437
  return item;
18482
- })) !== null && _s !== void 0 ? _s : [];
18438
+ })) !== null && _p !== void 0 ? _p : [];
18483
18439
  setCacheRtcList === null || setCacheRtcList === void 0 ? void 0 : setCacheRtcList(nRtcList);
18484
18440
  }
18485
18441
  }
18486
18442
  else {
18487
18443
  setState(true);
18488
- const result = (_v = (yield (mutateLike === null || mutateLike === void 0 ? void 0 : mutateLike({ content: JSON.stringify(recData), itemId: (_u = (_t = recData === null || recData === void 0 ? void 0 : recData.video) === null || _t === void 0 ? void 0 : _t.itemId) !== null && _u !== void 0 ? _u : '' })))) !== null && _v !== void 0 ? _v : false;
18444
+ const result = (_q = (yield (mutateLike === null || mutateLike === void 0 ? void 0 : mutateLike({ content: JSON.stringify(recData) })))) !== null && _q !== void 0 ? _q : false;
18489
18445
  bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
18490
18446
  eventInfo: {
18491
18447
  eventSubject: 'favoriteContent',
18492
18448
  eventDescription: 'This content was favorite by the user',
18493
- contentId: (_x = (_w = recData === null || recData === void 0 ? void 0 : recData.video) === null || _w === void 0 ? void 0 : _w.itemId) !== null && _x !== void 0 ? _x : '',
18494
- sceneId: (_0 = (_z = (_y = recData === null || recData === void 0 ? void 0 : recData.video) === null || _y === void 0 ? void 0 : _y.scene) === null || _z === void 0 ? void 0 : _z.sceneId) !== null && _0 !== void 0 ? _0 : '',
18495
- contentName: (_2 = (_1 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _1 === void 0 ? void 0 : _1.title) !== null && _2 !== void 0 ? _2 : '',
18496
- contentTags: JSON.stringify((_4 = (_3 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _3 === void 0 ? void 0 : _3.tags) !== null && _4 !== void 0 ? _4 : []),
18449
+ contentId: (_s = (_r = recData === null || recData === void 0 ? void 0 : recData.video) === null || _r === void 0 ? void 0 : _r.itemId) !== null && _s !== void 0 ? _s : '',
18450
+ contentName: (_u = (_t = recData === null || recData === void 0 ? void 0 : recData.video) === null || _t === void 0 ? void 0 : _t.title) !== null && _u !== void 0 ? _u : '',
18451
+ contentTags: JSON.stringify((_w = (_v = recData === null || recData === void 0 ? void 0 : recData.video) === null || _v === void 0 ? void 0 : _v.tags) !== null && _w !== void 0 ? _w : []),
18497
18452
  position: position + '',
18498
- contentFormat: ((_5 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _5 === void 0 ? void 0 : _5.url) ? 'video' : 'image',
18499
- traceInfo: (_6 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _6 === void 0 ? void 0 : _6.traceInfo
18453
+ contentFormat: ((_x = recData === null || recData === void 0 ? void 0 : recData.video) === null || _x === void 0 ? void 0 : _x.url) ? 'video' : 'image',
18454
+ traceInfo: (_y = recData === null || recData === void 0 ? void 0 : recData.video) === null || _y === void 0 ? void 0 : _y.traceInfo
18500
18455
  }
18501
18456
  });
18502
18457
  bffFbReport === null || bffFbReport === void 0 ? void 0 : bffFbReport({
18503
18458
  eventName: 'Engagement',
18504
- product: (_7 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _7 === void 0 ? void 0 : _7.bindProducts,
18459
+ product: (_z = recData === null || recData === void 0 ? void 0 : recData.video) === null || _z === void 0 ? void 0 : _z.bindProducts,
18505
18460
  rec: recData,
18506
18461
  position,
18507
- content_id: (_9 = (_8 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _8 === void 0 ? void 0 : _8.itemId) !== null && _9 !== void 0 ? _9 : '',
18462
+ content_id: (_1 = (_0 = recData === null || recData === void 0 ? void 0 : recData.video) === null || _0 === void 0 ? void 0 : _0.itemId) !== null && _1 !== void 0 ? _1 : '',
18508
18463
  engagement_type: 'like'
18509
18464
  });
18510
18465
  if (!result) {
18511
18466
  setState(false);
18512
18467
  }
18513
18468
  else {
18514
- const nRtcList = (_10 = cacheRtcList === null || cacheRtcList === void 0 ? void 0 : cacheRtcList.map((item, index) => {
18469
+ const nRtcList = (_2 = cacheRtcList === null || cacheRtcList === void 0 ? void 0 : cacheRtcList.map((item, index) => {
18515
18470
  if (index === position) {
18516
18471
  item.isCollected = true;
18517
18472
  }
18518
18473
  return item;
18519
- })) !== null && _10 !== void 0 ? _10 : [];
18474
+ })) !== null && _2 !== void 0 ? _2 : [];
18520
18475
  setCacheRtcList === null || setCacheRtcList === void 0 ? void 0 : setCacheRtcList(nRtcList);
18521
18476
  }
18522
18477
  }
@@ -18553,7 +18508,7 @@ const mountVideoPlayerAtNode = (() => {
18553
18508
  const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activeIndex, videoPostConfig, videoPlayIcon, loopPlay, swiperRef, visibleHeight }, ref) => {
18554
18509
  var _a, _b;
18555
18510
  const [isPauseVideo, setIsPauseVideo] = React.useState(false);
18556
- const { bffEventReport, sxpParameter, firstRtcList, openHashtag, bffFbReport, isDiyH5 } = useSxpDataSource();
18511
+ const { bffEventReport, sxpParameter, waterFallData, openHashtag, bffFbReport, isDiyH5 } = useSxpDataSource();
18557
18512
  const videoStartTime = React.useRef(0);
18558
18513
  const [isLoadFinish, setIsLoadFinish] = React.useState(false);
18559
18514
  const { isActive } = useSwiperSlide();
@@ -18570,7 +18525,7 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18570
18525
  const loopPlayRef = React.useRef(loopPlay);
18571
18526
  const scene = rec.video.scene;
18572
18527
  const videoUrl = (scene === null || scene === void 0 ? void 0 : scene.mediaUrl) || ((_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.url);
18573
- const videoCover = (_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.cover;
18528
+ const videoCover = (scene === null || scene === void 0 ? void 0 : scene.mediaUrl) ? scene === null || scene === void 0 ? void 0 : scene.cover : (_b = rec === null || rec === void 0 ? void 0 : rec.video) === null || _b === void 0 ? void 0 : _b.cover;
18574
18529
  const videoPoster = videoCover || (sxpParameter === null || sxpParameter === void 0 ? void 0 : sxpParameter.placeholder_image);
18575
18530
  React.useImperativeHandle(ref, () => {
18576
18531
  return {
@@ -18619,23 +18574,6 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18619
18574
  return;
18620
18575
  (_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.play();
18621
18576
  }, [videoRef === null || videoRef === void 0 ? void 0 : videoRef.current]);
18622
- const handleEnd = () => {
18623
- var _a, _b, _c, _d, _e, _f;
18624
- if (!videoRef.current)
18625
- return;
18626
- if (isDiyH5) {
18627
- (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.pause();
18628
- if (!loopPlayRef.current)
18629
- return;
18630
- if (firstRtcList && index < (firstRtcList === null || firstRtcList === void 0 ? void 0 : firstRtcList.length) - 1) {
18631
- const i = (_c = (_b = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _b === void 0 ? void 0 : _b.swiper) === null || _c === void 0 ? void 0 : _c.activeIndex;
18632
- (_e = (_d = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _d === void 0 ? void 0 : _d.swiper) === null || _e === void 0 ? void 0 : _e.slideTo(i + 1);
18633
- }
18634
- }
18635
- else {
18636
- (_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.play();
18637
- }
18638
- };
18639
18577
  const PAUSE_ICON = useIconLink('/pb_static/06f28a2025c74c1cb49be6767316d827.png');
18640
18578
  const handlePlaying = React.useCallback(() => {
18641
18579
  if (!(videoRef === null || videoRef === void 0 ? void 0 : videoRef.current))
@@ -18644,7 +18582,7 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18644
18582
  setIsLoadFinish(true);
18645
18583
  }, []);
18646
18584
  const handleStartPlay = React.useCallback(() => __awaiter(void 0, void 0, void 0, function* () {
18647
- var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
18585
+ var _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
18648
18586
  if (!(videoRef === null || videoRef === void 0 ? void 0 : videoRef.current))
18649
18587
  return;
18650
18588
  setIsPauseVideo(false);
@@ -18655,11 +18593,16 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18655
18593
  const videoCurrentTime = ((_h = (_g = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _g === void 0 ? void 0 : _g.currentTime) !== null && _h !== void 0 ? _h : 0).toFixed(2);
18656
18594
  const playType = (isFirstPlayRef === null || isFirstPlayRef === void 0 ? void 0 : isFirstPlayRef.current) ? '0' : '1';
18657
18595
  bffEventReport === null || bffEventReport === void 0 ? void 0 : bffEventReport({
18658
- eventInfo: Object.assign({ eventSubject: 'playVideo', eventDescription: 'User played the video', contentId: (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.itemId) !== null && _k !== void 0 ? _k : '', sceneId: (_o = (_m = (_l = item === null || item === void 0 ? void 0 : item.video) === null || _l === void 0 ? void 0 : _l.scene) === null || _m === void 0 ? void 0 : _m.sceneId) !== null && _o !== void 0 ? _o : '', contentName: (_q = (_p = item === null || item === void 0 ? void 0 : item.video) === null || _p === void 0 ? void 0 : _p.title) !== null && _q !== void 0 ? _q : '', playType, startTime: videoCurrentTime, videoDuration, contentTags: JSON.stringify((_s = (_r = item === null || item === void 0 ? void 0 : item.video) === null || _r === void 0 ? void 0 : _r.tags) !== null && _s !== void 0 ? _s : []), position: index + '', contentFormat: 'video', traceInfo: (_t = item === null || item === void 0 ? void 0 : item.video) === null || _t === void 0 ? void 0 : _t.traceInfo }, ((isFirstPlayRef === null || isFirstPlayRef === void 0 ? void 0 : isFirstPlayRef.current) && { loadTime: (loadedTimeRef === null || loadedTimeRef === void 0 ? void 0 : loadedTimeRef.current) - (initTimeRef === null || initTimeRef === void 0 ? void 0 : initTimeRef.current) + '' }))
18596
+ eventInfo: Object.assign({ eventSubject: 'playVideo', eventDescription: 'User played the video', contentId: (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.itemId) !== null && _k !== void 0 ? _k : '', contentName: (_m = (_l = item === null || item === void 0 ? void 0 : item.video) === null || _l === void 0 ? void 0 : _l.title) !== null && _m !== void 0 ? _m : '', playType, startTime: videoCurrentTime, videoDuration, contentTags: JSON.stringify((_p = (_o = item === null || item === void 0 ? void 0 : item.video) === null || _o === void 0 ? void 0 : _o.tags) !== null && _p !== void 0 ? _p : []), position: index + '', contentFormat: 'video', traceInfo: (_q = item === null || item === void 0 ? void 0 : item.video) === null || _q === void 0 ? void 0 : _q.traceInfo }, ((isFirstPlayRef === null || isFirstPlayRef === void 0 ? void 0 : isFirstPlayRef.current) && { loadTime: (loadedTimeRef === null || loadedTimeRef === void 0 ? void 0 : loadedTimeRef.current) - (initTimeRef === null || initTimeRef === void 0 ? void 0 : initTimeRef.current) + '' }))
18659
18597
  });
18660
18598
  isFirstPlayRef.current = false;
18661
18599
  }
18662
18600
  }), [bffEventReport, data, index, isFirstPlayRef, videoRef === null || videoRef === void 0 ? void 0 : videoRef.current]);
18601
+ const setCurrentTimeByStartTime = React.useCallback(() => {
18602
+ if (isDiyH5) {
18603
+ videoRef.current.currentTime = scene === null || scene === void 0 ? void 0 : scene.startTime;
18604
+ }
18605
+ }, []);
18663
18606
  const handLoadeddata = React.useCallback(() => {
18664
18607
  if (!(videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) || firstFrameSrc || !blur)
18665
18608
  return;
@@ -18684,12 +18627,13 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18684
18627
  const handleLoadedmetadata = React.useCallback(() => {
18685
18628
  if (!videoRef.current)
18686
18629
  return;
18630
+ setCurrentTimeByStartTime();
18687
18631
  loadedTimeRef.current = new Date();
18688
18632
  handleStartPlay();
18689
18633
  handLoadeddata();
18690
18634
  }, [videoRef.current, handLoadeddata, handleStartPlay]);
18691
18635
  const handleClickVideo = React.useCallback((type) => () => {
18692
- var _a, _b, _c, _d, _e;
18636
+ var _a, _b, _c, _d, _e, _f;
18693
18637
  if (!videoRef.current)
18694
18638
  return;
18695
18639
  if (!isLoadFinish)
@@ -18710,17 +18654,20 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18710
18654
  break;
18711
18655
  default:
18712
18656
  if (isPause) {
18713
- (_d = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _d === void 0 ? void 0 : _d.play();
18657
+ if (isDiyH5 && Math.round((_d = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _d === void 0 ? void 0 : _d.currentTime) >= (scene === null || scene === void 0 ? void 0 : scene.endTime)) {
18658
+ videoRef.current.currentTime = scene === null || scene === void 0 ? void 0 : scene.startTime;
18659
+ }
18660
+ (_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.play();
18714
18661
  }
18715
18662
  else {
18716
- (_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.pause();
18663
+ (_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.pause();
18717
18664
  }
18718
18665
  setIsPauseVideo(!isPause);
18719
18666
  break;
18720
18667
  }
18721
18668
  }, [isLoadFinish, videoRef === null || videoRef === void 0 ? void 0 : videoRef.current]);
18722
18669
  const handlePause = React.useCallback(() => {
18723
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
18670
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
18724
18671
  if (!(videoRef === null || videoRef === void 0 ? void 0 : videoRef.current))
18725
18672
  return;
18726
18673
  if (activeIndex !== index)
@@ -18736,15 +18683,14 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18736
18683
  eventSubject: 'playOverVideo',
18737
18684
  eventDescription: 'User finished playing the video',
18738
18685
  contentId: (_h = (_g = item === null || item === void 0 ? void 0 : item.video) === null || _g === void 0 ? void 0 : _g.itemId) !== null && _h !== void 0 ? _h : '',
18739
- sceneId: (_l = (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.scene) === null || _k === void 0 ? void 0 : _k.sceneId) !== null && _l !== void 0 ? _l : '',
18740
- contentName: (_o = (_m = item === null || item === void 0 ? void 0 : item.video) === null || _m === void 0 ? void 0 : _m.title) !== null && _o !== void 0 ? _o : '',
18686
+ contentName: (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.title) !== null && _k !== void 0 ? _k : '',
18741
18687
  endTime: videoCurrentTime,
18742
18688
  videoDuration,
18743
18689
  playDuration,
18744
- contentTags: JSON.stringify((_q = (_p = item === null || item === void 0 ? void 0 : item.video) === null || _p === void 0 ? void 0 : _p.tags) !== null && _q !== void 0 ? _q : []),
18690
+ contentTags: JSON.stringify((_m = (_l = item === null || item === void 0 ? void 0 : item.video) === null || _l === void 0 ? void 0 : _l.tags) !== null && _m !== void 0 ? _m : []),
18745
18691
  position: index + '',
18746
18692
  contentFormat: 'video',
18747
- traceInfo: (_r = item === null || item === void 0 ? void 0 : item.video) === null || _r === void 0 ? void 0 : _r.traceInfo
18693
+ traceInfo: (_o = item === null || item === void 0 ? void 0 : item.video) === null || _o === void 0 ? void 0 : _o.traceInfo
18748
18694
  }
18749
18695
  });
18750
18696
  }
@@ -18752,8 +18698,27 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18752
18698
  const handleWaiting = React.useCallback(() => {
18753
18699
  setWaiting(true);
18754
18700
  }, []);
18701
+ const handleTimeUpload = () => {
18702
+ if (!videoRef.current || !isDiyH5)
18703
+ return;
18704
+ setTimeout(() => {
18705
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
18706
+ if (Math.round((_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.currentTime) >= ((_b = scene === null || scene === void 0 ? void 0 : scene.endTime) !== null && _b !== void 0 ? _b : 0)) {
18707
+ (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.pause();
18708
+ if (!loopPlayRef.current)
18709
+ return;
18710
+ if (index === (data === null || data === void 0 ? void 0 : data.length) - 1) {
18711
+ (_e = (_d = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _d === void 0 ? void 0 : _d.swiper) === null || _e === void 0 ? void 0 : _e.slideTo(0);
18712
+ }
18713
+ else {
18714
+ const i = (_g = (_f = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _f === void 0 ? void 0 : _f.swiper) === null || _g === void 0 ? void 0 : _g.activeIndex;
18715
+ (_j = (_h = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _h === void 0 ? void 0 : _h.swiper) === null || _j === void 0 ? void 0 : _j.slideTo(i + 1);
18716
+ }
18717
+ }
18718
+ });
18719
+ };
18755
18720
  React.useEffect(() => {
18756
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
18721
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
18757
18722
  if (!isActive)
18758
18723
  return;
18759
18724
  const videoSrc = videoUrl;
@@ -18774,6 +18739,7 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18774
18739
  hls === null || hls === void 0 ? void 0 : hls.attachMedia(videoRef === null || videoRef === void 0 ? void 0 : videoRef.current);
18775
18740
  hls === null || hls === void 0 ? void 0 : hls.on(Hls.Events.MANIFEST_PARSED, function () {
18776
18741
  var _a;
18742
+ setCurrentTimeByStartTime();
18777
18743
  (_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.play();
18778
18744
  });
18779
18745
  }
@@ -18787,11 +18753,12 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18787
18753
  (_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.addEventListener('play', handleStartPlay);
18788
18754
  (_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.addEventListener('playing', handlePlaying);
18789
18755
  (_g = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _g === void 0 ? void 0 : _g.addEventListener('pause', handlePause);
18790
- (_h = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _h === void 0 ? void 0 : _h.addEventListener('ended', handleEnd);
18756
+ (_h = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _h === void 0 ? void 0 : _h.addEventListener('ended', handlePlay);
18791
18757
  (_j = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _j === void 0 ? void 0 : _j.addEventListener('canplay', handlePlay);
18792
18758
  (_k = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _k === void 0 ? void 0 : _k.addEventListener('waiting', handleWaiting);
18759
+ (_l = videoRef.current) === null || _l === void 0 ? void 0 : _l.addEventListener('timeupdate', handleTimeUpload);
18793
18760
  return () => {
18794
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
18761
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
18795
18762
  const isPause = (_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.paused;
18796
18763
  if (!isPause)
18797
18764
  handlePause();
@@ -18803,9 +18770,10 @@ const VideoWidget$4 = React.forwardRef(({ rec, index, height, data, muted, activ
18803
18770
  (_e = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _e === void 0 ? void 0 : _e.removeEventListener('play', handleStartPlay);
18804
18771
  (_f = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _f === void 0 ? void 0 : _f.removeEventListener('playing', handlePlaying);
18805
18772
  (_g = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _g === void 0 ? void 0 : _g.removeEventListener('pause', handlePause);
18806
- (_h = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _h === void 0 ? void 0 : _h.removeEventListener('ended', handleEnd);
18773
+ (_h = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _h === void 0 ? void 0 : _h.removeEventListener('ended', handlePlay);
18807
18774
  (_j = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _j === void 0 ? void 0 : _j.removeEventListener('canplay', handlePlay);
18808
18775
  (_k = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _k === void 0 ? void 0 : _k.removeEventListener('waiting', handleWaiting);
18776
+ (_l = videoRef.current) === null || _l === void 0 ? void 0 : _l.removeEventListener('timeupdate', handleTimeUpload);
18809
18777
  };
18810
18778
  }, [isActive]);
18811
18779
  React.useEffect(() => {
@@ -19020,45 +18988,19 @@ const Picture = (props) => {
19020
18988
  }, onLoad: onShowFirstImage }))));
19021
18989
  };
19022
18990
 
19023
- const PictureGroup$4 = React.forwardRef(({ imgUrls, data, height, rec, index, onViewImageEndEvent, onViewImageStartEvent, imgUrlsPostConfig, swiperRef }, ref) => {
18991
+ const PictureGroup$4 = ({ imgUrls, width, height, rec, index, onViewImageEndEvent, onViewImageStartEvent, imgUrlsPostConfig }) => {
19024
18992
  var _a, _b;
19025
18993
  const { isActive } = useSwiperSlide();
19026
- const { firstRtcList, openHashtag, isDiyH5 } = useSxpDataSource();
18994
+ const { sxpParameter, openHashtag } = useSxpDataSource();
19027
18995
  const [isLoad, setIsLoad] = React.useState(false);
19028
18996
  const [imgInfo, setImgInfo] = React.useState();
19029
18997
  const [swiperActiveIndex, setSwiperActiveIndex] = React.useState(0);
19030
- const imgsSwiperRef = React.useRef();
18998
+ const swiperRef = React.useRef();
19031
18999
  const isFirstPlayRef = React.useRef(true);
19032
- const loopPlayRef = React.useRef(true);
19033
19000
  const initTime = new Date();
19034
- React.useImperativeHandle(ref, () => {
19035
- return {
19036
- setLoopPlay(v) {
19037
- loopPlayRef.current = v;
19038
- }
19039
- };
19040
- });
19041
- React.useEffect(() => {
19042
- let timerId;
19043
- if (isLoad && isActive && isDiyH5) {
19044
- timerId = setTimeout(() => {
19045
- var _a, _b, _c, _d;
19046
- if (!loopPlayRef.current)
19047
- return;
19048
- if (firstRtcList && index < (firstRtcList === null || firstRtcList === void 0 ? void 0 : firstRtcList.length) - 1) {
19049
- const i = (_b = (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper) === null || _b === void 0 ? void 0 : _b.activeIndex;
19050
- (_d = (_c = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _c === void 0 ? void 0 : _c.swiper) === null || _d === void 0 ? void 0 : _d.slideTo(i + 1);
19051
- }
19052
- }, 3000);
19053
- }
19054
- return () => {
19055
- if (timerId)
19056
- clearTimeout(timerId);
19057
- };
19058
- }, [isLoad, isActive, isDiyH5, index, swiperRef, firstRtcList]);
19059
19001
  React.useEffect(() => {
19060
19002
  if (isLoad && isActive) {
19061
- (imgsSwiperRef === null || imgsSwiperRef === void 0 ? void 0 : imgsSwiperRef.current) && imgsSwiperRef.current.swiper.autoplay.start();
19003
+ (swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) && swiperRef.current.swiper.autoplay.start();
19062
19004
  if (openHashtag) {
19063
19005
  onViewImageEndEvent(rec);
19064
19006
  }
@@ -19068,7 +19010,7 @@ const PictureGroup$4 = React.forwardRef(({ imgUrls, data, height, rec, index, on
19068
19010
  }
19069
19011
  }
19070
19012
  else {
19071
- (imgsSwiperRef === null || imgsSwiperRef === void 0 ? void 0 : imgsSwiperRef.current) && imgsSwiperRef.current.swiper.autoplay.stop();
19013
+ (swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) && swiperRef.current.swiper.autoplay.stop();
19072
19014
  }
19073
19015
  }, [rec, isActive, onViewImageEndEvent, openHashtag, index, onViewImageStartEvent, isLoad, imgInfo]);
19074
19016
  const showFirstImageFn = React.useCallback((e) => __awaiter(void 0, void 0, void 0, function* () {
@@ -19095,13 +19037,13 @@ const PictureGroup$4 = React.forwardRef(({ imgUrls, data, height, rec, index, on
19095
19037
  };
19096
19038
  }, [isActive, imgInfo]);
19097
19039
  const handleMouseEnter = React.useCallback(() => {
19098
- if (imgsSwiperRef.current && imgsSwiperRef.current.swiper && isAlly) {
19099
- imgsSwiperRef.current.swiper.autoplay.stop();
19040
+ if (swiperRef.current && swiperRef.current.swiper && isAlly) {
19041
+ swiperRef.current.swiper.autoplay.stop();
19100
19042
  }
19101
19043
  }, []);
19102
19044
  const handleMouseLeave = React.useCallback(() => {
19103
- if (imgsSwiperRef.current && imgsSwiperRef.current.swiper && isAlly) {
19104
- imgsSwiperRef.current.swiper.autoplay.start();
19045
+ if (swiperRef.current && swiperRef.current.swiper && isAlly) {
19046
+ swiperRef.current.swiper.autoplay.start();
19105
19047
  }
19106
19048
  }, []);
19107
19049
  const handleSlideChange = React.useCallback((swiper) => {
@@ -19122,7 +19064,7 @@ const PictureGroup$4 = React.forwardRef(({ imgUrls, data, height, rec, index, on
19122
19064
  enabled: true
19123
19065
  }
19124
19066
  }
19125
- : {}), { loop: true, ref: imgsSwiperRef, onSlideChange: handleSlideChange, className: css.css(Object.assign(Object.assign({ '.swiper-pagination': {
19067
+ : {}), { loop: true, ref: swiperRef, onSlideChange: handleSlideChange, className: css.css(Object.assign(Object.assign({ '.swiper-pagination': {
19126
19068
  bottom: (_a = imgUrlsPostConfig === null || imgUrlsPostConfig === void 0 ? void 0 : imgUrlsPostConfig.marginBottom) !== null && _a !== void 0 ? _a : 0,
19127
19069
  fontSize: '14px'
19128
19070
  } }, ((imgUrlsPostConfig === null || imgUrlsPostConfig === void 0 ? void 0 : imgUrlsPostConfig.dotsBgColor) && {
@@ -19139,7 +19081,7 @@ const PictureGroup$4 = React.forwardRef(({ imgUrls, data, height, rec, index, on
19139
19081
  return (React.createElement(SwiperSlide, { key: srcKey, "aria-hidden": srcKey !== swiperActiveIndex },
19140
19082
  React.createElement(Picture, { src: !isLoad && srcKey > 0 ? '' : url, height: height, imgUrlsPostConfig: imgUrlsPostConfig, onShowFirstImage: showFirstImageFn })));
19141
19083
  }))));
19142
- });
19084
+ };
19143
19085
  var PictureGroup$5 = React.memo(PictureGroup$4);
19144
19086
 
19145
19087
  /*
@@ -19431,7 +19373,7 @@ var NavBack$1 = React.memo(NavBack);
19431
19373
  * @Author: binruan@chatlabs.com
19432
19374
  * @Date: 2024-03-20 10:27:31
19433
19375
  * @LastEditors: binruan@chatlabs.com
19434
- * @LastEditTime: 2025-05-12 14:26:15
19376
+ * @LastEditTime: 2025-05-09 15:51:40
19435
19377
  * @FilePath: \pb-sxp-ui\src\core\components\SxpPageRender\index.tsx
19436
19378
  *
19437
19379
  */
@@ -19452,7 +19394,6 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19452
19394
  const [pageNum, setPageNum] = React.useState(2);
19453
19395
  React.useState(false);
19454
19396
  const videoWidgetRef = React.useRef(null);
19455
- const pictureGroupRef = React.useRef(null);
19456
19397
  const fbcRef = React.useRef('');
19457
19398
  const { loadVideos, bffEventReport, loading, setPopupDetailData, ctaEvent, swiperRef, waterFallData, setOpenHashtag, appDomain, openHashtag, loadingImage, isFromHashtag, popupDetailData, bffFbReport, curTime, h5EnterLink, isShowConsent, selectTag, isPreview, isEditor, cacheRtcList, setRtcList, cacheActiveIndex, rtcList, isNoMoreData, channel, refreshFeSession, isDiyH5, pixelPvStatusRef } = useSxpDataSource();
19458
19399
  const { backMainFeed, productView, jumpToWeb } = useEventReport();
@@ -19502,7 +19443,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19502
19443
  (_a = swiperRef === null || swiperRef === void 0 ? void 0 : swiperRef.current) === null || _a === void 0 ? void 0 : _a.swiper.slideTo(index);
19503
19444
  }, [data, ctaType, swiperRef]);
19504
19445
  const handleSessionCompleted = React.useCallback((fk) => {
19505
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6;
19446
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3;
19506
19447
  const item = data === null || data === void 0 ? void 0 : data[activeIndex];
19507
19448
  let fromKName = '';
19508
19449
  if (popupDetailData && (((_b = (_a = item === null || item === void 0 ? void 0 : item.video) === null || _a === void 0 ? void 0 : _a.bindProducts) === null || _b === void 0 ? void 0 : _b.length) || ((_c = item === null || item === void 0 ? void 0 : item.video) === null || _c === void 0 ? void 0 : _c.bindProduct))) {
@@ -19529,23 +19470,22 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19529
19470
  eventSubject: 'sessionCompleted',
19530
19471
  eventDescription: 'Session completed',
19531
19472
  contentId: (_m = item === null || item === void 0 ? void 0 : item.video) === null || _m === void 0 ? void 0 : _m.itemId,
19532
- sceneId: (_q = (_p = (_o = item === null || item === void 0 ? void 0 : item.video) === null || _o === void 0 ? void 0 : _o.scene) === null || _p === void 0 ? void 0 : _p.sceneId) !== null && _q !== void 0 ? _q : '',
19533
- productId: (_r = item === null || item === void 0 ? void 0 : item.product) === null || _r === void 0 ? void 0 : _r.itemId,
19473
+ productId: (_o = item === null || item === void 0 ? void 0 : item.product) === null || _o === void 0 ? void 0 : _o.itemId,
19534
19474
  position: activeIndex + '',
19535
19475
  fromKName: fk || fromKName,
19536
19476
  fromKPage: location === null || location === void 0 ? void 0 : location.href,
19537
- ctatId: (_u = (_t = (_s = item === null || item === void 0 ? void 0 : item.video) === null || _s === void 0 ? void 0 : _s.bindCta) === null || _t === void 0 ? void 0 : _t.itemId) !== null && _u !== void 0 ? _u : '',
19538
- traceInfo: (_y = (_w = (_v = item === null || item === void 0 ? void 0 : item.video) === null || _v === void 0 ? void 0 : _v.traceInfo) !== null && _w !== void 0 ? _w : (_x = item === null || item === void 0 ? void 0 : item.product) === null || _x === void 0 ? void 0 : _x.traceInfo) !== null && _y !== void 0 ? _y : ''
19477
+ ctatId: (_r = (_q = (_p = item === null || item === void 0 ? void 0 : item.video) === null || _p === void 0 ? void 0 : _p.bindCta) === null || _q === void 0 ? void 0 : _q.itemId) !== null && _r !== void 0 ? _r : '',
19478
+ traceInfo: (_v = (_t = (_s = item === null || item === void 0 ? void 0 : item.video) === null || _s === void 0 ? void 0 : _s.traceInfo) !== null && _t !== void 0 ? _t : (_u = item === null || item === void 0 ? void 0 : item.product) === null || _u === void 0 ? void 0 : _u.traceInfo) !== null && _v !== void 0 ? _v : ''
19539
19479
  }
19540
19480
  });
19541
- const isPostType = ((_z = item === null || item === void 0 ? void 0 : item.video) === null || _z === void 0 ? void 0 : _z.url) || ((_1 = (_0 = item === null || item === void 0 ? void 0 : item.video) === null || _0 === void 0 ? void 0 : _0.imgUrls) === null || _1 === void 0 ? void 0 : _1.length);
19481
+ const isPostType = ((_w = item === null || item === void 0 ? void 0 : item.video) === null || _w === void 0 ? void 0 : _w.url) || ((_y = (_x = item === null || item === void 0 ? void 0 : item.video) === null || _x === void 0 ? void 0 : _x.imgUrls) === null || _y === void 0 ? void 0 : _y.length);
19542
19482
  if (!popupDetailData) {
19543
19483
  bffFbReport === null || bffFbReport === void 0 ? void 0 : bffFbReport({
19544
19484
  eventName: 'ExitFeed',
19545
- product: isPostType ? (_2 = item === null || item === void 0 ? void 0 : item.video) === null || _2 === void 0 ? void 0 : _2.bindProducts : (item === null || item === void 0 ? void 0 : item.product) ? [item === null || item === void 0 ? void 0 : item.product] : [],
19485
+ product: isPostType ? (_z = item === null || item === void 0 ? void 0 : item.video) === null || _z === void 0 ? void 0 : _z.bindProducts : (item === null || item === void 0 ? void 0 : item.product) ? [item === null || item === void 0 ? void 0 : item.product] : [],
19546
19486
  rec: item,
19547
19487
  position: activeIndex,
19548
- content_id: isPostType ? (_4 = (_3 = item === null || item === void 0 ? void 0 : item.video) === null || _3 === void 0 ? void 0 : _3.itemId) !== null && _4 !== void 0 ? _4 : '' : (_6 = (_5 = item === null || item === void 0 ? void 0 : item.product) === null || _5 === void 0 ? void 0 : _5.itemId) !== null && _6 !== void 0 ? _6 : '',
19488
+ content_id: isPostType ? (_1 = (_0 = item === null || item === void 0 ? void 0 : item.video) === null || _0 === void 0 ? void 0 : _0.itemId) !== null && _1 !== void 0 ? _1 : '' : (_3 = (_2 = item === null || item === void 0 ? void 0 : item.product) === null || _2 === void 0 ? void 0 : _2.itemId) !== null && _3 !== void 0 ? _3 : '',
19549
19489
  view_time: new Date() - viewTime.current
19550
19490
  });
19551
19491
  }
@@ -19605,9 +19545,8 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19605
19545
  refreshFeSession
19606
19546
  ]);
19607
19547
  const handleSessionExpire = React.useCallback(lodash.debounce(() => {
19608
- var _a, _b;
19548
+ var _a;
19609
19549
  (_a = videoWidgetRef.current) === null || _a === void 0 ? void 0 : _a.setLoopPlay(false);
19610
- (_b = pictureGroupRef.current) === null || _b === void 0 ? void 0 : _b.setLoopPlay(false);
19611
19550
  refreshFeSession === null || refreshFeSession === void 0 ? void 0 : refreshFeSession(false, handleSessionCompleted);
19612
19551
  }, 1000), [handleSessionCompleted, refreshFeSession]);
19613
19552
  React.useEffect(() => {
@@ -19678,18 +19617,18 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19678
19617
  return null;
19679
19618
  }, [globalConfig, activeIndex, visList]);
19680
19619
  const renderContent = React.useCallback((rec, index) => {
19681
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
19620
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
19682
19621
  if (rec === 'organic menu') {
19683
19622
  return (React.createElement(MultiPosts$2, Object.assign({ recData: data === null || data === void 0 ? void 0 : data[1] }, (_c = (_b = (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.multiPosts) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.item) === null || _c === void 0 ? void 0 : _c.props, (_f = (_e = (_d = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.multiPosts) === null || _d === void 0 ? void 0 : _d[0]) === null || _e === void 0 ? void 0 : _e.item) === null || _f === void 0 ? void 0 : _f.event)));
19684
19623
  }
19685
- if (((_h = (_g = rec.video) === null || _g === void 0 ? void 0 : _g.scene) === null || _h === void 0 ? void 0 : _h.mediaUrl) || ((_j = rec === null || rec === void 0 ? void 0 : rec.video) === null || _j === void 0 ? void 0 : _j.url)) {
19624
+ if ((_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.url) {
19686
19625
  return (React.createElement(VideoWidget$5, Object.assign({ key: isReload }, (activeIndex === index && { ref: videoWidgetRef }), { rec: rec, index: index, muted: isMuted, data: data, height: height, activeIndex: activeIndex, videoPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.videoPost, videoPlayIcon: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.videoPlayIcon, loopPlay: true, swiperRef: swiperRef, visibleHeight: visibleHeight })));
19687
19626
  }
19688
- if ((_k = rec === null || rec === void 0 ? void 0 : rec.video) === null || _k === void 0 ? void 0 : _k.imgUrls) {
19689
- return (React.createElement(PictureGroup$5, Object.assign({ data: data }, (activeIndex === index && { ref: pictureGroupRef }), { key: rec === null || rec === void 0 ? void 0 : rec.video.itemId, imgUrls: rec === null || rec === void 0 ? void 0 : rec.video.imgUrls, width: containerWidth, height: height, rec: rec, index: index, onViewImageEndEvent: handleViewImageStartEnd, onViewImageStartEvent: handleViewImageStartEvent, imgUrlsPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.imgUrlsPost, swiperRef: swiperRef })));
19627
+ if ((_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.imgUrls) {
19628
+ return (React.createElement(PictureGroup$5, { key: rec === null || rec === void 0 ? void 0 : rec.video.itemId, imgUrls: rec === null || rec === void 0 ? void 0 : rec.video.imgUrls, width: containerWidth, height: height, rec: rec, index: index, onViewImageEndEvent: handleViewImageStartEnd, onViewImageStartEvent: handleViewImageStartEvent, imgUrlsPostConfig: globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.imgUrlsPost }));
19690
19629
  }
19691
- if (rec.product && Array.isArray(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) && ((_l = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _l === void 0 ? void 0 : _l.length) > 0) {
19692
- return (_m = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _m === void 0 ? void 0 : _m.map((value, idx) => {
19630
+ if (rec.product && Array.isArray(globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) && ((_j = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _j === void 0 ? void 0 : _j.length) > 0) {
19631
+ return (_k = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.productPost) === null || _k === void 0 ? void 0 : _k.map((value, idx) => {
19693
19632
  var _a, _b, _c, _d, _e, _f, _g, _h;
19694
19633
  const t = resolver[(_a = value === null || value === void 0 ? void 0 : value.item) === null || _a === void 0 ? void 0 : _a.type];
19695
19634
  const Component = withBindDataSource(t);
@@ -19728,7 +19667,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19728
19667
  };
19729
19668
  }, [isShowMore]);
19730
19669
  const renderBottom = React.useCallback((rec, index) => {
19731
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
19670
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
19732
19671
  if (rec === null || rec === void 0 ? void 0 : rec.video) {
19733
19672
  let cta = null;
19734
19673
  if ((_b = (_a = rec === null || rec === void 0 ? void 0 : rec.video) === null || _a === void 0 ? void 0 : _a.bindProducts) === null || _b === void 0 ? void 0 : _b.length) {
@@ -19737,27 +19676,24 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19737
19676
  else if ((_c = rec === null || rec === void 0 ? void 0 : rec.video) === null || _c === void 0 ? void 0 : _c.bindProduct) {
19738
19677
  cta = '商品CTA';
19739
19678
  }
19740
- else if (tempMap && ((_d = Object.keys(tempMap)) === null || _d === void 0 ? void 0 : _d.includes('服务CTA')) && ((_f = (_e = rec === null || rec === void 0 ? void 0 : rec.video) === null || _e === void 0 ? void 0 : _e.bindCta) === null || _f === void 0 ? void 0 : _f.itemId)) {
19741
- cta = '服务CTA';
19742
- }
19743
19679
  else {
19744
- cta = (_h = (_g = rec === null || rec === void 0 ? void 0 : rec.video) === null || _g === void 0 ? void 0 : _g.bindCta) === null || _h === void 0 ? void 0 : _h.itemId;
19680
+ cta = (_e = (_d = rec === null || rec === void 0 ? void 0 : rec.video) === null || _d === void 0 ? void 0 : _d.bindCta) === null || _e === void 0 ? void 0 : _e.itemId;
19745
19681
  }
19746
19682
  const value = tempMap === null || tempMap === void 0 ? void 0 : tempMap[cta];
19747
19683
  const isNineProduct = (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.nineProductEnable) &&
19748
19684
  index === ((rtcList === null || rtcList === void 0 ? void 0 : rtcList[0]) === 'organic menu' ? 1 : 0) &&
19749
- ((_j = ['MultiCommodity', 'MultiCommodityDiro', 'MultiCommodityDiroNew']) === null || _j === void 0 ? void 0 : _j.includes((_k = value === null || value === void 0 ? void 0 : value.item) === null || _k === void 0 ? void 0 : _k.type));
19685
+ ((_f = ['MultiCommodity', 'MultiCommodityDiro', 'MultiCommodityDiroNew']) === null || _f === void 0 ? void 0 : _f.includes((_g = value === null || value === void 0 ? void 0 : value.item) === null || _g === void 0 ? void 0 : _g.type));
19750
19686
  return (React.createElement(React.Fragment, null,
19751
19687
  isNineProduct && (React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, isActive: index === activeIndex, isNineProduct: isNineProduct })),
19752
- ((_l = rec === null || rec === void 0 ? void 0 : rec.video) === null || _l === void 0 ? void 0 : _l.title) && !isShowMore && React.createElement("div", { className: 'clc-sxp-bottom-shadow' }),
19753
- React.createElement("div", { className: 'clc-sxp-bottom', style: { marginBottom: `${(_m = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.bottomInfoDist) !== null && _m !== void 0 ? _m : 40}px` } },
19688
+ ((_h = rec === null || rec === void 0 ? void 0 : rec.video) === null || _h === void 0 ? void 0 : _h.title) && !isShowMore && React.createElement("div", { className: 'clc-sxp-bottom-shadow' }),
19689
+ React.createElement("div", { className: 'clc-sxp-bottom', style: { marginBottom: `${(_j = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.bottomInfoDist) !== null && _j !== void 0 ? _j : 40}px` } },
19754
19690
  React.createElement(Nudge, { nudge: nudge }),
19755
19691
  ((globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA) === undefined || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isShowCTA)) && !isNineProduct ? (React.createElement("div", { className: 'clc-sxp-bottom-card' },
19756
19692
  React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, isActive: index === activeIndex, includesCtaType: [] }))) : null,
19757
19693
  React.createElement("div", { style: { display: 'flex', flexDirection: 'column' } },
19758
- React.createElement(ExpandableText$1, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_p = (_o = rec === null || rec === void 0 ? void 0 : rec.video) === null || _o === void 0 ? void 0 : _o.title) !== null && _p !== void 0 ? _p : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }), onChange: onExpandableChange }),
19694
+ React.createElement(ExpandableText$1, { className: 'clc-sxp-bottom-text', isPost: true, foldText: tipText === null || tipText === void 0 ? void 0 : tipText.foldText, unfoldText: tipText === null || tipText === void 0 ? void 0 : tipText.unfoldText, text: (_l = (_k = rec === null || rec === void 0 ? void 0 : rec.video) === null || _k === void 0 ? void 0 : _k.title) !== null && _l !== void 0 ? _l : '', style: Object.assign(Object.assign({}, descStyle), { textShadow: (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.isOpenTextShadow) ? '2px 2px 4px rgba(0, 0, 0, 0.5)' : 'none' }), onChange: onExpandableChange }),
19759
19695
  React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLink'], isActive: index === activeIndex }),
19760
- React.createElement(Hashtag$1, { index: activeIndex, tags: (_r = (_q = rec === null || rec === void 0 ? void 0 : rec.video) === null || _q === void 0 ? void 0 : _q.hashTags) !== null && _r !== void 0 ? _r : [], itemId: (_s = rec === null || rec === void 0 ? void 0 : rec.video) === null || _s === void 0 ? void 0 : _s.itemId, itemType: ((_t = rec === null || rec === void 0 ? void 0 : rec.video) === null || _t === void 0 ? void 0 : _t.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle, hashTagRightMargin: containerWidth - (hashTagRightMargin !== null && hashTagRightMargin !== void 0 ? hashTagRightMargin : 0) }))),
19696
+ React.createElement(Hashtag$1, { index: activeIndex, tags: (_o = (_m = rec === null || rec === void 0 ? void 0 : rec.video) === null || _m === void 0 ? void 0 : _m.hashTags) !== null && _o !== void 0 ? _o : [], itemId: (_p = rec === null || rec === void 0 ? void 0 : rec.video) === null || _p === void 0 ? void 0 : _p.itemId, itemType: ((_q = rec === null || rec === void 0 ? void 0 : rec.video) === null || _q === void 0 ? void 0 : _q.itemId) ? 'VIDEO' : null, rec: rec, hashTagStyle: hashTagStyle, hashTagRightMargin: containerWidth - (hashTagRightMargin !== null && hashTagRightMargin !== void 0 ? hashTagRightMargin : 0) }))),
19761
19697
  React.createElement(RenderCard$1, { rec: rec, index: index, tempMap: tempMap, resolver: resolver, includesCtaType: ['AniLinkPopup'], isActive: index === activeIndex })));
19762
19698
  }
19763
19699
  return null;
@@ -19799,7 +19735,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19799
19735
  return null;
19800
19736
  }, [globalConfig, waterFallData, bottomHeight]);
19801
19737
  const handleViewImageStartEnd = (item) => {
19802
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
19738
+ var _a, _b, _c, _d, _e, _f;
19803
19739
  if (!((_a = item === null || item === void 0 ? void 0 : item.video) === null || _a === void 0 ? void 0 : _a.url) && ((_b = item === null || item === void 0 ? void 0 : item.video) === null || _b === void 0 ? void 0 : _b.imgUrls)) {
19804
19740
  const endTime = Date.now();
19805
19741
  const duration = viewImageStartTime.current === 0 ? 0 : (endTime - viewImageStartTime.current) / 1000;
@@ -19808,11 +19744,10 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19808
19744
  eventSubject: 'viewImageCarouselEnd',
19809
19745
  eventDescription: 'User end view the image carousel',
19810
19746
  contentId: (_d = (_c = item === null || item === void 0 ? void 0 : item.video) === null || _c === void 0 ? void 0 : _c.itemId) !== null && _d !== void 0 ? _d : '',
19811
- sceneId: (_g = (_f = (_e = item === null || item === void 0 ? void 0 : item.video) === null || _e === void 0 ? void 0 : _e.scene) === null || _f === void 0 ? void 0 : _f.sceneId) !== null && _g !== void 0 ? _g : '',
19812
- contentName: (_h = item === null || item === void 0 ? void 0 : item.video.title) !== null && _h !== void 0 ? _h : '',
19747
+ contentName: (_e = item === null || item === void 0 ? void 0 : item.video.title) !== null && _e !== void 0 ? _e : '',
19813
19748
  imageEndTime: `${endTime}`,
19814
19749
  playDuration: `${duration}`,
19815
- contentTags: JSON.stringify((_j = item === null || item === void 0 ? void 0 : item.video.tags) !== null && _j !== void 0 ? _j : []),
19750
+ contentTags: JSON.stringify((_f = item === null || item === void 0 ? void 0 : item.video.tags) !== null && _f !== void 0 ? _f : []),
19816
19751
  position: activeIndex + '',
19817
19752
  contentFormat: 'image',
19818
19753
  traceInfo: item === null || item === void 0 ? void 0 : item.video.traceInfo
@@ -19821,7 +19756,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19821
19756
  }
19822
19757
  };
19823
19758
  const handleSlideSkip = (item, position) => {
19824
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0;
19759
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x;
19825
19760
  if (isPreview || waterFallData)
19826
19761
  return;
19827
19762
  const t = new Date() - curTime.current;
@@ -19847,8 +19782,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19847
19782
  contentTags: (product === null || product === void 0 ? void 0 : product.tags) ? JSON.stringify(product === null || product === void 0 ? void 0 : product.tags) : '',
19848
19783
  position: position + '',
19849
19784
  contentId: (_t = (_s = item === null || item === void 0 ? void 0 : item.video) === null || _s === void 0 ? void 0 : _s.itemId) !== null && _t !== void 0 ? _t : '',
19850
- sceneId: (_w = (_v = (_u = item === null || item === void 0 ? void 0 : item.video) === null || _u === void 0 ? void 0 : _u.scene) === null || _v === void 0 ? void 0 : _v.sceneId) !== null && _w !== void 0 ? _w : '',
19851
- traceInfo: (_0 = (_y = (_x = item === null || item === void 0 ? void 0 : item.video) === null || _x === void 0 ? void 0 : _x.traceInfo) !== null && _y !== void 0 ? _y : (_z = item === null || item === void 0 ? void 0 : item.product) === null || _z === void 0 ? void 0 : _z.traceInfo) !== null && _0 !== void 0 ? _0 : '',
19785
+ traceInfo: (_x = (_v = (_u = item === null || item === void 0 ? void 0 : item.video) === null || _u === void 0 ? void 0 : _u.traceInfo) !== null && _v !== void 0 ? _v : (_w = item === null || item === void 0 ? void 0 : item.product) === null || _w === void 0 ? void 0 : _w.traceInfo) !== null && _x !== void 0 ? _x : '',
19852
19786
  contentFormat
19853
19787
  }
19854
19788
  });
@@ -19858,7 +19792,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19858
19792
  }
19859
19793
  };
19860
19794
  const handleScrollEvent = (swiper) => {
19861
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16;
19795
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10;
19862
19796
  const item = data[swiper.previousIndex];
19863
19797
  const activeItem = data[swiper.activeIndex];
19864
19798
  if (!item)
@@ -19891,12 +19825,11 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19891
19825
  eventSubject: 'scrollDown',
19892
19826
  eventDescription: 'User scroll down',
19893
19827
  contentId: (_u = (_t = item === null || item === void 0 ? void 0 : item.video) === null || _t === void 0 ? void 0 : _t.itemId) !== null && _u !== void 0 ? _u : '',
19894
- sceneId: (_x = (_w = (_v = item === null || item === void 0 ? void 0 : item.video) === null || _v === void 0 ? void 0 : _v.scene) === null || _w === void 0 ? void 0 : _w.sceneId) !== null && _x !== void 0 ? _x : '',
19895
- productId: (_z = (_y = item === null || item === void 0 ? void 0 : item.product) === null || _y === void 0 ? void 0 : _y.itemId) !== null && _z !== void 0 ? _z : '',
19828
+ productId: (_w = (_v = item === null || item === void 0 ? void 0 : item.product) === null || _v === void 0 ? void 0 : _v.itemId) !== null && _w !== void 0 ? _w : '',
19896
19829
  requestId: null,
19897
- traceInfo: (_3 = (_1 = (_0 = item === null || item === void 0 ? void 0 : item.video) === null || _0 === void 0 ? void 0 : _0.traceInfo) !== null && _1 !== void 0 ? _1 : (_2 = item === null || item === void 0 ? void 0 : item.product) === null || _2 === void 0 ? void 0 : _2.traceInfo) !== null && _3 !== void 0 ? _3 : '',
19830
+ traceInfo: (_0 = (_y = (_x = item === null || item === void 0 ? void 0 : item.video) === null || _x === void 0 ? void 0 : _x.traceInfo) !== null && _y !== void 0 ? _y : (_z = item === null || item === void 0 ? void 0 : item.product) === null || _z === void 0 ? void 0 : _z.traceInfo) !== null && _0 !== void 0 ? _0 : '',
19898
19831
  contentFormat,
19899
- position: ((_4 = swiper.previousIndex) !== null && _4 !== void 0 ? _4 : 0) + ''
19832
+ position: ((_1 = swiper.previousIndex) !== null && _1 !== void 0 ? _1 : 0) + ''
19900
19833
  }
19901
19834
  });
19902
19835
  // 如果上一个商品是图片集,需上报 浏览图片集结结束 事件
@@ -19909,13 +19842,12 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
19909
19842
  eventInfo: {
19910
19843
  eventSubject: 'scrollUp',
19911
19844
  eventDescription: 'User scroll up',
19912
- contentId: (_6 = (_5 = item === null || item === void 0 ? void 0 : item.video) === null || _5 === void 0 ? void 0 : _5.itemId) !== null && _6 !== void 0 ? _6 : '',
19913
- sceneId: (_9 = (_8 = (_7 = item === null || item === void 0 ? void 0 : item.video) === null || _7 === void 0 ? void 0 : _7.scene) === null || _8 === void 0 ? void 0 : _8.sceneId) !== null && _9 !== void 0 ? _9 : '',
19914
- productId: (_11 = (_10 = item.product) === null || _10 === void 0 ? void 0 : _10.itemId) !== null && _11 !== void 0 ? _11 : '',
19845
+ contentId: (_3 = (_2 = item === null || item === void 0 ? void 0 : item.video) === null || _2 === void 0 ? void 0 : _2.itemId) !== null && _3 !== void 0 ? _3 : '',
19846
+ productId: (_5 = (_4 = item.product) === null || _4 === void 0 ? void 0 : _4.itemId) !== null && _5 !== void 0 ? _5 : '',
19915
19847
  requestId: null,
19916
- traceInfo: (_15 = (_13 = (_12 = item === null || item === void 0 ? void 0 : item.video) === null || _12 === void 0 ? void 0 : _12.traceInfo) !== null && _13 !== void 0 ? _13 : (_14 = item === null || item === void 0 ? void 0 : item.product) === null || _14 === void 0 ? void 0 : _14.traceInfo) !== null && _15 !== void 0 ? _15 : '',
19848
+ traceInfo: (_9 = (_7 = (_6 = item === null || item === void 0 ? void 0 : item.video) === null || _6 === void 0 ? void 0 : _6.traceInfo) !== null && _7 !== void 0 ? _7 : (_8 = item === null || item === void 0 ? void 0 : item.product) === null || _8 === void 0 ? void 0 : _8.traceInfo) !== null && _9 !== void 0 ? _9 : '',
19917
19849
  contentFormat,
19918
- position: ((_16 = swiper.previousIndex) !== null && _16 !== void 0 ? _16 : 0) + ''
19850
+ position: ((_10 = swiper.previousIndex) !== null && _10 !== void 0 ? _10 : 0) + ''
19919
19851
  }
19920
19852
  });
19921
19853
  // 如果上一个商品是图片集,需上报 浏览图片集结结束 事件
@@ -20015,7 +19947,7 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
20015
19947
  };
20016
19948
  }, [globalConfig, bffEventReport, data, activeIndex]);
20017
19949
  const handleViewImageStartEvent = (activeIndex, imgInfo, enableCapi) => {
20018
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
19950
+ var _a, _b, _c, _d, _e, _f, _g, _h;
20019
19951
  const item = data[activeIndex];
20020
19952
  // 如果是图片集则上报事件
20021
19953
  if (!((_a = item === null || item === void 0 ? void 0 : item.video) === null || _a === void 0 ? void 0 : _a.url) && ((_b = item === null || item === void 0 ? void 0 : item.video) === null || _b === void 0 ? void 0 : _b.imgUrls)) {
@@ -20026,10 +19958,9 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
20026
19958
  eventSubject: 'viewImageCarouselStart',
20027
19959
  eventDescription: 'User start view the image carousel',
20028
19960
  contentId: (_d = (_c = item === null || item === void 0 ? void 0 : item.video) === null || _c === void 0 ? void 0 : _c.itemId) !== null && _d !== void 0 ? _d : '',
20029
- sceneId: (_g = (_f = (_e = item === null || item === void 0 ? void 0 : item.video) === null || _e === void 0 ? void 0 : _e.scene) === null || _f === void 0 ? void 0 : _f.sceneId) !== null && _g !== void 0 ? _g : '',
20030
- contentName: (_h = item === null || item === void 0 ? void 0 : item.video.title) !== null && _h !== void 0 ? _h : '',
19961
+ contentName: (_e = item === null || item === void 0 ? void 0 : item.video.title) !== null && _e !== void 0 ? _e : '',
20031
19962
  imageStartTime: `${startTime}`,
20032
- contentTags: JSON.stringify((_j = item === null || item === void 0 ? void 0 : item.video.tags) !== null && _j !== void 0 ? _j : []),
19963
+ contentTags: JSON.stringify((_f = item === null || item === void 0 ? void 0 : item.video.tags) !== null && _f !== void 0 ? _f : []),
20033
19964
  position: activeIndex + '',
20034
19965
  contentFormat: 'image',
20035
19966
  traceInfo: item === null || item === void 0 ? void 0 : item.video.traceInfo,
@@ -20039,13 +19970,13 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
20039
19970
  if (enableCapi) {
20040
19971
  bffFbReport === null || bffFbReport === void 0 ? void 0 : bffFbReport({
20041
19972
  eventName: 'ViewContent',
20042
- product: (_k = item === null || item === void 0 ? void 0 : item.video) === null || _k === void 0 ? void 0 : _k.bindProducts,
19973
+ product: (_g = item === null || item === void 0 ? void 0 : item.video) === null || _g === void 0 ? void 0 : _g.bindProducts,
20043
19974
  rec: item,
20044
19975
  position: activeIndex
20045
19976
  });
20046
19977
  bffFbReport === null || bffFbReport === void 0 ? void 0 : bffFbReport({
20047
19978
  eventName: 'PageView',
20048
- product: (_l = item === null || item === void 0 ? void 0 : item.video) === null || _l === void 0 ? void 0 : _l.bindProducts,
19979
+ product: (_h = item === null || item === void 0 ? void 0 : item.video) === null || _h === void 0 ? void 0 : _h.bindProducts,
20049
19980
  rec: item,
20050
19981
  position: activeIndex
20051
19982
  });
@@ -20143,20 +20074,15 @@ const SxpPageRender = ({ globalConfig, descStyle, containerHeight, containerWidt
20143
20074
  swiperRef.current.swiper.allowTouchMove = true;
20144
20075
  }, 500);
20145
20076
  }, onActiveIndexChange: (swiper) => {
20146
- var _a, _b;
20147
20077
  setActiveIndex(swiper.activeIndex);
20148
20078
  if (openHashtag)
20149
20079
  return;
20150
20080
  // 处理上滑下滑事件
20151
20081
  handleScrollEvent(swiper);
20152
- if (waterFallData || isEditor)
20082
+ if (waterFallData || isEditor || isDiyH5)
20153
20083
  return;
20154
20084
  if ((swiper === null || swiper === void 0 ? void 0 : swiper.activeIndex) + 1 >= (data === null || data === void 0 ? void 0 : data.length)) {
20155
20085
  if (!isLoadMore) {
20156
- if (isDiyH5) {
20157
- (_a = videoWidgetRef.current) === null || _a === void 0 ? void 0 : _a.setLoopPlay(false);
20158
- (_b = pictureGroupRef.current) === null || _b === void 0 ? void 0 : _b.setLoopPlay(false);
20159
- }
20160
20086
  setIsLoadMore(true);
20161
20087
  loadVideos === null || loadVideos === void 0 ? void 0 : loadVideos(pageNum).then((res) => {
20162
20088
  var _a;
@@ -20229,7 +20155,7 @@ const VideoWidget$2 = ({ rec, index, height, data, muted, activeIndex, videoPost
20229
20155
  }, []);
20230
20156
  const PAUSE_ICON = useIconLink('/pb_static/06f28a2025c74c1cb49be6767316d827.png');
20231
20157
  const handlePlaying = React.useCallback(() => {
20232
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
20158
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
20233
20159
  setIsPauseVideo(false);
20234
20160
  const item = data[index];
20235
20161
  if (item && ((_a = videoRef === null || videoRef === void 0 ? void 0 : videoRef.current) === null || _a === void 0 ? void 0 : _a.duration)) {
@@ -20242,15 +20168,14 @@ const VideoWidget$2 = ({ rec, index, height, data, muted, activeIndex, videoPost
20242
20168
  eventSubject: 'playVideo',
20243
20169
  eventDescription: 'User played the video',
20244
20170
  contentId: (_h = (_g = item === null || item === void 0 ? void 0 : item.video) === null || _g === void 0 ? void 0 : _g.itemId) !== null && _h !== void 0 ? _h : '',
20245
- sceneId: (_l = (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.scene) === null || _k === void 0 ? void 0 : _k.sceneId) !== null && _l !== void 0 ? _l : '',
20246
- contentName: (_o = (_m = item === null || item === void 0 ? void 0 : item.video) === null || _m === void 0 ? void 0 : _m.title) !== null && _o !== void 0 ? _o : '',
20171
+ contentName: (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.title) !== null && _k !== void 0 ? _k : '',
20247
20172
  playType,
20248
20173
  startTime: videoCurrentTime,
20249
20174
  videoDuration,
20250
- contentTags: JSON.stringify((_q = (_p = item === null || item === void 0 ? void 0 : item.video) === null || _p === void 0 ? void 0 : _p.tags) !== null && _q !== void 0 ? _q : []),
20175
+ contentTags: JSON.stringify((_m = (_l = item === null || item === void 0 ? void 0 : item.video) === null || _l === void 0 ? void 0 : _l.tags) !== null && _m !== void 0 ? _m : []),
20251
20176
  position: index + '',
20252
20177
  contentFormat: 'video',
20253
- traceInfo: (_r = item === null || item === void 0 ? void 0 : item.video) === null || _r === void 0 ? void 0 : _r.traceInfo
20178
+ traceInfo: (_o = item === null || item === void 0 ? void 0 : item.video) === null || _o === void 0 ? void 0 : _o.traceInfo
20254
20179
  }
20255
20180
  });
20256
20181
  setIsFirstPlay(false);
@@ -20289,7 +20214,7 @@ const VideoWidget$2 = ({ rec, index, height, data, muted, activeIndex, videoPost
20289
20214
  }
20290
20215
  }, [isLoadFinish]);
20291
20216
  const onPause = React.useCallback(() => {
20292
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
20217
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
20293
20218
  const item = data[index];
20294
20219
  const videoDuration = ((_b = (_a = videoRef.current) === null || _a === void 0 ? void 0 : _a.duration) !== null && _b !== void 0 ? _b : 0).toFixed(2);
20295
20220
  const videoCurrentTime = ((_d = (_c = videoRef.current) === null || _c === void 0 ? void 0 : _c.currentTime) !== null && _d !== void 0 ? _d : 0).toFixed(2);
@@ -20300,15 +20225,14 @@ const VideoWidget$2 = ({ rec, index, height, data, muted, activeIndex, videoPost
20300
20225
  eventSubject: 'playOverVideo',
20301
20226
  eventDescription: 'User finished playing the video',
20302
20227
  contentId: (_h = (_g = item === null || item === void 0 ? void 0 : item.video) === null || _g === void 0 ? void 0 : _g.itemId) !== null && _h !== void 0 ? _h : '',
20303
- sceneId: (_l = (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.scene) === null || _k === void 0 ? void 0 : _k.sceneId) !== null && _l !== void 0 ? _l : '',
20304
- contentName: (_o = (_m = item === null || item === void 0 ? void 0 : item.video) === null || _m === void 0 ? void 0 : _m.title) !== null && _o !== void 0 ? _o : '',
20228
+ contentName: (_k = (_j = item === null || item === void 0 ? void 0 : item.video) === null || _j === void 0 ? void 0 : _j.title) !== null && _k !== void 0 ? _k : '',
20305
20229
  endTime: videoCurrentTime,
20306
20230
  videoDuration,
20307
20231
  playDuration,
20308
- contentTags: JSON.stringify((_q = (_p = item === null || item === void 0 ? void 0 : item.video) === null || _p === void 0 ? void 0 : _p.tags) !== null && _q !== void 0 ? _q : []),
20232
+ contentTags: JSON.stringify((_m = (_l = item === null || item === void 0 ? void 0 : item.video) === null || _l === void 0 ? void 0 : _l.tags) !== null && _m !== void 0 ? _m : []),
20309
20233
  position: index + '',
20310
20234
  contentFormat: 'video',
20311
- traceInfo: (_r = item === null || item === void 0 ? void 0 : item.video) === null || _r === void 0 ? void 0 : _r.traceInfo
20235
+ traceInfo: (_o = item === null || item === void 0 ? void 0 : item.video) === null || _o === void 0 ? void 0 : _o.traceInfo
20312
20236
  }
20313
20237
  });
20314
20238
  }