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/pb-ui.js
CHANGED
@@ -986,6 +986,7 @@
|
|
986
986
|
if (!enableReportEvent || (globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.enablePreview)) {
|
987
987
|
return;
|
988
988
|
}
|
989
|
+
let isPushState = false;
|
989
990
|
const pixelEventParamsJson = (_a = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.pixel) === null || _a === void 0 ? void 0 : _a[eventName];
|
990
991
|
if ((pixelEventParamsJson === null || pixelEventParamsJson === void 0 ? void 0 : pixelEventParamsJson.event_name) && typeof (window === null || window === void 0 ? void 0 : window.fbq) === 'function') {
|
991
992
|
function updateQueryStringParameter(uri, key, value) {
|
@@ -1001,32 +1002,33 @@
|
|
1001
1002
|
if (eventName === 'PageView' && (pixelEventParamsJson === null || pixelEventParamsJson === void 0 ? void 0 : pixelEventParamsJson.event_name) === 'PageView') {
|
1002
1003
|
if (!pixelPvStatusRef.current) {
|
1003
1004
|
pixelPvStatusRef.current = true;
|
1004
|
-
return;
|
1005
1005
|
}
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1006
|
+
else {
|
1007
|
+
const currentUrl = window.location.href;
|
1008
|
+
const newUrl = updateQueryStringParameter(currentUrl, 'timestamp', Date.now());
|
1009
|
+
history.pushState({ path: newUrl }, '', newUrl);
|
1010
|
+
isPushState = true;
|
1011
|
+
}
|
1009
1012
|
}
|
1010
1013
|
else {
|
1011
1014
|
const body = getEventParamsByJson(pixelEventParamsJson);
|
1012
1015
|
window === null || window === void 0 ? void 0 : window.fbq('track', pixelEventParamsJson === null || pixelEventParamsJson === void 0 ? void 0 : pixelEventParamsJson.event_name, body);
|
1013
|
-
if (eventName === 'PageView' && typeof (window === null || window === void 0 ? void 0 : window.gtag) === 'function') {
|
1014
|
-
window === null || window === void 0 ? void 0 : window.gtag('event', 'page_view');
|
1015
|
-
}
|
1016
1016
|
}
|
1017
1017
|
}
|
1018
|
-
|
1019
|
-
window === null || window === void 0 ? void 0 : window.gtag
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1018
|
+
if (!isPushState) {
|
1019
|
+
if (eventName === 'PageView' && typeof (window === null || window === void 0 ? void 0 : window.gtag) === 'function') {
|
1020
|
+
window === null || window === void 0 ? void 0 : window.gtag('event', 'page_view');
|
1021
|
+
}
|
1022
|
+
const tiktokPixelEventParamsJson = (_b = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.tiktokPixel) === null || _b === void 0 ? void 0 : _b[eventName];
|
1023
|
+
if ((tiktokPixelEventParamsJson === null || tiktokPixelEventParamsJson === void 0 ? void 0 : tiktokPixelEventParamsJson.event_name) &&
|
1024
|
+
typeof (window === null || window === void 0 ? void 0 : window.ttq) === 'object' &&
|
1025
|
+
typeof ((_c = window === null || window === void 0 ? void 0 : window.ttq) === null || _c === void 0 ? void 0 : _c.track) === 'function') {
|
1026
|
+
(_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);
|
1027
|
+
}
|
1028
|
+
const snapchatPixelEventParamsJson = (_e = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.snapchatPixel) === null || _e === void 0 ? void 0 : _e[eventName];
|
1029
|
+
if ((snapchatPixelEventParamsJson === null || snapchatPixelEventParamsJson === void 0 ? void 0 : snapchatPixelEventParamsJson.event_name) && typeof (window === null || window === void 0 ? void 0 : window.snaptr) === 'function') {
|
1030
|
+
window === null || window === void 0 ? void 0 : window.snaptr('track', snapchatPixelEventParamsJson === null || snapchatPixelEventParamsJson === void 0 ? void 0 : snapchatPixelEventParamsJson.event_name, snapchatPixelEventParamsJson);
|
1031
|
+
}
|
1030
1032
|
}
|
1031
1033
|
const converApiEventParamsJson = (_f = globalConfig === null || globalConfig === void 0 ? void 0 : globalConfig.converApi) === null || _f === void 0 ? void 0 : _f[eventName];
|
1032
1034
|
if (enabledMetaConversionApi && converApiEventParamsJson) {
|