@useinsider/guido 2.1.0-beta.ff1bc98 → 2.1.0-beta.ff9b498

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 (159) hide show
  1. package/README.md +39 -1
  2. package/dist/@types/config/schemas.js +70 -65
  3. package/dist/components/Guido.vue.js +1 -1
  4. package/dist/components/Guido.vue2.js +69 -58
  5. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +14 -15
  6. package/dist/composables/useBlocksConfig.js +26 -16
  7. package/dist/composables/useHtmlValidator.js +104 -114
  8. package/dist/composables/useRecommendation.js +21 -54
  9. package/dist/composables/useSave.js +16 -12
  10. package/dist/composables/useStripo.js +58 -54
  11. package/dist/composables/useStripoEventHandler.js +27 -12
  12. package/dist/composables/useSyncModuleExtractor.js +33 -0
  13. package/dist/config/compiler/recommendationCompilerRules.js +39 -45
  14. package/dist/config/migrator/itemsBlockMigrator.js +101 -97
  15. package/dist/config/migrator/recommendationMigrator.js +2 -2
  16. package/dist/enums/defaults.js +8 -4
  17. package/dist/enums/extensions/recommendationBlock.js +1 -1
  18. package/dist/enums/recommendation.js +15 -16
  19. package/dist/enums/unsubscribe.js +25 -21
  20. package/dist/extensions/Blocks/Recommendation/block.js +9 -133
  21. package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +187 -0
  22. package/dist/extensions/Blocks/Recommendation/constants.js +13 -0
  23. package/dist/extensions/Blocks/Recommendation/control.js +336 -0
  24. package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +68 -0
  25. package/dist/extensions/Blocks/Recommendation/controls/index.js +245 -0
  26. package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +74 -0
  27. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscount/textAfter.js → omnibusDiscountTextAfterControl.js} +14 -16
  28. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscount/textBefore.js → omnibusDiscountTextBeforeControl.js} +14 -16
  29. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPrice/textAfter.js → omnibusPriceTextAfterControl.js} +14 -16
  30. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPrice/textBefore.js → omnibusPriceTextBeforeControl.js} +12 -14
  31. package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +188 -0
  32. package/dist/extensions/Blocks/Recommendation/extension.js +17 -40
  33. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +3 -19
  34. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +4 -13
  35. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +10 -21
  36. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +207 -254
  37. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +181 -0
  38. package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +189 -0
  39. package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +209 -0
  40. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
  41. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +15 -26
  42. package/dist/extensions/Blocks/controlFactories.js +93 -125
  43. package/dist/extensions/ModulesTabIcons/extension.js +17 -0
  44. package/dist/guido.css +1 -1
  45. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +237 -225
  46. package/dist/services/recommendationApi.js +8 -11
  47. package/dist/services/stripoApi.js +50 -14
  48. package/dist/services/templateLibraryApi.js +13 -16
  49. package/dist/src/@types/config/schemas.d.ts +8 -0
  50. package/dist/src/@types/events.d.ts +34 -2
  51. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  52. package/dist/src/composables/useConfig.d.ts +4 -0
  53. package/dist/src/composables/useRecommendation.d.ts +0 -1
  54. package/dist/src/composables/useSyncModuleExtractor.d.ts +4 -0
  55. package/dist/src/enums/defaults.d.ts +4 -0
  56. package/dist/src/enums/unsubscribe.d.ts +3 -0
  57. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +0 -67
  58. package/dist/src/extensions/Blocks/Recommendation/{controls/cardComposition/index.d.ts → cardCompositionControl.d.ts} +3 -23
  59. package/dist/src/extensions/Blocks/Recommendation/{constants/controlIds.d.ts → constants.d.ts} +24 -0
  60. package/dist/src/extensions/Blocks/Recommendation/control.d.ts +38 -0
  61. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +589 -21
  62. package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +16 -0
  63. package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +0 -9
  64. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +468 -138
  65. package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +16 -0
  66. package/dist/src/extensions/Blocks/Recommendation/templates/{grid/migration.d.ts → migrationTemplate.d.ts} +4 -11
  67. package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +52 -0
  68. package/dist/src/extensions/ModulesTabIcons/extension.d.ts +2 -0
  69. package/dist/src/mock/api/settings.d.ts +2 -0
  70. package/dist/src/services/stripoApi.d.ts +5 -0
  71. package/dist/src/stores/config.d.ts +36 -0
  72. package/dist/src/stores/editor.d.ts +23 -0
  73. package/dist/static/styles/customEditorStyle.css.js +11 -35
  74. package/dist/stores/editor.js +2 -1
  75. package/dist/utils/pairProductVariables.js +56 -57
  76. package/dist/utils/templatePreparation.js +14 -15
  77. package/package.json +1 -1
  78. package/dist/config/compiler/utils/recommendationCompilerUtils.js +0 -116
  79. package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +0 -4
  80. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +0 -4
  81. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +0 -66
  82. package/dist/extensions/Blocks/Recommendation/constants/layout.js +0 -22
  83. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +0 -21
  84. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +0 -64
  85. package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +0 -80
  86. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +0 -232
  87. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +0 -19
  88. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +0 -92
  89. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +0 -102
  90. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +0 -209
  91. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +0 -52
  92. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +0 -250
  93. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +0 -70
  94. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +0 -160
  95. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +0 -67
  96. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +0 -307
  97. package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +0 -21
  98. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +0 -46
  99. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +0 -108
  100. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +0 -44
  101. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +0 -48
  102. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +0 -48
  103. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +0 -44
  104. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +0 -222
  105. package/dist/extensions/Blocks/Recommendation/services/configService.js +0 -240
  106. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +0 -233
  107. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +0 -251
  108. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +0 -66
  109. package/dist/extensions/Blocks/Recommendation/templates/index.js +0 -12
  110. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +0 -174
  111. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +0 -73
  112. package/dist/extensions/Blocks/Recommendation/templates/utils.js +0 -134
  113. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +0 -6
  114. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +0 -29
  115. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +0 -46
  116. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +0 -17
  117. package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +0 -13
  118. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +0 -49
  119. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +0 -13
  120. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +0 -41
  121. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +0 -35
  122. package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +0 -143
  123. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +0 -31
  124. package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +0 -35
  125. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +0 -37
  126. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +0 -29
  127. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +0 -52
  128. package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +0 -22
  129. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +0 -79
  130. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +0 -24
  131. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +0 -60
  132. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +0 -23
  133. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +0 -221
  134. package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +0 -29
  135. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +0 -97
  136. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +0 -34
  137. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +0 -95
  138. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +0 -100
  139. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +0 -15
  140. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +0 -15
  141. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +0 -100
  142. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +0 -15
  143. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +0 -15
  144. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +0 -95
  145. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +0 -83
  146. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +0 -151
  147. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +0 -6
  148. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +0 -20
  149. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +0 -33
  150. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +0 -41
  151. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +0 -8
  152. package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +0 -25
  153. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +0 -18
  154. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +0 -66
  155. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +0 -7
  156. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +0 -166
  157. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +0 -33
  158. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +0 -113
  159. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +0 -77
@@ -1,84 +1,77 @@
1
- import { useConfig as L } from "./useConfig.js";
2
- import { TemplateTypes as V } from "../enums/defaults.js";
3
- import { DISPLAY_CONDITIONS_REGEX as _, DISPLAY_CONDITIONS_EXCEPTIONS_REGEX as H, CampaignCouldNotBeSavedKey as P, CanNotMakeAnyChangesForRunningKey as G } from "../enums/html-validator.js";
4
- import { ToasterTypeOptions as c } from "../enums/toaster.js";
5
- import { itemsBlockDynamicVariables as M } from "../extensions/Blocks/Items/enums/productEnums.js";
6
- import { useRecommendationStore as $ } from "../stores/recommendation.js";
7
- import { base64EncodeWithSpecialChars as X } from "../utils/base64.js";
8
- import { useHttp as j } from "./useHttp.js";
9
- import { useToaster as q } from "./useToaster.js";
1
+ import { useConfig as D } from "./useConfig.js";
2
+ import { TemplateTypes as H } from "../enums/defaults.js";
3
+ import { DISPLAY_CONDITIONS_REGEX as P, DISPLAY_CONDITIONS_EXCEPTIONS_REGEX as R, CampaignCouldNotBeSavedKey as _, CanNotMakeAnyChangesForRunningKey as G } from "../enums/html-validator.js";
4
+ import { ToasterTypeOptions as l } from "../enums/toaster.js";
5
+ import { itemsBlockDynamicVariables as $ } from "../extensions/Blocks/Items/enums/productEnums.js";
6
+ import { useRecommendationStore as j } from "../stores/recommendation.js";
7
+ import { base64EncodeWithSpecialChars as q } from "../utils/base64.js";
8
+ import { useHttp as M } from "./useHttp.js";
9
+ import { useToaster as X } from "./useToaster.js";
10
10
  import { useTranslations as z } from "./useTranslations.js";
11
- const K = /recommendation-id="(\d+)"/g;
12
- function U(i) {
13
- return [...i.matchAll(K)].map((u) => u[1]);
14
- }
15
- function Y(i, u) {
16
- return u.some((d) => i.startsWith(`${d}_`));
17
- }
18
- const ce = () => {
19
- var y, h;
20
- const { showToaster: i } = q(), { post: u } = j(), { config: d } = L(), r = z(), g = $(), p = ((h = (y = d.value) == null ? void 0 : y.partner) == null ? void 0 : h.messageType) === V.transactional, w = async (e) => {
21
- const t = await u(
11
+ const oe = () => {
12
+ var d, f;
13
+ const { showToaster: c } = X(), { post: h } = M(), { config: v } = D(), a = z(), m = j(), u = ((f = (d = v.value) == null ? void 0 : d.partner) == null ? void 0 : f.messageType) === H.transactional, C = async (e) => {
14
+ const t = await h(
22
15
  "/newsletter/template-library/check-template-html-body",
23
- { html: X(e) }
24
- ), { status: n, message: l } = t.data;
25
- return n || i({
26
- type: c.Alert,
27
- message: n === void 0 ? l : r("newsletter.invalid-url-link-for-toaster")
28
- }), r(P), l === r(G) && i({
29
- type: c.Alert,
30
- message: r("newsletter.already-in-progress")
16
+ { html: q(e) }
17
+ ), { status: n, message: r } = t.data;
18
+ return n || c({
19
+ type: l.Alert,
20
+ message: n === void 0 ? r : a("newsletter.invalid-url-link-for-toaster")
21
+ }), a(_), r === a(G) && c({
22
+ type: l.Alert,
23
+ message: a("newsletter.already-in-progress")
31
24
  }), n;
32
- }, b = (e) => !["if", "endif", "else", "elif", "now"].includes(e.toLowerCase()), S = (e) => ["if", "endif"].includes(e.toLowerCase()), E = (e, s) => {
25
+ }, w = (e) => !["if", "endif", "else", "elif", "now"].includes(e.toLowerCase()), S = (e) => ["if", "endif"].includes(e.toLowerCase()), b = (e, s) => {
33
26
  const t = e.match(/({%(.*?)%})/g);
34
27
  let n = !0;
35
- return t !== null && !p && t.forEach((l) => {
36
- const o = l.slice(2, -2).trim().match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);
37
- if (o && o.length > 0) {
38
- const [a] = o;
39
- b(a) && !s.includes(a) && (i({
40
- type: c.Warning,
41
- message: r("custom-fields.invalid-custom-fields")
28
+ return t !== null && !u && t.forEach((r) => {
29
+ const i = r.slice(2, -2).trim().match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);
30
+ if (i && i.length > 0) {
31
+ const [o] = i;
32
+ w(o) && !s.includes(o) && (c({
33
+ type: l.Warning,
34
+ message: a("custom-fields.invalid-custom-fields")
42
35
  }), n = !1);
43
36
  }
44
37
  }), n;
45
- }, A = async (e, s, t) => {
46
- const n = t ? await w(e) : !0;
47
- return E(e, s) && n;
48
- }, I = (e) => e.length > 0 ? !0 : (i({
49
- type: c.Warning,
50
- message: r("newsletter.html-content-is-empty")
51
- }), !1), k = (e) => {
38
+ }, E = async (e, s, t) => {
39
+ const n = t ? await C(e) : !0;
40
+ return b(e, s) && n;
41
+ }, A = (e) => e.length > 0 ? !0 : (c({
42
+ type: l.Warning,
43
+ message: a("newsletter.html-content-is-empty")
44
+ }), !1), x = (e) => {
52
45
  const s = (e.match(/{/gm) || []).length, t = (e.match(/}/gm) || []).length;
53
- return s > t && i({
54
- type: c.Warning,
55
- message: r("custom-fields.missing-closing-braces")
56
- }), s < t && i({
57
- type: c.Warning,
58
- message: r("custom-fields.missing-opening-braces")
46
+ return s > t && c({
47
+ type: l.Warning,
48
+ message: a("custom-fields.missing-closing-braces")
49
+ }), s < t && c({
50
+ type: l.Warning,
51
+ message: a("custom-fields.missing-opening-braces")
59
52
  }), s === t;
60
- }, x = (e) => {
53
+ }, k = (e) => {
61
54
  const s = e.match(/{{\s*(\w+\s+((\w+\|\w+)|(\w+)))\s*}}/gm) === null;
62
- return s || i({
63
- type: c.Warning,
64
- message: r("custom-fields.invalid-custom-fields")
55
+ return s || c({
56
+ type: l.Warning,
57
+ message: a("custom-fields.invalid-custom-fields")
65
58
  }), s;
66
59
  }, T = (e, s) => {
67
60
  const t = e.match(/{{([a-zA-Z0-9_\s]*)}}/gm);
68
- if (t && !p) {
69
- const n = new Set(s.map((a) => a.toLowerCase())), l = U(e), o = [];
70
- if (t.forEach((a) => {
71
- const m = a.slice(2, -2).trim().toLowerCase();
72
- (!n.has(m) || m === "") && !Y(m, l) && o.push(m);
73
- }), o.length > 0) {
74
- const a = `
61
+ if (t && !u) {
62
+ const n = new Set(s.map((i) => i.toLowerCase())), r = [];
63
+ if (t.forEach((i) => {
64
+ const o = i.slice(2, -2).trim().toLowerCase();
65
+ (!n.has(o) || o === "") && r.push(o);
66
+ }), r.length > 0) {
67
+ const i = `
75
68
  <ul>
76
- ${o.map((m) => `<li>${m}</li>`).join("")}
69
+ ${r.map((o) => `<li>${o}</li>`).join("")}
77
70
  </ul>
78
71
  `;
79
- return i({
80
- type: c.Alert,
81
- message: r("custom-fields.invalid-custom-fields") + a
72
+ return c({
73
+ type: l.Alert,
74
+ message: a("custom-fields.invalid-custom-fields") + i
82
75
  }), !1;
83
76
  }
84
77
  }
@@ -86,74 +79,71 @@ const ce = () => {
86
79
  }, F = (e) => {
87
80
  const s = e.match(/{%(.*?)%}/g), t = [];
88
81
  let n = !0;
89
- if (s && s.forEach((l) => {
90
- const o = l.match(_), a = l.match(H), m = (o == null ? void 0 : o.join("")) || "";
91
- (!o || l !== m) && !a && (i({
92
- type: c.Alert,
93
- message: r("newsletter.display-conditions-invalid-syntax")
94
- }), n = !1), o && o.forEach((f) => {
95
- f.trim() === "=" && (i({
96
- type: c.Alert,
97
- message: r("custom-conditions.wrong-equality-operators")
82
+ if (s && s.forEach((r) => {
83
+ const i = r.match(P), o = r.match(R), V = (i == null ? void 0 : i.join("")) || "";
84
+ (!i || r !== V) && !o && (c({
85
+ type: l.Alert,
86
+ message: a("newsletter.display-conditions-invalid-syntax")
87
+ }), n = !1), i && i.forEach((g) => {
88
+ g.trim() === "=" && (c({
89
+ type: l.Alert,
90
+ message: a("custom-conditions.wrong-equality-operators")
98
91
  }), n = !1);
99
- const v = f.match(/^[a-zA-Z]*$/g);
100
- v && v.forEach((C) => {
101
- S(C) && t.push(C);
92
+ const p = g.match(/^[a-zA-Z]*$/g);
93
+ p && p.forEach((y) => {
94
+ S(y) && t.push(y);
102
95
  });
103
96
  });
104
97
  }), t.length) {
105
- const l = t.filter((a) => a === "if"), o = t.filter((a) => a === "endif");
106
- l.length !== o.length && (i({
107
- type: c.Alert,
108
- message: r("custom-conditions.missing-if-endif-tag")
98
+ const r = t.filter((o) => o === "if"), i = t.filter((o) => o === "endif");
99
+ r.length !== i.length && (c({
100
+ type: l.Alert,
101
+ message: a("custom-conditions.missing-if-endif-tag")
109
102
  }), n = !1);
110
103
  }
111
104
  return n;
112
- }, W = (e) => {
105
+ }, I = (e) => {
113
106
  const s = (e.match(/{% /gm) || []).length, t = (e.match(/ %}/gm) || []).length, n = s === t;
114
- return n || i({
115
- type: c.Warning,
116
- message: r("custom-conditions.no-space-after-braces")
107
+ return n || c({
108
+ type: l.Warning,
109
+ message: a("custom-conditions.no-space-after-braces")
117
110
  }), n;
118
- }, N = (e) => (e.match(/({%(.*?)%})/g) || []).filter((t) => t.includes("if")).map((t) => (t.match(/{{.*}}/gm) || []).length).reduce((t, n) => t + n, 0) > 0 ? (i({
119
- type: c.Warning,
120
- message: r("custom-conditions.no-braces-inside-if-tag")
121
- }), !1) : !0, O = () => g.recommendationConfigs && Object.values(g.recommendationConfigs).find((s) => s.filters.find((t) => t.value === "")) !== void 0 ? (i({
122
- type: c.Alert,
123
- message: r("newsletter.fill-all-necessary-fields")
124
- }), !1) : !0, B = (e) => {
111
+ }, W = (e) => (e.match(/({%(.*?)%})/g) || []).filter((t) => t.includes("if")).map((t) => (t.match(/{{.*}}/gm) || []).length).reduce((t, n) => t + n, 0) > 0 ? (c({
112
+ type: l.Warning,
113
+ message: a("custom-conditions.no-braces-inside-if-tag")
114
+ }), !1) : !0, L = () => m.recommendationConfigs && Object.values(m.recommendationConfigs).find((s) => s.filters.find((t) => t.value === "")) !== void 0 ? (c({
115
+ type: l.Alert,
116
+ message: a("newsletter.fill-all-necessary-fields")
117
+ }), !1) : !0, N = (e) => {
125
118
  const s = /src="[^"]*\.(svg|pst)"/gm;
126
- return e.match(s) === null ? !0 : (i({
127
- type: c.Alert,
128
- message: r("newsletter.invalid-image-type")
119
+ return e.match(s) === null ? !0 : (c({
120
+ type: l.Alert,
121
+ message: a("newsletter.invalid-image-type")
129
122
  }), !1);
130
- }, R = (e) => {
123
+ }, O = (e) => {
131
124
  const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".checkbox-block-v2");
132
- return Array.from(n).find((o) => {
133
- var a;
134
- return !((a = o.id) != null && a.trim());
135
- }) ? (i({
136
- type: c.Alert,
137
- message: r("unsubscribe-templates.select-checkbox-groups")
125
+ return Array.from(n).find((i) => {
126
+ var o;
127
+ return !((o = i.id) != null && o.trim());
128
+ }) ? (c({
129
+ type: l.Alert,
130
+ message: a("unsubscribe-templates.select-checkbox-groups")
138
131
  }), !1) : !0;
139
- }, D = (e) => {
132
+ }, B = (e) => {
140
133
  const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".radio-button-v2");
141
- return Array.from(n).find((o) => {
142
- var a;
143
- return !((a = o.id) != null && a.trim());
144
- }) ? (i({
145
- type: c.Alert,
146
- message: r("unsubscribe-templates.select-radio-button-groups")
134
+ return Array.from(n).find((i) => {
135
+ var o;
136
+ return !((o = i.id) != null && o.trim());
137
+ }) ? (c({
138
+ type: l.Alert,
139
+ message: a("unsubscribe-templates.select-radio-button-groups")
147
140
  }), !1) : !0;
148
141
  };
149
142
  return { validateHtml: async (e, s, t = !1) => {
150
- const n = [
151
- ...s.map((o) => o.value),
152
- ...M
153
- ];
154
- return await A(e, n, t) && I(e) && k(e) && x(e) && T(e, n) && F(e) && W(e) && N(e) && O() && B(e) && R(e) && D(e);
143
+ const n = [...s.map((i) => i.value), ...$];
144
+ return await E(e, n, t) && A(e) && x(e) && k(e) && T(e, n) && F(e) && I(e) && W(e) && L() && N(e) && O(e) && B(e);
155
145
  } };
156
146
  };
157
147
  export {
158
- ce as useHtmlValidator
148
+ oe as useHtmlValidator
159
149
  };
@@ -1,60 +1,27 @@
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 = () => ({
1
+ import { MinDeviceViewport as r, DefaultPadding as c } from "../enums/recommendation.js";
2
+ const m = () => ({
7
3
  calculateCardWidth: ({
8
- mobileLeftPadding: i,
9
- mobileRightPadding: n,
10
- cardsInRow: o,
11
- unresponsive: a
4
+ mobileLeftPadding: e,
5
+ mobileRightPadding: a,
6
+ cardsInRow: n,
7
+ unresponsive: i
12
8
  }) => {
13
- const r = a ? o : 1, e = i + n + (r - 1) * b;
14
- return (R - e) / r;
9
+ const t = i ? n : 1, o = e + a + (t - 1) * c;
10
+ return (r - o) / t;
15
11
  },
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
- }
12
+ getRecommendationCampaignData: (e) => (console.debug(e), {
13
+ textTrimming: !1,
14
+ orientation: "vertical",
15
+ mobileLeftPadding: 0,
16
+ mobileRightPadding: 0,
17
+ cardsInRow: 2,
18
+ unresponsive: !1,
19
+ priceBeforeTextValue: "",
20
+ priceAfterTextValue: "",
21
+ discountBeforeTextValue: "",
22
+ discountAfterTextValue: ""
23
+ })
57
24
  });
58
25
  export {
59
- N as useRecommendation
26
+ m as useRecommendation
60
27
  };
@@ -1,17 +1,21 @@
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) => {
1
+ import { useConfig as u } from "./useConfig.js";
2
+ import { useSaveStart as d, useSaveComplete as p } from "./useGuidoActions.js";
3
+ import { useSyncModuleExtractor as f } from "./useSyncModuleExtractor.js";
4
+ import { useStripoApi as v } from "../services/stripoApi.js";
5
+ import { useTemplatePreparation as S } from "../utils/templatePreparation.js";
6
+ import { useHtmlValidator as x } from "./useHtmlValidator.js";
7
+ const E = () => {
8
+ const o = d(), s = p(), { validateHtml: i } = x(), { callbacks: a } = u(), { extractSyncModuleUnsubscribeData: r } = f(), { setSyncModuleUnsubscriptionPages: n } = v();
9
+ return { save: async (l = !1) => {
8
10
  var e;
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;
11
+ o();
12
+ const { prepareTemplateDetails: c } = S(), 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 m = r(t.rawHtml);
16
+ return await n(m), l || s(t), t;
13
17
  } };
14
18
  };
15
19
  export {
16
- w as useSave
20
+ E as useSave
17
21
  };
@@ -1,26 +1,26 @@
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;
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;
17
17
  window.UIEditor.initEditor(
18
18
  document.querySelector("#guido-editor"),
19
19
  {
20
20
  metadata: c,
21
- html: r,
22
- css: p,
23
- forceRecreate: T,
21
+ html: p,
22
+ css: a,
23
+ forceRecreate: B,
24
24
  locale: "en",
25
25
  undoButtonSelector: "#guido__undo-button",
26
26
  redoButtonSelector: "#guido__redo-button",
@@ -30,19 +30,20 @@ const W = (c) => {
30
30
  customAppearanceMergetags: !0,
31
31
  customAppearanceMergetagsBorderColor: "#f1f3fe",
32
32
  customAppearanceMergetagsBackgroundColor: "#f1f3fe",
33
- customViewStyles: U,
34
- conditionsEnabled: a,
35
- customConditionsEnabled: a,
36
- conditionCategories: I,
33
+ customViewStyles: H,
34
+ conditionsEnabled: m,
35
+ customConditionsEnabled: m,
36
+ conditionCategories: P,
37
37
  enableXSSSecurity: !0,
38
- modulesDisabled: k,
38
+ modulesDisabled: _,
39
+ syncModulesEnabled: r,
39
40
  messageSettingsEnabled: !0,
40
41
  displayGmailAnnotations: !0,
41
42
  displayHiddenPreheader: !1,
42
43
  displayTitle: !1,
43
44
  displayUTM: !1,
44
45
  selectElementAfterDrop: !0,
45
- ...s ? { baseBlocks: s } : {},
46
+ ...t ? { baseBlocks: t } : {},
46
47
  editorFonts: {
47
48
  showDefaultStandardFonts: !0,
48
49
  showDefaultNotStandardFonts: !0,
@@ -50,68 +51,71 @@ const W = (c) => {
50
51
  },
51
52
  mergeTags: [
52
53
  {
53
- entries: R(c.preselectedDynamicContentList)
54
+ entries: O(c.preselectedDynamicContentList)
54
55
  }
55
56
  ],
56
- async onTokenRefreshRequest(e) {
57
+ async onTokenRefreshRequest(o) {
57
58
  try {
58
- const d = await C();
59
- e(d);
60
- } catch (d) {
61
- u(d, "Failed to refresh token");
59
+ const s = await E();
60
+ o(s);
61
+ } catch (s) {
62
+ u(s, "Failed to refresh token");
62
63
  }
63
64
  },
64
65
  onTemplateLoaded() {
65
66
  try {
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;
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;
69
70
  }, 1e3);
70
- } catch (e) {
71
- u(e, "Failed to load custom interface appearance");
71
+ } catch (o) {
72
+ u(o, "Failed to load custom interface appearance");
72
73
  }
73
74
  },
74
- onCodeEditorVisibilityChanged(e) {
75
- o.isCodeEditorOpen = e;
75
+ onCodeEditorVisibilityChanged(o) {
76
+ e.isCodeEditorOpen = o;
76
77
  },
77
- onEditorVisualModeChanged(e) {
78
- o.editorVisualMode = e.toLowerCase();
78
+ onEditorVisualModeChanged(o) {
79
+ e.editorVisualMode = o.toLowerCase();
79
80
  },
80
- onVersionHistoryVisibilityChanged(e) {
81
- o.isVersionHistoryOpen = e;
81
+ onVersionHistoryVisibilityChanged(o) {
82
+ e.isVersionHistoryOpen = o;
82
83
  },
83
84
  onDataChanged() {
84
- o.hasChanges = !0;
85
+ e.hasChanges = !0;
85
86
  },
86
- onEvent: E,
87
+ onEvent: b,
87
88
  ignoreClickOutsideSelectors: [
88
89
  "#guido-dynamic-content-modal",
89
90
  ".in-on-board-wrapper",
90
91
  ".in-drawer__container"
91
92
  ],
92
- extensions: t
93
+ extensions: d
93
94
  }
94
95
  );
95
- }, b = (i) => new Promise((n, o) => {
96
- var a;
96
+ }, V = (i) => new Promise((n, r) => {
97
+ var d;
97
98
  if (document.getElementById("UiEditorScript")) {
98
99
  i(), n();
99
100
  return;
100
101
  }
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 = () => {
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 = () => {
103
104
  i(), n();
104
105
  }, t.onerror = () => {
105
- o(new Error(`Failed to load Stripo UIEditor script from S3: ${s}`));
106
+ r(new Error(`Failed to load Stripo UIEditor script from S3: ${a}`));
106
107
  }, document.body.appendChild(t);
107
108
  });
108
109
  return { initPlugin: async (i) => {
109
- await b(async () => {
110
- const n = await S();
111
- await w(i, n);
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);
112
116
  });
113
117
  } };
114
118
  };
115
119
  export {
116
- W as useStripo
120
+ Z as useStripo
117
121
  };
@@ -1,20 +1,35 @@
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)
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
- n.start("textBlockOnboarding");
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 (t, n) => {
14
- const o = e[t];
15
- o && await o(n);
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
- c as useStripoEventHandler
34
+ v as useStripoEventHandler
20
35
  };
@@ -0,0 +1,33 @@
1
+ import { UNSUBSCRIBE_SYNC_MODULE_TYPES as S } from "../enums/unsubscribe.js";
2
+ import { DATA_ATTRIBUTES as a } from "../extensions/Blocks/Unsubscribe/utils/constants.js";
3
+ import { useEditorStore as d } from "../stores/editor.js";
4
+ const T = ".esd-synchronizable-module", m = '[esd-extension-block-id="unsubscribe-block"]', A = "esd-custom-block-id", M = () => {
5
+ const l = d();
6
+ return { extractSyncModuleUnsubscribeData: (p) => {
7
+ if (!l.syncModulesEnabled)
8
+ return [];
9
+ const E = new DOMParser().parseFromString(p, "text/html").querySelectorAll(T), e = [];
10
+ return E.forEach((r) => {
11
+ const s = r.getAttribute(A);
12
+ if (!s)
13
+ return;
14
+ r.querySelectorAll(m).forEach((o) => {
15
+ const n = o.getAttribute(a.PAGE_LIST), c = o.getAttribute(a.PAGE_TYPE);
16
+ if (!n || !c)
17
+ return;
18
+ const b = parseInt(c), u = S[b];
19
+ if (!u)
20
+ return;
21
+ const i = n.split(",").map((t) => parseInt(t.trim())).filter((t) => !Number.isNaN(t));
22
+ i.length !== 0 && e.push({
23
+ stripoModuleId: s,
24
+ unsubscriptionPreferencePages: i,
25
+ type: u
26
+ });
27
+ });
28
+ }), e;
29
+ } };
30
+ };
31
+ export {
32
+ M as useSyncModuleExtractor
33
+ };