@useinsider/guido 2.1.0-beta.c1e85ba → 2.1.0-beta.c2eabd2

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 (152) hide show
  1. package/README.md +1 -3
  2. package/dist/components/Guido.vue.js +1 -1
  3. package/dist/components/Guido.vue2.js +39 -36
  4. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +5 -5
  5. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +2 -2
  6. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
  7. package/dist/composables/useHtmlValidator.js +114 -104
  8. package/dist/composables/useRecommendation.js +54 -21
  9. package/dist/composables/useSave.js +12 -16
  10. package/dist/composables/useStripo.js +54 -58
  11. package/dist/composables/useStripoEventHandler.js +12 -27
  12. package/dist/config/compiler/recommendationCompilerRules.js +45 -39
  13. package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
  14. package/dist/config/migrator/itemsBlockMigrator.js +101 -97
  15. package/dist/config/migrator/recommendationMigrator.js +2 -2
  16. package/dist/enums/extensions/recommendationBlock.js +1 -1
  17. package/dist/enums/recommendation.js +16 -15
  18. package/dist/enums/unsubscribe.js +21 -25
  19. package/dist/extensions/Blocks/Recommendation/block.js +133 -9
  20. package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
  21. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
  22. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
  23. package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
  24. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
  25. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
  26. package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
  27. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
  28. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
  29. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
  30. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
  31. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
  32. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
  33. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +250 -0
  34. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
  35. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
  36. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
  37. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
  38. package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
  39. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
  40. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
  41. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
  42. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
  43. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextAfterControl.js → omnibusDiscount/textAfter.js} +16 -14
  44. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextBeforeControl.js → omnibusDiscount/textBefore.js} +16 -14
  45. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
  46. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextAfterControl.js → omnibusPrice/textAfter.js} +16 -14
  47. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextBeforeControl.js → omnibusPrice/textBefore.js} +14 -12
  48. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
  49. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
  50. package/dist/extensions/Blocks/Recommendation/extension.js +40 -17
  51. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +19 -3
  52. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +13 -4
  53. package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
  54. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +21 -10
  55. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +254 -207
  56. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
  57. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
  58. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
  59. package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
  60. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
  61. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
  62. package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
  63. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
  64. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
  65. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +26 -15
  66. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
  67. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
  68. package/dist/extensions/Blocks/controlFactories.js +125 -93
  69. package/dist/guido.css +1 -1
  70. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +242 -186
  71. package/dist/services/recommendationApi.js +11 -8
  72. package/dist/services/stripoApi.js +12 -48
  73. package/dist/services/templateLibraryApi.js +16 -13
  74. package/dist/src/@types/events.d.ts +2 -38
  75. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  76. package/dist/src/composables/useRecommendation.d.ts +1 -0
  77. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
  78. package/dist/src/enums/unsubscribe.d.ts +0 -3
  79. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +67 -0
  80. package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
  81. package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +0 -24
  82. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
  83. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
  84. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
  85. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
  86. package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
  87. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
  88. package/dist/src/extensions/Blocks/Recommendation/{cardCompositionControl.d.ts → controls/cardComposition/index.d.ts} +23 -3
  89. package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
  90. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +21 -589
  91. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
  92. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
  93. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
  94. package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
  95. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +79 -0
  96. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
  97. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
  98. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
  99. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
  100. package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
  101. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
  102. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
  103. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
  104. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
  105. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
  106. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
  107. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
  108. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
  109. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
  110. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
  111. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
  112. package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
  113. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
  114. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
  115. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +138 -468
  116. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
  117. package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
  118. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
  119. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
  120. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
  121. package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
  122. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
  123. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
  124. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
  125. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
  126. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
  127. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
  128. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
  129. package/dist/src/services/stripoApi.d.ts +0 -5
  130. package/dist/src/stores/editor.d.ts +0 -23
  131. package/dist/static/styles/customEditorStyle.css.js +35 -11
  132. package/dist/stores/editor.js +1 -2
  133. package/dist/utils/pairProductVariables.js +57 -56
  134. package/dist/utils/templatePreparation.js +15 -14
  135. package/package.json +1 -1
  136. package/dist/composables/useSyncModuleExtractor.js +0 -45
  137. package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -187
  138. package/dist/extensions/Blocks/Recommendation/constants.js +0 -13
  139. package/dist/extensions/Blocks/Recommendation/control.js +0 -336
  140. package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +0 -68
  141. package/dist/extensions/Blocks/Recommendation/controls/index.js +0 -245
  142. package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +0 -74
  143. package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +0 -188
  144. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -181
  145. package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -189
  146. package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -209
  147. package/dist/src/composables/useSyncModuleExtractor.d.ts +0 -4
  148. package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -38
  149. package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +0 -16
  150. package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
  151. package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -52
  152. package/dist/src/mock/api/settings.d.ts +0 -2
@@ -1,21 +1,17 @@
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) => {
1
+ import { useConfig as l } from "./useConfig.js";
2
+ import { useSaveStart as m, useSaveComplete as c } from "./useGuidoActions.js";
3
+ import { useTemplatePreparation as d } from "../utils/templatePreparation.js";
4
+ import { useHtmlValidator as p } from "./useHtmlValidator.js";
5
+ const w = () => {
6
+ const i = m(), s = c(), { validateHtml: o } = p(), { callbacks: a } = l();
7
+ return { save: async (r = !1) => {
10
8
  var e;
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;
9
+ i();
10
+ const { prepareTemplateDetails: n } = d(), t = await n();
11
+ if (await o(t.compiledHtml, t.dynamicContentList, !0) && !((e = a.value) != null && e.externalValidation && !await a.value.externalValidation(t)))
12
+ return r || s(t), t;
17
13
  } };
18
14
  };
19
15
  export {
20
- g as useSave
16
+ w as useSave
21
17
  };
@@ -1,26 +1,26 @@
1
- import { useActionsApi as M } from "./useActionsApi.js";
2
- import { useBlocksConfig as A } from "./useBlocksConfig.js";
3
- import { useConfig as F } from "./useConfig.js";
4
- import { useCustomInterfaceAppearance as D } from "./useCustomInterfaceAppearance.js";
5
- import { useStripoEventHandler as I } from "./useStripoEventHandler.js";
6
- import { useToaster as U } from "./useToaster.js";
7
- import { displayConditions as P } from "../enums/displayConditions.js";
8
- import { useStripoApi as R } from "../services/stripoApi.js";
9
- import H from "../static/styles/customEditorStyle.css.js";
10
- import { useEditorStore as S } from "../stores/editor.js";
11
- import { dynamicContentToMergeTags as O } from "../utils/genericUtil.js";
12
- import q from "../package.json.js";
13
- const Z = (c) => {
14
- const { features: l, template: C } = F(), { handleError: u } = U(), { getToken: E, getCustomFonts: h, getSyncModulesStatus: w } = R(), { handleEvent: b } = I(), { getStripoBlocksConfig: k } = A(), T = async (i, n = [], r = !1) => {
15
- var g, f, y;
16
- const e = S(), { html: p, css: a } = i, { baseBlocks: t, extensions: d } = await k(), m = ((g = l.value) == null ? void 0 : g.displayConditions) ?? !0, _ = ((f = l.value) == null ? void 0 : f.modulesDisabled) ?? !1, B = ((y = C.value) == null ? void 0 : y.forceRecreate) ?? !1;
1
+ import { useActionsApi as _ } from "./useActionsApi.js";
2
+ import { useBlocksConfig as B } from "./useBlocksConfig.js";
3
+ import { useConfig as v } from "./useConfig.js";
4
+ import { useCustomInterfaceAppearance as A } from "./useCustomInterfaceAppearance.js";
5
+ import { useStripoEventHandler as F } from "./useStripoEventHandler.js";
6
+ import { useToaster as D } from "./useToaster.js";
7
+ import { displayConditions as I } from "../enums/displayConditions.js";
8
+ import { useStripoApi as M } from "../services/stripoApi.js";
9
+ import U from "../static/styles/customEditorStyle.css.js";
10
+ import { useEditorStore as P } from "../stores/editor.js";
11
+ import { dynamicContentToMergeTags as R } from "../utils/genericUtil.js";
12
+ import H from "../package.json.js";
13
+ const W = (c) => {
14
+ const { features: l, template: y } = v(), { handleError: u } = D(), { getToken: C, getCustomFonts: S } = M(), { handleEvent: E } = F(), { getStripoBlocksConfig: h } = B(), w = async (i, n = []) => {
15
+ var m, g, f;
16
+ const o = P(), { html: r, css: p } = i, { baseBlocks: s, extensions: t } = await h(), a = ((m = l.value) == null ? void 0 : m.displayConditions) ?? !0, k = ((g = l.value) == null ? void 0 : g.modulesDisabled) ?? !1, T = ((f = y.value) == null ? void 0 : f.forceRecreate) ?? !1;
17
17
  window.UIEditor.initEditor(
18
18
  document.querySelector("#guido-editor"),
19
19
  {
20
20
  metadata: c,
21
- html: p,
22
- css: a,
23
- forceRecreate: B,
21
+ html: r,
22
+ css: p,
23
+ forceRecreate: T,
24
24
  locale: "en",
25
25
  undoButtonSelector: "#guido__undo-button",
26
26
  redoButtonSelector: "#guido__redo-button",
@@ -30,20 +30,19 @@ const Z = (c) => {
30
30
  customAppearanceMergetags: !0,
31
31
  customAppearanceMergetagsBorderColor: "#f1f3fe",
32
32
  customAppearanceMergetagsBackgroundColor: "#f1f3fe",
33
- customViewStyles: H,
34
- conditionsEnabled: m,
35
- customConditionsEnabled: m,
36
- conditionCategories: P,
33
+ customViewStyles: U,
34
+ conditionsEnabled: a,
35
+ customConditionsEnabled: a,
36
+ conditionCategories: I,
37
37
  enableXSSSecurity: !0,
38
- modulesDisabled: _,
39
- syncModulesEnabled: r,
38
+ modulesDisabled: k,
40
39
  messageSettingsEnabled: !0,
41
40
  displayGmailAnnotations: !0,
42
41
  displayHiddenPreheader: !1,
43
42
  displayTitle: !1,
44
43
  displayUTM: !1,
45
44
  selectElementAfterDrop: !0,
46
- ...t ? { baseBlocks: t } : {},
45
+ ...s ? { baseBlocks: s } : {},
47
46
  editorFonts: {
48
47
  showDefaultStandardFonts: !0,
49
48
  showDefaultNotStandardFonts: !0,
@@ -51,71 +50,68 @@ const Z = (c) => {
51
50
  },
52
51
  mergeTags: [
53
52
  {
54
- entries: O(c.preselectedDynamicContentList)
53
+ entries: R(c.preselectedDynamicContentList)
55
54
  }
56
55
  ],
57
- async onTokenRefreshRequest(o) {
56
+ async onTokenRefreshRequest(e) {
58
57
  try {
59
- const s = await E();
60
- o(s);
61
- } catch (s) {
62
- u(s, "Failed to refresh token");
58
+ const d = await C();
59
+ e(d);
60
+ } catch (d) {
61
+ u(d, "Failed to refresh token");
63
62
  }
64
63
  },
65
64
  onTemplateLoaded() {
66
65
  try {
67
- const { importCss: o } = D(), { activateCustomViewStyles: s, updateTimerInClonedTemplate: v } = M();
68
- o(), s(), v(), c.onReady(), e.isStripoInitialized = !0, e.loadingStatus = !1, setTimeout(() => {
69
- e.hasChanges = !1;
66
+ const { importCss: e } = A(), { activateCustomViewStyles: d, updateTimerInClonedTemplate: V } = _();
67
+ e(), d(), V(), c.onReady(), o.isStripoInitialized = !0, o.loadingStatus = !1, setTimeout(() => {
68
+ o.hasChanges = !1;
70
69
  }, 1e3);
71
- } catch (o) {
72
- u(o, "Failed to load custom interface appearance");
70
+ } catch (e) {
71
+ u(e, "Failed to load custom interface appearance");
73
72
  }
74
73
  },
75
- onCodeEditorVisibilityChanged(o) {
76
- e.isCodeEditorOpen = o;
74
+ onCodeEditorVisibilityChanged(e) {
75
+ o.isCodeEditorOpen = e;
77
76
  },
78
- onEditorVisualModeChanged(o) {
79
- e.editorVisualMode = o.toLowerCase();
77
+ onEditorVisualModeChanged(e) {
78
+ o.editorVisualMode = e.toLowerCase();
80
79
  },
81
- onVersionHistoryVisibilityChanged(o) {
82
- e.isVersionHistoryOpen = o;
80
+ onVersionHistoryVisibilityChanged(e) {
81
+ o.isVersionHistoryOpen = e;
83
82
  },
84
83
  onDataChanged() {
85
- e.hasChanges = !0;
84
+ o.hasChanges = !0;
86
85
  },
87
- onEvent: b,
86
+ onEvent: E,
88
87
  ignoreClickOutsideSelectors: [
89
88
  "#guido-dynamic-content-modal",
90
89
  ".in-on-board-wrapper",
91
90
  ".in-drawer__container"
92
91
  ],
93
- extensions: d
92
+ extensions: t
94
93
  }
95
94
  );
96
- }, V = (i) => new Promise((n, r) => {
97
- var d;
95
+ }, b = (i) => new Promise((n, o) => {
96
+ var a;
98
97
  if (document.getElementById("UiEditorScript")) {
99
98
  i(), n();
100
99
  return;
101
100
  }
102
- const e = q.guido, a = `https://email-static.useinsider.com/guido/${(d = e == null ? void 0 : e.stripo) == null ? void 0 : d.version}/UIEditor.js`, t = document.createElement("script");
103
- t.id = "UiEditorScript", t.type = "module", t.src = a, t.onload = () => {
101
+ const r = H.guido, s = `https://email-static.useinsider.com/guido/${(a = r == null ? void 0 : r.stripo) == null ? void 0 : a.version}/UIEditor.js`, t = document.createElement("script");
102
+ t.id = "UiEditorScript", t.type = "module", t.src = s, t.onload = () => {
104
103
  i(), n();
105
104
  }, t.onerror = () => {
106
- r(new Error(`Failed to load Stripo UIEditor script from S3: ${a}`));
105
+ o(new Error(`Failed to load Stripo UIEditor script from S3: ${s}`));
107
106
  }, document.body.appendChild(t);
108
107
  });
109
108
  return { initPlugin: async (i) => {
110
- await V(async () => {
111
- const n = S(), [r, e] = await Promise.all([
112
- h(),
113
- w()
114
- ]);
115
- n.syncModulesEnabled = e, await T(i, r, e);
109
+ await b(async () => {
110
+ const n = await S();
111
+ await w(i, n);
116
112
  });
117
113
  } };
118
114
  };
119
115
  export {
120
- Z as useStripo
116
+ W as useStripo
121
117
  };
@@ -1,35 +1,20 @@
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)
1
+ import { useOnboardingStore as i } from "../stores/onboarding.js";
2
+ const c = () => {
3
+ const e = {
4
+ block_dropped: ({ blockName: t }) => {
5
+ if (t === "BLOCK_TEXT") {
6
+ const n = i(), o = !n.shouldShowOnboarding("textBlockOnboarding"), r = n.isActive("textBlockOnboarding");
7
+ if (o || r)
11
8
  return;
12
- o.start("textBlockOnboarding");
9
+ n.start("textBlockOnboarding");
13
10
  }
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));
26
11
  }
27
12
  };
28
- return { handleEvent: async (e, o) => {
29
- const t = a[e];
30
- console.debug("Stripo Event: ", e, o), t && await t(o);
13
+ return { handleEvent: async (t, n) => {
14
+ const o = e[t];
15
+ o && await o(n);
31
16
  } };
32
17
  };
33
18
  export {
34
- v as useStripoEventHandler
19
+ c as useStripoEventHandler
35
20
  };
@@ -1,15 +1,16 @@
1
- import { useRecommendation as u } from "../../composables/useRecommendation.js";
2
- import { DUMMY_IMAGE_MAPPINGS as P, REGEX as i, CSS as e, CONDITIONS as E, ATTRIBUTES as r, HTML as h } from "../../enums/recommendation.js";
3
- const H = [
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: (a) => {
9
- let t = a;
10
- return Object.entries(P).forEach(([, n]) => {
11
- Object.entries(n).forEach(([s, o]) => {
12
- t = t.replaceAll(o, `{{${s}}}`);
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: (a) => {
32
- const { getRecommendationCampaignData: t } = u();
33
- let n = a;
34
- const s = n.match(i.ID);
35
- if (s) {
36
- const o = [];
37
- if (s.forEach((c) => {
38
- const m = c.slice(35, c.length - 1).trim();
39
- t(m);
40
- }), o.length) {
41
- const c = `width:${Math.min(...o)}px!important;`;
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
- // TODO: prepareRecommendations
50
- // TODO: addRecommendationCustomFields
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: (a) => {
56
- let t = a;
57
- const n = t.match(i.ATTRIBUTE_PARAGRAPH), { getRecommendationCampaignData: s } = u();
58
- return n !== null && n.forEach((o) => {
59
- const c = o.match(i.CUSTOM_FIELD);
60
- if (!c)
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 [m] = c, p = m.match(i.CUSTOM_FIELD_INDEXES_PART), A = m.match(i.CUSTOM_FIELD_NAME_PART), _ = o.match(i.ATTRIBUTE_PARAGRAPH_START_TAG);
63
- if (!p || !A || !_)
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 [l] = p, [T] = A, [d] = _, N = T.substring(1, T.length - 2), R = d.match(i.COMPOSITION) !== null;
66
- let O = m;
67
- if (R) {
68
- const M = l.substring(2, l.length - 3);
69
- s(M);
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 I = l.substring(2);
72
- let S = "";
73
- N in E.IF && (S = E.IF[N].replaceAll(`{${r.DISCOUNT}}`, `${I}${r.DISCOUNT}`).replaceAll(`{${r.OMNIBUS_DISCOUNT}}`, `${I}${r.OMNIBUS_DISCOUNT}`).replaceAll(`{${r.OMNIBUS_PRICE}}`, `${I}${r.OMNIBUS_PRICE}`));
74
- const $ = `${d}${O}${h.PARAGRAPH_END_TAG}`, C = `${S}${R ? $ : o}${E.ELSE}${d}${h.PARAGRAPH_END_TAG}${E.END_IF}`;
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
- H as recommendationCompilerRules
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("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
117
+ }
118
+ export {
119
+ b as formatPriceVariable,
120
+ w as prepareRecommendationBlocks
121
+ };