pb-sxp-ui 1.15.34 → 1.15.36
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.
- package/dist/index.cjs +21 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +21 -19
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +4 -4
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +4 -4
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +21 -19
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +4 -4
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/context/SxpDataSourceProvider.js +21 -19
- package/lib/core/context/SxpDataSourceProvider.js +21 -19
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -971,6 +971,7 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
|
|
971
971
|
if (!enableReportEvent || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview)) {
|
972
972
|
return;
|
973
973
|
}
|
974
|
+
let isPushState = false;
|
974
975
|
const pixelEventParamsJson = (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.pixel) === null || _a === void 0 ? void 0 : _a[eventName];
|
975
976
|
if ((pixelEventParamsJson === null || pixelEventParamsJson === void 0 ? void 0 : pixelEventParamsJson.event_name) && typeof (window === null || window === void 0 ? void 0 : window.fbq) === 'function') {
|
976
977
|
function updateQueryStringParameter(uri, key, value) {
|
@@ -986,32 +987,33 @@ const SxpDataSourceProvider = ({ render, dataSources, utmVal, enableReportEvent
|
|
986
987
|
if (eventName === 'PageView' && (pixelEventParamsJson === null || pixelEventParamsJson === void 0 ? void 0 : pixelEventParamsJson.event_name) === 'PageView') {
|
987
988
|
if (!pixelPvStatusRef.current) {
|
988
989
|
pixelPvStatusRef.current = true;
|
989
|
-
return;
|
990
990
|
}
|
991
|
-
|
992
|
-
|
993
|
-
|
991
|
+
else {
|
992
|
+
const currentUrl = window.location.href;
|
993
|
+
const newUrl = updateQueryStringParameter(currentUrl, 'timestamp', Date.now());
|
994
|
+
history.pushState({ path: newUrl }, '', newUrl);
|
995
|
+
isPushState = true;
|
996
|
+
}
|
994
997
|
}
|
995
998
|
else {
|
996
999
|
const body = getEventParamsByJson(pixelEventParamsJson);
|
997
1000
|
window === null || window === void 0 ? void 0 : window.fbq('track', pixelEventParamsJson === null || pixelEventParamsJson === void 0 ? void 0 : pixelEventParamsJson.event_name, body);
|
998
|
-
if (eventName === 'PageView' && typeof (window === null || window === void 0 ? void 0 : window.gtag) === 'function') {
|
999
|
-
window === null || window === void 0 ? void 0 : window.gtag('event', 'page_view');
|
1000
|
-
}
|
1001
1001
|
}
|
1002
1002
|
}
|
1003
|
-
|
1004
|
-
window === null || window === void 0 ? void 0 : window.gtag
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1003
|
+
if (!isPushState) {
|
1004
|
+
if (eventName === 'PageView' && typeof (window === null || window === void 0 ? void 0 : window.gtag) === 'function') {
|
1005
|
+
window === null || window === void 0 ? void 0 : window.gtag('event', 'page_view');
|
1006
|
+
}
|
1007
|
+
const tiktokPixelEventParamsJson = (_b = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.tiktokPixel) === null || _b === void 0 ? void 0 : _b[eventName];
|
1008
|
+
if ((tiktokPixelEventParamsJson === null || tiktokPixelEventParamsJson === void 0 ? void 0 : tiktokPixelEventParamsJson.event_name) &&
|
1009
|
+
typeof (window === null || window === void 0 ? void 0 : window.ttq) === 'object' &&
|
1010
|
+
typeof ((_c = window === null || window === void 0 ? void 0 : window.ttq) === null || _c === void 0 ? void 0 : _c.track) === 'function') {
|
1011
|
+
(_d = window === null || window === void 0 ? void 0 : window.ttq) === null || _d === void 0 ? void 0 : _d.track(tiktokPixelEventParamsJson === null || tiktokPixelEventParamsJson === void 0 ? void 0 : tiktokPixelEventParamsJson.event_name, tiktokPixelEventParamsJson);
|
1012
|
+
}
|
1013
|
+
const snapchatPixelEventParamsJson = (_e = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.snapchatPixel) === null || _e === void 0 ? void 0 : _e[eventName];
|
1014
|
+
if ((snapchatPixelEventParamsJson === null || snapchatPixelEventParamsJson === void 0 ? void 0 : snapchatPixelEventParamsJson.event_name) && typeof (window === null || window === void 0 ? void 0 : window.snaptr) === 'function') {
|
1015
|
+
window === null || window === void 0 ? void 0 : window.snaptr('track', snapchatPixelEventParamsJson === null || snapchatPixelEventParamsJson === void 0 ? void 0 : snapchatPixelEventParamsJson.event_name, snapchatPixelEventParamsJson);
|
1016
|
+
}
|
1015
1017
|
}
|
1016
1018
|
const converApiEventParamsJson = (_f = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.converApi) === null || _f === void 0 ? void 0 : _f[eventName];
|
1017
1019
|
if (enabledMetaConversionApi && converApiEventParamsJson) {
|