@useinsider/guido 2.1.0-beta.36cf49a → 2.1.0-beta.37f9328
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/README.md +41 -2
- package/dist/components/Guido.vue.js +1 -1
- package/dist/components/Guido.vue2.js +66 -66
- package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
- package/dist/composables/useHtmlValidator.js +114 -104
- package/dist/composables/useRecommendation.js +54 -21
- package/dist/composables/useSave.js +16 -12
- package/dist/composables/useStripo.js +63 -57
- package/dist/composables/useStripoEventHandler.js +27 -12
- package/dist/composables/useSyncModuleExtractor.js +45 -0
- package/dist/composables/useVersionHistoryApi.js +1 -1
- package/dist/config/compiler/recommendationCompilerRules.js +45 -39
- package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
- package/dist/config/i18n/en/index.js +11 -0
- package/dist/config/i18n/en/labels.json.js +7 -0
- package/dist/config/i18n/en/toasters.json.js +56 -0
- package/dist/config/i18n/en/tooltips.json.js +82 -0
- package/dist/config/i18n/index.js +7 -0
- package/dist/config/migrator/recommendationMigrator.js +2 -2
- package/dist/enums/extensions/recommendationBlock.js +1 -1
- package/dist/enums/recommendation.js +16 -15
- package/dist/enums/unsubscribe.js +25 -21
- package/dist/extensions/Blocks/Recommendation/block.js +133 -9
- package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
- package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
- package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
- package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
- package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
- package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
- package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
- package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
- package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
- package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/index.js +250 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
- package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
- package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
- package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
- package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
- package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextAfterControl.js → omnibusDiscount/textAfter.js} +16 -14
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextBeforeControl.js → omnibusDiscount/textBefore.js} +16 -14
- package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextAfterControl.js → omnibusPrice/textAfter.js} +16 -14
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextBeforeControl.js → omnibusPrice/textBefore.js} +14 -12
- package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
- package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
- package/dist/extensions/Blocks/Recommendation/extension.js +40 -17
- package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +19 -3
- package/dist/extensions/Blocks/Recommendation/recommendation.css.js +13 -4
- package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
- package/dist/extensions/Blocks/Recommendation/settingsPanel.js +21 -10
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +254 -207
- package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
- package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
- package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
- package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
- package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
- package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
- package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
- package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
- package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
- package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +26 -15
- package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
- package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
- package/dist/extensions/Blocks/controlFactories.js +125 -93
- package/dist/guido.css +1 -1
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +242 -186
- package/dist/services/recommendationApi.js +11 -8
- package/dist/services/stripoApi.js +56 -17
- package/dist/services/templateLibraryApi.js +16 -13
- package/dist/src/@types/config/schemas.d.ts +1 -1
- package/dist/src/@types/events.d.ts +38 -2
- package/dist/src/components/Guido.vue.d.ts +2 -2
- package/dist/src/components/organisms/header/EditorActions.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/HeaderWrapper.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
- package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
- package/dist/src/composables/useGuidoActions.d.ts +1 -1
- package/dist/src/composables/useRecommendation.d.ts +1 -0
- package/dist/src/composables/useSave.d.ts +2 -2
- package/dist/src/composables/useStripo.d.ts +2 -2
- package/dist/src/composables/useSyncModuleExtractor.d.ts +4 -0
- package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
- package/dist/src/config/i18n/en/index.d.ts +1 -0
- package/dist/src/config/i18n/index.d.ts +16 -0
- package/dist/src/enums/unsubscribe.d.ts +3 -0
- package/dist/src/extensions/Blocks/Recommendation/block.d.ts +67 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
- package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +0 -24
- package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
- package/dist/src/extensions/Blocks/Recommendation/{cardCompositionControl.d.ts → controls/cardComposition/index.d.ts} +23 -3
- package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +21 -589
- package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +79 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
- package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
- package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
- package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +138 -468
- package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
- package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
- package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
- package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
- package/dist/src/mock/api/settings.d.ts +2 -0
- package/dist/src/services/stripoApi.d.ts +5 -0
- package/dist/src/stores/editor.d.ts +23 -0
- package/dist/src/utils/templatePreparation.d.ts +1 -1
- package/dist/static/styles/components/notification.css.js +18 -0
- package/dist/static/styles/components/tools.css.js +6 -2
- package/dist/static/styles/customEditorStyle.css.js +35 -11
- package/dist/static/styles/variables.css.js +2 -0
- package/dist/static/templates/empty/index.html.js +74 -0
- package/dist/static/templates/empty/style.css.js +779 -0
- package/dist/stores/editor.js +2 -1
- package/dist/utils/pairProductVariables.js +57 -56
- package/dist/utils/templatePreparation.js +16 -15
- package/package.json +1 -1
- package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -187
- package/dist/extensions/Blocks/Recommendation/constants.js +0 -13
- package/dist/extensions/Blocks/Recommendation/control.js +0 -336
- package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +0 -68
- package/dist/extensions/Blocks/Recommendation/controls/index.js +0 -245
- package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +0 -74
- package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +0 -188
- package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -181
- package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -189
- package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -209
- package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -38
- package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +0 -16
- package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
- package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -52
|
@@ -1,27 +1,60 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { RecommendationFeedSourceMaps as g, URLS as p } from "../enums/extensions/recommendationBlock.js";
|
|
2
|
+
import { MinDeviceViewport as R, DefaultPadding as b } from "../enums/recommendation.js";
|
|
3
|
+
import { useRecommendationExtensionStore as l } from "../extensions/Blocks/Recommendation/store/recommendation.js";
|
|
4
|
+
import { generateCompleteFilterQuery as x } from "../extensions/Blocks/Recommendation/utils/filterUtil.js";
|
|
5
|
+
import { useConfigStore as C } from "../stores/config.js";
|
|
6
|
+
const N = () => ({
|
|
3
7
|
calculateCardWidth: ({
|
|
4
|
-
mobileLeftPadding:
|
|
5
|
-
mobileRightPadding:
|
|
6
|
-
cardsInRow:
|
|
7
|
-
unresponsive:
|
|
8
|
+
mobileLeftPadding: i,
|
|
9
|
+
mobileRightPadding: n,
|
|
10
|
+
cardsInRow: o,
|
|
11
|
+
unresponsive: a
|
|
8
12
|
}) => {
|
|
9
|
-
const
|
|
10
|
-
return (
|
|
13
|
+
const r = a ? o : 1, e = i + n + (r - 1) * b;
|
|
14
|
+
return (R - e) / r;
|
|
11
15
|
},
|
|
12
|
-
getRecommendationCampaignData: (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
16
|
+
getRecommendationCampaignData: (i) => {
|
|
17
|
+
const n = l(), o = Number(i), a = n.blockStates[o];
|
|
18
|
+
if (!a)
|
|
19
|
+
return {
|
|
20
|
+
textTrimming: !1,
|
|
21
|
+
orientation: "vertical",
|
|
22
|
+
mobileLeftPadding: 0,
|
|
23
|
+
mobileRightPadding: 0,
|
|
24
|
+
cardsInRow: 2,
|
|
25
|
+
unresponsive: !1,
|
|
26
|
+
priceBeforeTextValue: "",
|
|
27
|
+
priceAfterTextValue: "",
|
|
28
|
+
discountBeforeTextValue: "",
|
|
29
|
+
discountAfterTextValue: ""
|
|
30
|
+
};
|
|
31
|
+
const { recommendationConfigs: r } = a, e = r.orientation === "grid" ? "vertical" : "horizontal";
|
|
32
|
+
return {
|
|
33
|
+
textTrimming: r.textTrimming,
|
|
34
|
+
orientation: e,
|
|
35
|
+
mobileLeftPadding: 0,
|
|
36
|
+
mobileRightPadding: 0,
|
|
37
|
+
cardsInRow: r.cardsInRow,
|
|
38
|
+
unresponsive: r.unresponsive,
|
|
39
|
+
priceBeforeTextValue: "",
|
|
40
|
+
priceAfterTextValue: "",
|
|
41
|
+
discountBeforeTextValue: "",
|
|
42
|
+
discountAfterTextValue: ""
|
|
43
|
+
};
|
|
44
|
+
},
|
|
45
|
+
buildCampaignUrl: (i) => {
|
|
46
|
+
var d;
|
|
47
|
+
const n = l(), o = C(), a = Number(i), r = n.blockStates[a];
|
|
48
|
+
if (!r)
|
|
49
|
+
return "";
|
|
50
|
+
const { recommendationConfigs: e } = r, u = ((d = g.find((s) => s.key === e.strategy)) == null ? void 0 : d.path) || "", t = new URLSearchParams();
|
|
51
|
+
t.set("locale", e.language), t.set("currency", e.currencySettings.value), t.set("partnerName", o.partnerName), t.set("size", e.size), t.set("details", "true"), t.set("campaignId", o.variationId), e.strategy === "manualMerchandising" ? t.set("productId", e.productIds.join(",")) : e.strategy === "similarViewed" && t.set("productId", "{itemId}");
|
|
52
|
+
const f = e.filters.filter((s) => s.isValid), c = x(f);
|
|
53
|
+
c && t.set("filter", c), e.shuffleProducts && t.set("shuffle", "true");
|
|
54
|
+
const m = `${p.RECOMMENDATION_API_URL}/v2/${u}?${t.toString()}`;
|
|
55
|
+
return n.recommendationCampaignUrls[i] = m, m;
|
|
56
|
+
}
|
|
24
57
|
});
|
|
25
58
|
export {
|
|
26
|
-
|
|
59
|
+
N as useRecommendation
|
|
27
60
|
};
|
|
@@ -1,17 +1,21 @@
|
|
|
1
|
-
import { useConfig as
|
|
2
|
-
import { useSaveStart as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { useConfig as d } from "./useConfig.js";
|
|
2
|
+
import { useSaveStart as p, useSaveComplete as f } from "./useGuidoActions.js";
|
|
3
|
+
import { useSyncModuleExtractor as v } from "./useSyncModuleExtractor.js";
|
|
4
|
+
import { useStripoApi as S } from "../services/stripoApi.js";
|
|
5
|
+
import { useTemplatePreparation as x } from "../utils/templatePreparation.js";
|
|
6
|
+
import { useHtmlValidator as V } from "./useHtmlValidator.js";
|
|
7
|
+
const g = () => {
|
|
8
|
+
const o = p(), s = f(), { validateHtml: i } = V(), { callbacks: a } = d(), { extractSyncModuleData: r } = v(), { setSyncModuleUnsubscriptionPages: n } = S();
|
|
9
|
+
return { save: async (l = !1) => {
|
|
8
10
|
var e;
|
|
9
|
-
|
|
10
|
-
const { prepareTemplateDetails:
|
|
11
|
-
if (await
|
|
12
|
-
return
|
|
11
|
+
o();
|
|
12
|
+
const { prepareTemplateDetails: c } = x(), t = await c();
|
|
13
|
+
if (!await i(t.compiledHtml, t.dynamicContentList, !0) || (e = a.value) != null && e.externalValidation && !await a.value.externalValidation(t))
|
|
14
|
+
return;
|
|
15
|
+
const { unsubscribePayload: m, stripoModules: u } = r(t.rawHtml);
|
|
16
|
+
return await n(m), t.modules = u, l || s(t), t;
|
|
13
17
|
} };
|
|
14
18
|
};
|
|
15
19
|
export {
|
|
16
|
-
|
|
20
|
+
g as useSave
|
|
17
21
|
};
|
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import { useActionsApi as
|
|
2
|
-
import { useBlocksConfig as
|
|
3
|
-
import { useConfig as
|
|
4
|
-
import { useCustomInterfaceAppearance as
|
|
5
|
-
import { useStripoEventHandler as
|
|
6
|
-
import { useToaster as
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import {
|
|
12
|
-
import
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
import { useActionsApi as A } from "./useActionsApi.js";
|
|
2
|
+
import { useBlocksConfig as F } from "./useBlocksConfig.js";
|
|
3
|
+
import { useConfig as D } from "./useConfig.js";
|
|
4
|
+
import { useCustomInterfaceAppearance as I } from "./useCustomInterfaceAppearance.js";
|
|
5
|
+
import { useStripoEventHandler as P } from "./useStripoEventHandler.js";
|
|
6
|
+
import { useToaster as U } from "./useToaster.js";
|
|
7
|
+
import { localePatch as R } from "../config/i18n/index.js";
|
|
8
|
+
import { displayConditions as H } from "../enums/displayConditions.js";
|
|
9
|
+
import { useStripoApi as O } from "../services/stripoApi.js";
|
|
10
|
+
import q from "../static/styles/customEditorStyle.css.js";
|
|
11
|
+
import { useEditorStore as S } from "../stores/editor.js";
|
|
12
|
+
import { dynamicContentToMergeTags as x } from "../utils/genericUtil.js";
|
|
13
|
+
import L from "../package.json.js";
|
|
14
|
+
const oe = (C, c) => {
|
|
15
|
+
const { features: l, template: E } = D(), { handleError: u } = U(), { getToken: h, getCustomFonts: w, getSyncModulesStatus: b } = O(), { handleEvent: k } = P(), { getStripoBlocksConfig: T } = F(), V = async (i, n = [], r = !1) => {
|
|
16
|
+
var f, g, y;
|
|
17
|
+
const e = S(), { html: m, css: a } = i, { baseBlocks: o, extensions: d } = await T(), p = ((f = l.value) == null ? void 0 : f.displayConditions) ?? !0, B = ((g = l.value) == null ? void 0 : g.modulesDisabled) ?? !1, v = ((y = E.value) == null ? void 0 : y.forceRecreate) ?? !1;
|
|
17
18
|
window.UIEditor.initEditor(
|
|
18
19
|
document.querySelector("#guido-editor"),
|
|
19
20
|
{
|
|
20
|
-
metadata:
|
|
21
|
-
html:
|
|
22
|
-
css:
|
|
23
|
-
forceRecreate:
|
|
21
|
+
metadata: C,
|
|
22
|
+
html: m,
|
|
23
|
+
css: a,
|
|
24
|
+
forceRecreate: v,
|
|
24
25
|
locale: "en",
|
|
25
26
|
undoButtonSelector: "#guido__undo-button",
|
|
26
27
|
redoButtonSelector: "#guido__redo-button",
|
|
@@ -30,19 +31,20 @@ const W = (c) => {
|
|
|
30
31
|
customAppearanceMergetags: !0,
|
|
31
32
|
customAppearanceMergetagsBorderColor: "#f1f3fe",
|
|
32
33
|
customAppearanceMergetagsBackgroundColor: "#f1f3fe",
|
|
33
|
-
customViewStyles:
|
|
34
|
-
conditionsEnabled:
|
|
35
|
-
customConditionsEnabled:
|
|
36
|
-
conditionCategories:
|
|
34
|
+
customViewStyles: q,
|
|
35
|
+
conditionsEnabled: p,
|
|
36
|
+
customConditionsEnabled: p,
|
|
37
|
+
conditionCategories: H,
|
|
37
38
|
enableXSSSecurity: !0,
|
|
38
|
-
modulesDisabled:
|
|
39
|
+
modulesDisabled: B,
|
|
40
|
+
syncModulesEnabled: r,
|
|
39
41
|
messageSettingsEnabled: !0,
|
|
40
42
|
displayGmailAnnotations: !0,
|
|
41
43
|
displayHiddenPreheader: !1,
|
|
42
44
|
displayTitle: !1,
|
|
43
45
|
displayUTM: !1,
|
|
44
46
|
selectElementAfterDrop: !0,
|
|
45
|
-
...
|
|
47
|
+
...o ? { baseBlocks: o } : {},
|
|
46
48
|
editorFonts: {
|
|
47
49
|
showDefaultStandardFonts: !0,
|
|
48
50
|
showDefaultNotStandardFonts: !0,
|
|
@@ -50,68 +52,72 @@ const W = (c) => {
|
|
|
50
52
|
},
|
|
51
53
|
mergeTags: [
|
|
52
54
|
{
|
|
53
|
-
entries:
|
|
55
|
+
entries: x(c.preselectedDynamicContentList)
|
|
54
56
|
}
|
|
55
57
|
],
|
|
56
|
-
async onTokenRefreshRequest(
|
|
58
|
+
async onTokenRefreshRequest(t) {
|
|
57
59
|
try {
|
|
58
|
-
const
|
|
59
|
-
|
|
60
|
-
} catch (
|
|
61
|
-
u(
|
|
60
|
+
const s = await h();
|
|
61
|
+
t(s);
|
|
62
|
+
} catch (s) {
|
|
63
|
+
u(s, "Failed to refresh token");
|
|
62
64
|
}
|
|
63
65
|
},
|
|
64
66
|
onTemplateLoaded() {
|
|
65
67
|
try {
|
|
66
|
-
const { importCss:
|
|
67
|
-
|
|
68
|
-
|
|
68
|
+
const { importCss: t } = I(), { activateCustomViewStyles: s, updateTimerInClonedTemplate: M } = A();
|
|
69
|
+
t(), s(), M(), c.onReady(), e.isStripoInitialized = !0, e.loadingStatus = !1, setTimeout(() => {
|
|
70
|
+
e.hasChanges = !1;
|
|
69
71
|
}, 1e3);
|
|
70
|
-
} catch (
|
|
71
|
-
u(
|
|
72
|
+
} catch (t) {
|
|
73
|
+
u(t, "Failed to load custom interface appearance");
|
|
72
74
|
}
|
|
73
75
|
},
|
|
74
|
-
onCodeEditorVisibilityChanged(
|
|
75
|
-
|
|
76
|
+
onCodeEditorVisibilityChanged(t) {
|
|
77
|
+
e.isCodeEditorOpen = t;
|
|
76
78
|
},
|
|
77
|
-
onEditorVisualModeChanged(
|
|
78
|
-
|
|
79
|
+
onEditorVisualModeChanged(t) {
|
|
80
|
+
e.editorVisualMode = t.toLowerCase();
|
|
79
81
|
},
|
|
80
|
-
onVersionHistoryVisibilityChanged(
|
|
81
|
-
|
|
82
|
+
onVersionHistoryVisibilityChanged(t) {
|
|
83
|
+
e.isVersionHistoryOpen = t;
|
|
82
84
|
},
|
|
83
85
|
onDataChanged() {
|
|
84
|
-
|
|
86
|
+
e.hasChanges = !0;
|
|
85
87
|
},
|
|
86
|
-
onEvent:
|
|
88
|
+
onEvent: k,
|
|
87
89
|
ignoreClickOutsideSelectors: [
|
|
88
90
|
"#guido-dynamic-content-modal",
|
|
89
91
|
".in-on-board-wrapper",
|
|
90
92
|
".in-drawer__container"
|
|
91
93
|
],
|
|
92
|
-
extensions:
|
|
94
|
+
extensions: d,
|
|
95
|
+
localePatch: R
|
|
93
96
|
}
|
|
94
97
|
);
|
|
95
|
-
},
|
|
96
|
-
var
|
|
98
|
+
}, _ = (i) => new Promise((n, r) => {
|
|
99
|
+
var d;
|
|
97
100
|
if (document.getElementById("UiEditorScript")) {
|
|
98
101
|
i(), n();
|
|
99
102
|
return;
|
|
100
103
|
}
|
|
101
|
-
const
|
|
102
|
-
|
|
104
|
+
const e = L.guido, a = `https://email-static.useinsider.com/guido/${(d = e == null ? void 0 : e.stripo) == null ? void 0 : d.version}/UIEditor.js`, o = document.createElement("script");
|
|
105
|
+
o.id = "UiEditorScript", o.type = "module", o.src = a, o.onload = () => {
|
|
103
106
|
i(), n();
|
|
104
|
-
},
|
|
105
|
-
|
|
106
|
-
}, document.body.appendChild(
|
|
107
|
+
}, o.onerror = () => {
|
|
108
|
+
r(new Error(`Failed to load Stripo UIEditor script from S3: ${a}`));
|
|
109
|
+
}, document.body.appendChild(o);
|
|
107
110
|
});
|
|
108
111
|
return { initPlugin: async (i) => {
|
|
109
|
-
await
|
|
110
|
-
const n = await
|
|
111
|
-
|
|
112
|
+
await _(async () => {
|
|
113
|
+
const n = S(), [r, e] = await Promise.all([
|
|
114
|
+
w(),
|
|
115
|
+
b()
|
|
116
|
+
]);
|
|
117
|
+
n.syncModulesEnabled = e, await V(i, r, e);
|
|
112
118
|
});
|
|
113
119
|
} };
|
|
114
120
|
};
|
|
115
121
|
export {
|
|
116
|
-
|
|
122
|
+
oe as useStripo
|
|
117
123
|
};
|
|
@@ -1,20 +1,35 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { useStripoApi as i } from "../services/stripoApi.js";
|
|
2
|
+
import { useEditorStore as u } from "../stores/editor.js";
|
|
3
|
+
import { useOnboardingStore as l } from "../stores/onboarding.js";
|
|
4
|
+
import { useUnsubscribeStore as b } from "../stores/unsubscribe.js";
|
|
5
|
+
const v = () => {
|
|
6
|
+
const { updateSyncModule: d, getSyncModule: r } = i(), n = u(), s = b(), a = {
|
|
7
|
+
block_dropped: ({ blockName: e }) => {
|
|
8
|
+
if (e === "BLOCK_TEXT") {
|
|
9
|
+
const o = l(), t = !o.shouldShowOnboarding("textBlockOnboarding"), c = o.isActive("textBlockOnboarding");
|
|
10
|
+
if (t || c)
|
|
8
11
|
return;
|
|
9
|
-
|
|
12
|
+
o.start("textBlockOnboarding");
|
|
10
13
|
}
|
|
14
|
+
},
|
|
15
|
+
module_saved: async (e) => {
|
|
16
|
+
n.syncModulesEnabled && (console.debug("[module_saved] Saved module data:", e), await d(e));
|
|
17
|
+
},
|
|
18
|
+
module_dropped: async (e) => {
|
|
19
|
+
if (!n.syncModulesEnabled)
|
|
20
|
+
return;
|
|
21
|
+
const { moduleId: o } = e, t = await r(o);
|
|
22
|
+
console.debug("[module_dropped] Sync module data:", t), t.unsubscriptionPreferencePages.length && await s.fetchTemplates();
|
|
23
|
+
},
|
|
24
|
+
module_updated: async (e) => {
|
|
25
|
+
n.syncModulesEnabled && (console.debug("[module_updated] Updated module data:", e), await d(e));
|
|
11
26
|
}
|
|
12
27
|
};
|
|
13
|
-
return { handleEvent: async (
|
|
14
|
-
const
|
|
15
|
-
o && await o
|
|
28
|
+
return { handleEvent: async (e, o) => {
|
|
29
|
+
const t = a[e];
|
|
30
|
+
console.debug("Stripo Event: ", e, o), t && await t(o);
|
|
16
31
|
} };
|
|
17
32
|
};
|
|
18
33
|
export {
|
|
19
|
-
|
|
34
|
+
v as useStripoEventHandler
|
|
20
35
|
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { UNSUBSCRIBE_SYNC_MODULE_TYPES as T } from "../enums/unsubscribe.js";
|
|
2
|
+
import { DATA_ATTRIBUTES as p } from "../extensions/Blocks/Unsubscribe/utils/constants.js";
|
|
3
|
+
import { useEditorStore as f } from "../stores/editor.js";
|
|
4
|
+
const y = ".esd-synchronizable-module", A = '[esd-extension-block-id="unsubscribe-block"]', _ = "esd-custom-block-id", B = () => {
|
|
5
|
+
const d = f();
|
|
6
|
+
return { extractSyncModuleData: (E) => {
|
|
7
|
+
const S = {
|
|
8
|
+
unsubscribePayload: [],
|
|
9
|
+
stripoModules: []
|
|
10
|
+
};
|
|
11
|
+
if (!d.syncModulesEnabled)
|
|
12
|
+
return S;
|
|
13
|
+
const b = new DOMParser().parseFromString(E, "text/html").querySelectorAll(y), r = [], s = [];
|
|
14
|
+
return b.forEach((o) => {
|
|
15
|
+
const t = o.getAttribute(_);
|
|
16
|
+
if (!t)
|
|
17
|
+
return;
|
|
18
|
+
const n = o.querySelectorAll(A);
|
|
19
|
+
if (n.length === 0) {
|
|
20
|
+
s.push(Number(t));
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
n.forEach((c) => {
|
|
24
|
+
const u = c.getAttribute(p.PAGE_LIST), i = c.getAttribute(p.PAGE_TYPE);
|
|
25
|
+
if (!u || !i)
|
|
26
|
+
return;
|
|
27
|
+
const m = parseInt(i), a = T[m];
|
|
28
|
+
if (!a)
|
|
29
|
+
return;
|
|
30
|
+
const l = u.split(",").map((e) => parseInt(e.trim())).filter((e) => !Number.isNaN(e));
|
|
31
|
+
l.length !== 0 && r.push({
|
|
32
|
+
stripoModuleId: t,
|
|
33
|
+
unsubscriptionPreferencePages: l,
|
|
34
|
+
type: a
|
|
35
|
+
});
|
|
36
|
+
});
|
|
37
|
+
}), {
|
|
38
|
+
unsubscribePayload: r,
|
|
39
|
+
stripoModules: s
|
|
40
|
+
};
|
|
41
|
+
} };
|
|
42
|
+
};
|
|
43
|
+
export {
|
|
44
|
+
B as useSyncModuleExtractor
|
|
45
|
+
};
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { useRecommendation as
|
|
2
|
-
import { DUMMY_IMAGE_MAPPINGS as P, REGEX as
|
|
3
|
-
|
|
1
|
+
import { useRecommendation as f } from "../../composables/useRecommendation.js";
|
|
2
|
+
import { DUMMY_IMAGE_MAPPINGS as P, REGEX as m, VerticalOrientation as g, CSS as e, ATTRIBUTES as a, CONDITIONS as A, HTML as h } from "../../enums/recommendation.js";
|
|
3
|
+
import { prepareRecommendationBlocks as D } from "./utils/recommendationCompilerUtils.js";
|
|
4
|
+
const G = [
|
|
4
5
|
{
|
|
5
6
|
id: "replace-images-with-variable-names",
|
|
6
7
|
description: "Replacing dummy images with variable names in recommendation module",
|
|
7
8
|
type: "custom",
|
|
8
|
-
processor: (
|
|
9
|
-
let t =
|
|
10
|
-
return Object.entries(P).forEach(([,
|
|
11
|
-
Object.entries(
|
|
12
|
-
t = t.replaceAll(o, `{{${
|
|
9
|
+
processor: (s) => {
|
|
10
|
+
let t = s;
|
|
11
|
+
return Object.entries(P).forEach(([, l]) => {
|
|
12
|
+
Object.entries(l).forEach(([n, o]) => {
|
|
13
|
+
t = t.replaceAll(o, `{{${n}}}`);
|
|
13
14
|
});
|
|
14
15
|
}), t;
|
|
15
16
|
},
|
|
@@ -28,17 +29,17 @@ const H = [
|
|
|
28
29
|
id: "add-recommendation-unresponsive-css",
|
|
29
30
|
description: "Adding recommendation unresponsive css",
|
|
30
31
|
type: "custom",
|
|
31
|
-
processor: (
|
|
32
|
-
const {
|
|
33
|
-
let n =
|
|
34
|
-
const
|
|
35
|
-
if (
|
|
36
|
-
const
|
|
37
|
-
if (
|
|
38
|
-
const
|
|
39
|
-
t(
|
|
40
|
-
}),
|
|
41
|
-
const c = `width:${Math.min(...
|
|
32
|
+
processor: (s) => {
|
|
33
|
+
const { calculateCardWidth: t, getRecommendationCampaignData: l } = f();
|
|
34
|
+
let n = s;
|
|
35
|
+
const o = n.match(m.ID);
|
|
36
|
+
if (o) {
|
|
37
|
+
const d = [];
|
|
38
|
+
if (o.forEach((c) => {
|
|
39
|
+
const E = /recommendation-id="(.*?)"/i.exec(c), I = E ? E[1].trim() : "", p = l(I);
|
|
40
|
+
p.textTrimming && p.orientation === g && d.push(t(p));
|
|
41
|
+
}), d.length) {
|
|
42
|
+
const c = `width:${Math.min(...d)}px!important;`;
|
|
42
43
|
n = n.replace(e.REGULAR_NAME_HEIGHT, `${e.TRIMMED_NAME_HEIGHT} ${c} ${e.ELLIPSIS}`).replace(e.REGULAR_NAME_CONTAINER_HEIGHT, e.TRIMMED_NAME_CONTAINER_CSS).replace(e.RESPONSIVE_NAME_SIZE, `${e.RESPONSIVE_NAME_HEIGHT} ${c} ${e.ELLIPSIS}`).replace(e.RESPONSIVE_NAME_CONTAINER_HEIGHT, e.TRIMMED_RESPONSIVE_NAME_CONTAINER_CSS);
|
|
43
44
|
}
|
|
44
45
|
}
|
|
@@ -46,32 +47,37 @@ const H = [
|
|
|
46
47
|
},
|
|
47
48
|
priority: 52
|
|
48
49
|
},
|
|
49
|
-
|
|
50
|
-
|
|
50
|
+
{
|
|
51
|
+
id: "prepare-recommendations",
|
|
52
|
+
description: "Replacing product data with template variables in recommendation blocks",
|
|
53
|
+
type: "custom",
|
|
54
|
+
processor: (s) => D(s),
|
|
55
|
+
priority: 48
|
|
56
|
+
},
|
|
51
57
|
{
|
|
52
58
|
id: "add-discount-conditions",
|
|
53
59
|
description: "Adding discount conditions to the recommendation block",
|
|
54
60
|
type: "custom",
|
|
55
|
-
processor: (
|
|
56
|
-
let t =
|
|
57
|
-
const
|
|
58
|
-
return
|
|
59
|
-
const
|
|
60
|
-
if (!
|
|
61
|
+
processor: (s) => {
|
|
62
|
+
let t = s;
|
|
63
|
+
const l = t.match(m.ATTRIBUTE_PARAGRAPH), { getRecommendationCampaignData: n } = f();
|
|
64
|
+
return l !== null && l.forEach((o) => {
|
|
65
|
+
const d = o.match(m.CUSTOM_FIELD);
|
|
66
|
+
if (!d)
|
|
61
67
|
return;
|
|
62
|
-
const [
|
|
63
|
-
if (!
|
|
68
|
+
const [c] = d, E = c.match(m.CUSTOM_FIELD_INDEXES_PART), I = c.match(m.CUSTOM_FIELD_NAME_PART), p = o.match(m.ATTRIBUTE_PARAGRAPH_START_TAG);
|
|
69
|
+
if (!E || !I || !p)
|
|
64
70
|
return;
|
|
65
|
-
const [
|
|
66
|
-
let
|
|
67
|
-
if (
|
|
68
|
-
const
|
|
69
|
-
|
|
71
|
+
const [u] = E, [R] = I, [_] = p, T = R.substring(1, R.length - 2), S = _.match(m.COMPOSITION) !== null;
|
|
72
|
+
let i = c;
|
|
73
|
+
if (S) {
|
|
74
|
+
const $ = u.substring(2, u.length - 3), r = n($);
|
|
75
|
+
T === a.OMNIBUS_PRICE && (r.priceBeforeTextValue && (i = `${r.priceBeforeTextValue}${i}`), r.priceAfterTextValue && (i = `${i}${r.priceAfterTextValue}`)), T === a.OMNIBUS_DISCOUNT && (r.discountBeforeTextValue && (i = `${r.discountBeforeTextValue}${i}`), r.discountAfterTextValue && (i = `${i}${r.discountAfterTextValue}`));
|
|
70
76
|
}
|
|
71
|
-
const
|
|
72
|
-
let
|
|
73
|
-
|
|
74
|
-
const
|
|
77
|
+
const N = u.substring(2);
|
|
78
|
+
let M = "";
|
|
79
|
+
T in A.IF && (M = A.IF[T].replaceAll(`{${a.DISCOUNT}}`, `${N}${a.DISCOUNT}`).replaceAll(`{${a.OMNIBUS_DISCOUNT}}`, `${N}${a.OMNIBUS_DISCOUNT}`).replaceAll(`{${a.OMNIBUS_PRICE}}`, `${N}${a.OMNIBUS_PRICE}`));
|
|
80
|
+
const O = `${_}${i}${h.PARAGRAPH_END_TAG}`, C = `${M}${S ? O : o}${A.ELSE}${_}${h.PARAGRAPH_END_TAG}${A.END_IF}`;
|
|
75
81
|
t = t.replace(o, C);
|
|
76
82
|
}), t;
|
|
77
83
|
},
|
|
@@ -79,5 +85,5 @@ const H = [
|
|
|
79
85
|
}
|
|
80
86
|
];
|
|
81
87
|
export {
|
|
82
|
-
|
|
88
|
+
G as recommendationCompilerRules
|
|
83
89
|
};
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { useRecommendation as _ } from "../../../composables/useRecommendation.js";
|
|
2
|
+
function b(e, u, r, o) {
|
|
3
|
+
const n = `{{${e}_${u}_${r}}}`, t = `{{${e}_${u}_currency}}`;
|
|
4
|
+
return o === "before" ? `${t} ${n}` : `${n} ${t}`;
|
|
5
|
+
}
|
|
6
|
+
function p(e, u, r, o, n) {
|
|
7
|
+
switch (u) {
|
|
8
|
+
case "productImage": {
|
|
9
|
+
const t = e.querySelector("img");
|
|
10
|
+
t && (t.setAttribute("src", `{{${r}_${o}_image_url}}`), t.setAttribute("alt", `{{${r}_${o}_name}}`));
|
|
11
|
+
const c = e.querySelector("a");
|
|
12
|
+
c && c.setAttribute("href", `{{${r}_${o}_url}}`);
|
|
13
|
+
break;
|
|
14
|
+
}
|
|
15
|
+
case "productName": {
|
|
16
|
+
const t = e.querySelector("p");
|
|
17
|
+
if (t) {
|
|
18
|
+
const c = t.querySelector("strong") || t;
|
|
19
|
+
c.textContent = `{{${r}_${o}_name}}`;
|
|
20
|
+
}
|
|
21
|
+
break;
|
|
22
|
+
}
|
|
23
|
+
case "productPrice": {
|
|
24
|
+
const t = e.querySelector("p");
|
|
25
|
+
if (t) {
|
|
26
|
+
const c = t.querySelector("strong") || t;
|
|
27
|
+
c.textContent = b(r, o, "price", n);
|
|
28
|
+
}
|
|
29
|
+
break;
|
|
30
|
+
}
|
|
31
|
+
case "productOldPrice": {
|
|
32
|
+
const t = e.querySelector("p");
|
|
33
|
+
if (t) {
|
|
34
|
+
const c = t.querySelector("strong") || t;
|
|
35
|
+
c.textContent = b(
|
|
36
|
+
r,
|
|
37
|
+
o,
|
|
38
|
+
"original_price",
|
|
39
|
+
n
|
|
40
|
+
), t.setAttribute("product-attr", "discount");
|
|
41
|
+
}
|
|
42
|
+
break;
|
|
43
|
+
}
|
|
44
|
+
case "productButton": {
|
|
45
|
+
const t = e.querySelector("a");
|
|
46
|
+
t && t.setAttribute("href", `{{${r}_${o}_url}}`);
|
|
47
|
+
break;
|
|
48
|
+
}
|
|
49
|
+
case "productOmnibusPrice": {
|
|
50
|
+
const t = e.querySelector(".omnibus-price-value");
|
|
51
|
+
if (t) {
|
|
52
|
+
t.textContent = `{{${r}_${o}_omnibus_price}}`;
|
|
53
|
+
const c = t.closest("p");
|
|
54
|
+
c && (c.setAttribute("product-attr", "omnibus_price"), c.setAttribute("composition", "true"));
|
|
55
|
+
}
|
|
56
|
+
break;
|
|
57
|
+
}
|
|
58
|
+
case "productOmnibusDiscount": {
|
|
59
|
+
const t = e.querySelector(".omnibus-discount-value");
|
|
60
|
+
if (t) {
|
|
61
|
+
t.textContent = `{{${r}_${o}_omnibus_discount}}`;
|
|
62
|
+
const c = t.closest("p");
|
|
63
|
+
c && (c.setAttribute("product-attr", "omnibus_discount"), c.setAttribute("composition", "true"));
|
|
64
|
+
}
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
function $(e, u, r) {
|
|
70
|
+
e.querySelectorAll(".recommendation-product-row").forEach((n, t) => {
|
|
71
|
+
n.querySelectorAll("[data-attribute-type]").forEach((s) => {
|
|
72
|
+
const i = s.getAttribute("data-attribute-type") || "", a = s.querySelectorAll(".attribute-cell");
|
|
73
|
+
a.length > 0 ? a.forEach((l) => {
|
|
74
|
+
p(l, i, u, t, r);
|
|
75
|
+
}) : p(s, i, u, t, r);
|
|
76
|
+
});
|
|
77
|
+
});
|
|
78
|
+
}
|
|
79
|
+
function S(e, u, r) {
|
|
80
|
+
const o = e.querySelectorAll(".recommendation-product-row");
|
|
81
|
+
if (!o.length)
|
|
82
|
+
return;
|
|
83
|
+
const [n] = o, t = n.querySelector("[data-attribute-type]"), c = t ? t.querySelectorAll(".attribute-cell").length : 1;
|
|
84
|
+
o.forEach((s, i) => {
|
|
85
|
+
s.querySelectorAll("[data-attribute-type]").forEach((l) => {
|
|
86
|
+
const f = l.getAttribute("data-attribute-type") || "";
|
|
87
|
+
l.querySelectorAll(".attribute-cell").forEach((y, m) => {
|
|
88
|
+
const A = i * c + m;
|
|
89
|
+
p(y, f, u, A, r);
|
|
90
|
+
});
|
|
91
|
+
});
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
function q(e, u, r) {
|
|
95
|
+
e.querySelectorAll(".ins-recommendation-product-container").forEach((n) => {
|
|
96
|
+
S(n, u, r);
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
function d(e, u) {
|
|
100
|
+
const r = e.getAttribute("data-layout") || "grid", o = e.getAttribute("currency-alignment") || "after";
|
|
101
|
+
r === "list" ? $(e, u, o) : q(e, u, o);
|
|
102
|
+
}
|
|
103
|
+
function h(e, u) {
|
|
104
|
+
const r = e.match(/<!DOCTYPE[^>]*>/i);
|
|
105
|
+
return (r ? `${r[0]}
|
|
106
|
+
` : "") + u.documentElement.outerHTML;
|
|
107
|
+
}
|
|
108
|
+
function w(e) {
|
|
109
|
+
const u = e.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), r = new DOMParser().parseFromString(u, "text/html"), o = r.querySelectorAll(".ins-recommendation-v3-block-v2");
|
|
110
|
+
if (!o.length)
|
|
111
|
+
return e;
|
|
112
|
+
const { buildCampaignUrl: n } = _();
|
|
113
|
+
return o.forEach((c) => {
|
|
114
|
+
const s = c.getAttribute("recommendation-id");
|
|
115
|
+
s && (n(s), d(c, s));
|
|
116
|
+
}), h(u, r).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}");
|
|
117
|
+
}
|
|
118
|
+
export {
|
|
119
|
+
b as formatPriceVariable,
|
|
120
|
+
w as prepareRecommendationBlocks
|
|
121
|
+
};
|