@useinsider/guido 3.1.1-beta.f9482a3 → 3.1.1-beta.face0c7

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 (71) hide show
  1. package/README.md +1 -0
  2. package/dist/@types/config/schemas.js +69 -59
  3. package/dist/components/Guido.vue.js +4 -4
  4. package/dist/components/Guido.vue2.js +91 -81
  5. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +7 -7
  6. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +12 -20
  7. package/dist/components/organisms/header/EditorActions.vue.js +2 -2
  8. package/dist/components/organisms/header/EditorActions.vue2.js +51 -36
  9. package/dist/components/organisms/header/RightSlot.vue.js +10 -10
  10. package/dist/components/organisms/header/RightSlot.vue2.js +16 -13
  11. package/dist/components/organisms/save-as-template/SaveAsTemplateDrawer.vue2.js +18 -17
  12. package/dist/composables/useHtmlCompiler.js +23 -21
  13. package/dist/composables/usePreviewMode.js +20 -16
  14. package/dist/composables/useSave.js +23 -15
  15. package/dist/composables/useStripo.js +44 -41
  16. package/dist/composables/validators/useLiquidValidator.js +42 -0
  17. package/dist/config/compiler/liquidCompilerRules.js +15 -0
  18. package/dist/config/compiler/recommendationCompilerRules.js +88 -82
  19. package/dist/config/compiler/utils/recommendationCompilerUtils.js +66 -64
  20. package/dist/config/migrator/checkboxMigrator.js +5 -3
  21. package/dist/config/migrator/radioButtonMigrator.js +14 -12
  22. package/dist/enums/extensions/recommendationBlock.js +14 -11
  23. package/dist/enums/recommendation.js +2 -2
  24. package/dist/extensions/Blocks/CouponBlock/template.js +24 -13
  25. package/dist/extensions/Blocks/Recommendation/block.js +1 -1
  26. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +27 -11
  27. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +185 -172
  28. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +95 -93
  29. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +75 -73
  30. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +7 -5
  31. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +30 -29
  32. package/dist/extensions/Blocks/Recommendation/templates/index.js +7 -7
  33. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +3 -1
  34. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +20 -20
  35. package/dist/extensions/Blocks/Recommendation/templates/utils.js +57 -50
  36. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +6 -6
  37. package/dist/extensions/Blocks/Unsubscribe/settingsPanel.js +16 -17
  38. package/dist/extensions/DynamicContent/dynamic-content.js +17 -12
  39. package/dist/guido.css +1 -1
  40. package/dist/services/recommendationApi.js +15 -15
  41. package/dist/services/stripoApi.js +9 -9
  42. package/dist/services/templateLibraryApi.js +48 -46
  43. package/dist/src/@types/config/index.d.ts +1 -1
  44. package/dist/src/@types/config/schemas.d.ts +24 -0
  45. package/dist/src/@types/config/types.d.ts +3 -1
  46. package/dist/src/@types/generic.d.ts +0 -1
  47. package/dist/src/@types/save-as-template.d.ts +1 -0
  48. package/dist/src/composables/useConfig.d.ts +10 -0
  49. package/dist/src/composables/validators/useLiquidValidator.d.ts +3 -0
  50. package/dist/src/config/compiler/liquidCompilerRules.d.ts +2 -0
  51. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +1 -1
  52. package/dist/src/enums/extensions/recommendationBlock.d.ts +3 -0
  53. package/dist/src/extensions/Blocks/CouponBlock/template.d.ts +2 -0
  54. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +1 -1
  55. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +5 -0
  56. package/dist/src/extensions/Blocks/Recommendation/controls/cardComposition/index.d.ts +5 -0
  57. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +4 -4
  58. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +3 -3
  59. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +20 -3
  60. package/dist/src/services/templateLibraryApi.d.ts +1 -1
  61. package/dist/src/stores/config.d.ts +90 -0
  62. package/dist/src/stores/preview.d.ts +3 -0
  63. package/dist/src/utils/genericUtil.d.ts +1 -1
  64. package/dist/src/utils/htmlCompiler.d.ts +2 -1
  65. package/dist/static/styles/base.css.js +7 -2
  66. package/dist/stores/preview.js +4 -3
  67. package/dist/utils/genericUtil.js +42 -20
  68. package/dist/utils/htmlCompiler.js +48 -41
  69. package/dist/utils/templatePreparation.js +35 -26
  70. package/dist/utils/tooltipUtils.js +4 -5
  71. package/package.json +2 -2
@@ -1,16 +1,16 @@
1
1
  import { useRecommendation as N } from "../../composables/useRecommendation.js";
2
- import { DUMMY_IMAGE_MAPPINGS as M, REGEX as _, VerticalOrientation as h, CSS as d, ATTRIBUTES as R, CONDITIONS as y, HTML as C } from "../../enums/recommendation.js";
2
+ import { DUMMY_IMAGE_MAPPINGS as C, REGEX as T, VerticalOrientation as M, CSS as E, ATTRIBUTES as R, CONDITIONS as $, HTML as h } from "../../enums/recommendation.js";
3
3
  import { prepareRecommendationBlocks as x } from "./utils/recommendationCompilerUtils.js";
4
4
  const w = [
5
5
  {
6
6
  id: "replace-images-with-variable-names",
7
7
  description: "Replacing dummy images with variable names in recommendation module",
8
8
  type: "custom",
9
- processor: (n) => {
10
- let e = n;
11
- return Object.entries(M).forEach(([, l]) => {
12
- Object.entries(l).forEach(([s, r]) => {
13
- e = e.replaceAll(r, `{{${s}}}`);
9
+ processor: (i) => {
10
+ let e = i;
11
+ return Object.entries(C).forEach(([, p]) => {
12
+ Object.entries(p).forEach(([c, n]) => {
13
+ e = e.replaceAll(n, `{{${c}}}`);
14
14
  });
15
15
  }), e;
16
16
  },
@@ -29,21 +29,21 @@ const w = [
29
29
  id: "add-recommendation-unresponsive-css",
30
30
  description: "Adding recommendation unresponsive css",
31
31
  type: "custom",
32
- processor: (n) => {
33
- const { calculateCardWidth: e, getRecommendationCampaignData: l } = N();
34
- let s = n;
35
- const r = s.match(_.ID);
36
- if (r) {
37
- const i = [];
38
- if (r.forEach((p) => {
39
- const u = /recommendation-id="(.*?)"/i.exec(p), I = u ? u[1].trim() : "", E = l(I);
40
- E.textTrimming && E.orientation === h && i.push(e(E));
41
- }), i.length) {
42
- const p = `width:${Math.min(...i)}px!important;`;
43
- s = s.replace(d.REGULAR_NAME_HEIGHT, `${d.TRIMMED_NAME_HEIGHT} ${p} ${d.ELLIPSIS}`).replace(d.REGULAR_NAME_CONTAINER_HEIGHT, d.TRIMMED_NAME_CONTAINER_CSS).replace(d.RESPONSIVE_NAME_SIZE, `${d.RESPONSIVE_NAME_HEIGHT} ${p} ${d.ELLIPSIS}`).replace(d.RESPONSIVE_NAME_CONTAINER_HEIGHT, d.TRIMMED_RESPONSIVE_NAME_CONTAINER_CSS);
32
+ processor: (i) => {
33
+ const { calculateCardWidth: e, getRecommendationCampaignData: p } = N();
34
+ let c = i;
35
+ const n = c.match(T.ID);
36
+ if (n) {
37
+ const a = [];
38
+ if (n.forEach((s) => {
39
+ const d = /recommendation-id="(.*?)"/i.exec(s), _ = d ? d[1].trim() : "", A = p(_);
40
+ A.textTrimming && A.orientation === M && a.push(e(A));
41
+ }), a.length) {
42
+ const s = `width:${Math.min(...a)}px!important;`;
43
+ c = c.replace(E.REGULAR_NAME_HEIGHT, `${E.TRIMMED_NAME_HEIGHT} ${s} ${E.ELLIPSIS}`).replace(E.REGULAR_NAME_CONTAINER_HEIGHT, E.TRIMMED_NAME_CONTAINER_CSS).replace(E.RESPONSIVE_NAME_SIZE, `${E.RESPONSIVE_NAME_HEIGHT} ${s} ${E.ELLIPSIS}`).replace(E.RESPONSIVE_NAME_CONTAINER_HEIGHT, E.TRIMMED_RESPONSIVE_NAME_CONTAINER_CSS);
44
44
  }
45
45
  }
46
- return s;
46
+ return c;
47
47
  },
48
48
  priority: 52
49
49
  },
@@ -51,34 +51,34 @@ const w = [
51
51
  id: "prepare-recommendations",
52
52
  description: "Replacing product data with template variables in recommendation blocks",
53
53
  type: "custom",
54
- processor: (n) => x(n),
54
+ processor: (i) => x(i),
55
55
  priority: 48
56
56
  },
57
57
  {
58
58
  id: "add-discount-conditions",
59
59
  description: "Adding discount conditions to the recommendation block",
60
60
  type: "custom",
61
- processor: (n) => {
62
- let e = n;
63
- const l = e.match(_.ATTRIBUTE_PARAGRAPH), { getRecommendationCampaignData: s } = N();
64
- return l !== null && l.forEach((r) => {
65
- const i = r.match(_.CUSTOM_FIELD);
66
- if (!i)
61
+ processor: (i) => {
62
+ let e = i;
63
+ const p = e.match(T.ATTRIBUTE_PARAGRAPH), { getRecommendationCampaignData: c } = N();
64
+ return p !== null && p.forEach((n) => {
65
+ const a = n.match(T.CUSTOM_FIELD);
66
+ if (!a)
67
67
  return;
68
- const [p] = i, u = p.match(_.CUSTOM_FIELD_INDEXES_PART), I = p.match(_.CUSTOM_FIELD_NAME_PART), E = r.match(_.ATTRIBUTE_PARAGRAPH_START_TAG);
69
- if (!u || !I || !E)
68
+ const [s] = a, d = s.match(T.CUSTOM_FIELD_INDEXES_PART), _ = s.match(T.CUSTOM_FIELD_NAME_PART), A = n.match(T.ATTRIBUTE_PARAGRAPH_START_TAG);
69
+ if (!d || !_ || !A)
70
70
  return;
71
- const [S] = u, [m] = I, [t] = E, o = m.substring(1, m.length - 2), c = t.match(_.COMPOSITION) !== null;
72
- let a = p;
73
- if (c) {
74
- const b = S.substring(2, S.length - 3), A = s(b);
75
- o === R.OMNIBUS_PRICE && (A.priceBeforeTextValue && (a = `${A.priceBeforeTextValue}${a}`), A.priceAfterTextValue && (a = `${a}${A.priceAfterTextValue}`)), o === R.OMNIBUS_DISCOUNT && (A.discountBeforeTextValue && (a = `${A.discountBeforeTextValue}${a}`), A.discountAfterTextValue && (a = `${a}${A.discountAfterTextValue}`));
71
+ const [I] = d, [S] = _, [m] = A, o = S.substring(1, S.length - 2), r = m.match(T.COMPOSITION) !== null;
72
+ let t = s;
73
+ if (r) {
74
+ const b = I.substring(2, I.length - 3), l = c(b);
75
+ o === R.OMNIBUS_PRICE && (l.priceBeforeTextValue && (t = `${l.priceBeforeTextValue}${t}`), l.priceAfterTextValue && (t = `${t}${l.priceAfterTextValue}`)), o === R.OMNIBUS_DISCOUNT && (l.discountBeforeTextValue && (t = `${l.discountBeforeTextValue}${t}`), l.discountAfterTextValue && (t = `${t}${l.discountAfterTextValue}`));
76
76
  }
77
- const f = S.substring(2);
78
- let T = "";
79
- o in y.IF && (T = y.IF[o].replaceAll(`{${R.DISCOUNT}}`, `${f}${R.DISCOUNT}`).replaceAll(`{${R.OMNIBUS_DISCOUNT}}`, `${f}${R.OMNIBUS_DISCOUNT}`).replaceAll(`{${R.OMNIBUS_PRICE}}`, `${f}${R.OMNIBUS_PRICE}`));
80
- const $ = `${t}${a}${C.PARAGRAPH_END_TAG}`, g = `${T}${c ? $ : r}${y.ELSE}${t}${C.PARAGRAPH_END_TAG}${y.END_IF}`;
81
- e = e.replace(r, g);
77
+ const u = I.substring(2);
78
+ let f = "";
79
+ o in $.IF && (f = $.IF[o].replaceAll(`{${R.DISCOUNT}}`, `${u}${R.DISCOUNT}`).replaceAll(`{${R.OMNIBUS_DISCOUNT}}`, `${u}${R.OMNIBUS_DISCOUNT}`).replaceAll(`{${R.OMNIBUS_PRICE}}`, `${u}${R.OMNIBUS_PRICE}`));
80
+ const g = `${m}${t}${h.PARAGRAPH_END_TAG}`, y = `${f}${r ? g : n}${$.ELSE}${m}${h.PARAGRAPH_END_TAG}${$.END_IF}`;
81
+ e = e.replace(n, y);
82
82
  }), e;
83
83
  },
84
84
  priority: 53
@@ -106,8 +106,8 @@ const w = [
106
106
  id: "strip-unused-recommendation-classes",
107
107
  description: "Remove CSS classes not referenced by any style rule from recommendation elements",
108
108
  type: "custom",
109
- processor: (n) => {
110
- let e = n.replace(
109
+ processor: (i) => {
110
+ let e = i.replace(
111
111
  / class="(?:product-card-segment|attribute-cell|recommendation-attribute-row|product-image|product-name|product-price|product-old-price|product-omnibus-price|product-omnibus-discount|product-button|recommendation-product-row|product-card-wrapper)"/g,
112
112
  ""
113
113
  );
@@ -119,8 +119,8 @@ const w = [
119
119
  id: "remove-empty-mobile-layout-artifacts",
120
120
  description: "Remove empty mobile container rows and unused mobile layout CSS",
121
121
  type: "custom",
122
- processor: (n) => {
123
- let e = n;
122
+ processor: (i) => {
123
+ let e = i;
124
124
  return e = e.replace(
125
125
  /<tr[^>]*class="ins-recommendation-mobile-row"[^>]*><\/tr>/g,
126
126
  ""
@@ -129,9 +129,9 @@ const w = [
129
129
  ""
130
130
  ), e = e.replace(
131
131
  /@media[^{]*max-width\s*:\s*480px[^{]*\{((?:[^{}]*\{[^{}]*\})*[^{}]*)\}/g,
132
- (l, s) => {
133
- const r = s.match(/[^{}]+\{[^{}]*\}/g) || [], i = /ins-recommendation|product-image-cell|button-cell|product-info-cell/;
134
- return r.every((u) => i.test(u)) ? "" : l;
132
+ (p, c) => {
133
+ const n = c.match(/[^{}]+\{[^{}]*\}/g) || [], a = /ins-recommendation|product-image-cell|button-cell|product-info-cell/;
134
+ return n.every((d) => a.test(d)) ? "" : p;
135
135
  }
136
136
  )), e;
137
137
  },
@@ -141,51 +141,57 @@ const w = [
141
141
  id: "deduplicate-inline-styles",
142
142
  description: "Replace repeated inline styles with CSS class references within recommendation blocks",
143
143
  type: "custom",
144
- processor: (n) => {
145
- const e = /<!--REC_START-->([\s\S]*?)<!--REC_END-->/g, l = / style="([^"]*)"/g, s = /* @__PURE__ */ new Map();
146
- let r = e.exec(n);
147
- for (; r !== null; ) {
148
- let t = l.exec(r[1]);
149
- for (; t !== null; ) {
150
- const [, o] = t;
151
- s.set(o, (s.get(o) || 0) + 1), t = l.exec(r[1]);
144
+ processor: (i) => {
145
+ const e = i.replace(
146
+ /<a\b[^>]*\bes-button\b[^>]*>/g,
147
+ (o) => o.replace(
148
+ /([;"]color:)([^;"]+)/g,
149
+ (r, t, u) => u.includes("!important") ? r : `${t}${u} !important`
150
+ )
151
+ ), p = /<!--REC_START-->([\s\S]*?)<!--REC_END-->/g, c = / style="([^"]*)"/g, n = /* @__PURE__ */ new Map();
152
+ let a = p.exec(e);
153
+ for (; a !== null; ) {
154
+ let o = c.exec(a[1]);
155
+ for (; o !== null; ) {
156
+ const [, r] = o;
157
+ n.set(r, (n.get(r) || 0) + 1), o = c.exec(a[1]);
152
158
  }
153
- l.lastIndex = 0, r = e.exec(n);
159
+ c.lastIndex = 0, a = p.exec(e);
154
160
  }
155
- const i = /* @__PURE__ */ new Map(), p = [];
156
- let u = 0;
157
- if (s.forEach((t, o) => {
158
- if (t >= 6) {
159
- const c = `rc${u++}`;
160
- i.set(o, c), p.push(`.${c}{${o}}`);
161
+ const s = /* @__PURE__ */ new Map(), d = [];
162
+ let _ = 0;
163
+ if (n.forEach((o, r) => {
164
+ if (o >= 6) {
165
+ const t = `rc${_++}`;
166
+ s.set(r, t), d.push(`.${t}{${r}}`);
161
167
  }
162
- }), i.size === 0) {
163
- let t = n;
164
- return t = t.replaceAll("<!--REC_START-->", ""), t = t.replaceAll("<!--REC_END-->", ""), t;
168
+ }), s.size === 0) {
169
+ let o = e;
170
+ return o = o.replaceAll("<!--REC_START-->", ""), o = o.replaceAll("<!--REC_END-->", ""), o;
165
171
  }
166
- const I = (t) => t.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), E = (t, o) => `${t.slice(0, -1)} ${o}"`, S = /* @__PURE__ */ new Map();
167
- i.forEach((t, o) => {
168
- const c = I(o);
169
- S.set(o, {
170
- caseA: new RegExp(`(class="[^"]*")((?:[^>]*?)) style="${c}"`, "g"),
171
- caseB: new RegExp(` style="${c}"((?:[^>]*?))(class="[^"]*")`, "g")
172
+ const A = (o) => o.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), I = (o, r) => `${o.slice(0, -1)} ${r}"`, S = /* @__PURE__ */ new Map();
173
+ s.forEach((o, r) => {
174
+ const t = A(r);
175
+ S.set(r, {
176
+ caseA: new RegExp(`(class="[^"]*")((?:[^>]*?)) style="${t}"`, "g"),
177
+ caseB: new RegExp(` style="${t}"((?:[^>]*?))(class="[^"]*")`, "g")
172
178
  });
173
179
  });
174
- let m = n.replace("</style>", `${p.join("")}</style>`);
180
+ let m = e.replace("</style>", `${d.join("")}</style>`);
175
181
  return m = m.replace(
176
182
  /<!--REC_START-->([\s\S]*?)<!--REC_END-->/g,
177
- (t, o) => {
178
- let c = o;
179
- return i.forEach((a, f) => {
180
- const T = S.get(f);
181
- T.caseA.lastIndex = 0, c = c.replace(
182
- T.caseA,
183
- ($, g, b) => E(g, a) + b
184
- ), T.caseB.lastIndex = 0, c = c.replace(
185
- T.caseB,
186
- ($, g, b) => g + E(b, a)
187
- ), c = c.replaceAll(` style="${f}"`, ` class="${a}"`);
188
- }), c;
183
+ (o, r) => {
184
+ let t = r;
185
+ return s.forEach((u, f) => {
186
+ const g = S.get(f);
187
+ t = t.replace(
188
+ g.caseA,
189
+ (y, b, l) => I(b, u) + l
190
+ ), t = t.replace(
191
+ g.caseB,
192
+ (y, b, l) => b + I(l, u)
193
+ ), t = t.replaceAll(` style="${f}"`, ` class="${u}"`);
194
+ }), t;
189
195
  }
190
196
  ), m = m.replaceAll("<!--REC_START-->", ""), m = m.replaceAll("<!--REC_END-->", ""), m;
191
197
  },
@@ -1,133 +1,135 @@
1
- import { useRecommendation as S } from "../../../composables/useRecommendation.js";
2
- function b(e, n, r, c) {
3
- const u = `{{${e}_${n}_${r}}}`, t = `{{${e}_${n}_currency}}`;
4
- return c === "before" ? `${t} ${u}` : `${u} ${t}`;
1
+ import { useConfig as S } from "../../../composables/useConfig.js";
2
+ import { useRecommendation as _ } from "../../../composables/useRecommendation.js";
3
+ function y(e, u, r, o, s = "") {
4
+ const n = `{{${s}${e}_${u}_${r}}}`, t = `{{${s}${e}_${u}_currency}}`;
5
+ return o === "before" ? `${t} ${n}` : `${n} ${t}`;
5
6
  }
6
- function p(e, n, r, c, u) {
7
- switch (n) {
7
+ function p(e, u, r, o, s, n) {
8
+ switch (u) {
8
9
  case "productImage": {
9
10
  const t = e.querySelector("img");
10
- t && (t.setAttribute("src", `{{${r}_${c}_image_url}}`), t.setAttribute("alt", `{{${r}_${c}_name}}`));
11
- const o = e.querySelector("a");
12
- o && o.setAttribute("href", `{{${r}_${c}_url}}`);
11
+ t && (t.setAttribute("src", `{{${n}${r}_${o}_image_url}}`), t.setAttribute("alt", `{{${n}${r}_${o}_name}}`));
12
+ const c = e.querySelector("a");
13
+ c && c.setAttribute("href", `{{${n}${r}_${o}_url}}`);
13
14
  break;
14
15
  }
15
16
  case "productName": {
16
17
  const t = e.querySelector("p");
17
18
  if (t) {
18
- const o = t.querySelector("strong") || t;
19
- o.textContent = `{{${r}_${c}_name}}`;
19
+ const c = t.querySelector("strong") || t;
20
+ c.textContent = `{{${n}${r}_${o}_name}}`;
20
21
  }
21
22
  break;
22
23
  }
23
24
  case "productPrice": {
24
25
  const t = e.querySelector("p");
25
26
  if (t) {
26
- const o = t.querySelector("strong") || t;
27
- o.textContent = b(r, c, "price", u);
27
+ const c = t.querySelector("strong") || t;
28
+ c.textContent = y(r, o, "price", s, n);
28
29
  }
29
30
  break;
30
31
  }
31
32
  case "productOldPrice": {
32
33
  const t = e.querySelector("p");
33
34
  if (t) {
34
- const o = t.querySelector("strong") || t;
35
- o.textContent = b(
35
+ const c = t.querySelector("strong") || t;
36
+ c.textContent = y(
36
37
  r,
37
- c,
38
+ o,
38
39
  "original_price",
39
- u
40
+ s,
41
+ n
40
42
  ), t.setAttribute("product-attr", "discount");
41
43
  }
42
44
  break;
43
45
  }
44
46
  case "productButton": {
45
47
  const t = e.querySelector("a");
46
- t && t.setAttribute("href", `{{${r}_${c}_url}}`);
48
+ t && t.setAttribute("href", `{{${n}${r}_${o}_url}}`);
47
49
  break;
48
50
  }
49
51
  case "productOmnibusPrice": {
50
52
  const t = e.querySelector(".omnibus-price-value");
51
53
  if (t) {
52
- t.textContent = `{{${r}_${c}_omnibus_price}}`;
53
- const o = t.closest("p");
54
- o && (o.setAttribute("product-attr", "omnibus_price"), o.setAttribute("composition", "true"));
54
+ t.textContent = `{{${n}${r}_${o}_omnibus_price}}`;
55
+ const c = t.closest("p");
56
+ c && (c.setAttribute("product-attr", "omnibus_price"), c.setAttribute("composition", "true"));
55
57
  }
56
58
  break;
57
59
  }
58
60
  case "productOmnibusDiscount": {
59
61
  const t = e.querySelector(".omnibus-discount-value");
60
62
  if (t) {
61
- t.textContent = `{{${r}_${c}_omnibus_discount}}`;
62
- const o = t.closest("p");
63
- o && (o.setAttribute("product-attr", "omnibus_discount"), o.setAttribute("composition", "true"));
63
+ t.textContent = `{{${n}${r}_${o}_omnibus_discount}}`;
64
+ const c = t.closest("p");
65
+ c && (c.setAttribute("product-attr", "omnibus_discount"), c.setAttribute("composition", "true"));
64
66
  }
65
67
  break;
66
68
  }
67
69
  default: {
68
70
  const t = e.getAttribute("product-attr") ? e : e.querySelector("[product-attr]");
69
71
  if (t) {
70
- const o = t.getAttribute("product-attr"), s = t.querySelector("p");
71
- if (s) {
72
- const i = s.querySelector("strong") || s;
73
- i.textContent = `{{${r}_${c}_${o}}}`;
72
+ const c = t.getAttribute("product-attr"), i = t.querySelector("p");
73
+ if (i) {
74
+ const a = i.querySelector("strong") || i;
75
+ a.textContent = `{{${n}${r}_${o}_${c}}}`;
74
76
  }
75
77
  }
76
78
  break;
77
79
  }
78
80
  }
79
81
  }
80
- function _(e, n, r) {
81
- e.querySelectorAll(".recommendation-product-row").forEach((u, t) => {
82
- u.querySelectorAll("[data-attribute-type]").forEach((s) => {
83
- const i = s.getAttribute("data-attribute-type") || "", a = s.querySelectorAll(".attribute-cell");
84
- a.length > 0 ? a.forEach((l) => {
85
- p(l, i, n, t, r);
86
- }) : p(s, i, n, t, r);
82
+ function d(e, u, r, o) {
83
+ e.querySelectorAll(".recommendation-product-row").forEach((n, t) => {
84
+ n.querySelectorAll("[data-attribute-type]").forEach((i) => {
85
+ const a = i.getAttribute("data-attribute-type") || "", b = i.querySelectorAll(".attribute-cell");
86
+ b.length > 0 ? b.forEach((l) => {
87
+ p(l, a, u, t, r, o);
88
+ }) : p(i, a, u, t, r, o);
87
89
  });
88
90
  });
89
91
  }
90
- function $(e, n, r) {
91
- const c = e.querySelectorAll(".recommendation-product-row");
92
- if (!c.length)
92
+ function q(e, u, r, o) {
93
+ const s = e.querySelectorAll(".recommendation-product-row");
94
+ if (!s.length)
93
95
  return;
94
- const [u] = c, t = u.querySelector("[data-attribute-type]"), o = t ? t.querySelectorAll(".attribute-cell").length : 1;
95
- c.forEach((s, i) => {
96
- s.querySelectorAll("[data-attribute-type]").forEach((l) => {
97
- const f = l.getAttribute("data-attribute-type") || "";
98
- l.querySelectorAll(".attribute-cell").forEach((y, m) => {
99
- const A = i * o + m;
100
- p(y, f, n, A, r);
96
+ const [n] = s, t = n.querySelector("[data-attribute-type]"), c = t ? t.querySelectorAll(".attribute-cell").length : 1;
97
+ s.forEach((i, a) => {
98
+ i.querySelectorAll("[data-attribute-type]").forEach((l) => {
99
+ const m = l.getAttribute("data-attribute-type") || "";
100
+ l.querySelectorAll(".attribute-cell").forEach(($, f) => {
101
+ const A = a * c + f;
102
+ p($, m, u, A, r, o);
101
103
  });
102
104
  });
103
105
  });
104
106
  }
105
- function d(e, n, r) {
106
- e.querySelectorAll(".ins-recommendation-product-container").forEach((u) => {
107
- $(u, n, r);
107
+ function g(e, u, r, o) {
108
+ e.querySelectorAll(".ins-recommendation-product-container").forEach((n) => {
109
+ q(n, u, r, o);
108
110
  });
109
111
  }
110
- function q(e, n) {
111
- const r = e.getAttribute("data-layout") || "grid", c = e.getAttribute("currency-alignment") || "after";
112
- r === "list" ? _(e, n, c) : d(e, n, c);
112
+ function h(e, u, r) {
113
+ const o = e.getAttribute("data-layout") || "grid", s = e.getAttribute("currency-alignment") || "after";
114
+ o === "list" ? d(e, u, s, r) : g(e, u, s, r);
113
115
  }
114
- function g(e, n) {
116
+ function C(e, u) {
115
117
  const r = e.match(/<!DOCTYPE[^>]*>/i);
116
118
  return (r ? `${r[0]}
117
- ` : "") + n.documentElement.outerHTML;
119
+ ` : "") + u.documentElement.outerHTML;
118
120
  }
119
- function E(e) {
120
- const n = e.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), r = new DOMParser().parseFromString(n, "text/html"), c = r.querySelectorAll(".recommendation-block-v2");
121
- if (!c.length)
121
+ function P(e) {
122
+ const u = e.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), r = new DOMParser().parseFromString(u, "text/html"), o = r.querySelectorAll(".recommendation-block-v2");
123
+ if (!o.length)
122
124
  return e;
123
- const { buildCampaignUrl: u } = S();
124
- return c.forEach((o) => {
125
- var i, a;
126
- const s = o.getAttribute("recommendation-id");
127
- s && ((i = o.parentNode) == null || i.insertBefore(r.createComment("REC_START"), o), (a = o.parentNode) == null || a.insertBefore(r.createComment("REC_END"), o.nextSibling), u(s), q(o, s));
128
- }), g(n, r).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
125
+ const { buildCampaignUrl: s } = _(), { isFeatureEnabled: n } = S(), t = n("liquidSyntax") ? "reco_" : "";
126
+ return o.forEach((i) => {
127
+ var b, l;
128
+ const a = i.getAttribute("recommendation-id");
129
+ a && ((b = i.parentNode) == null || b.insertBefore(r.createComment("REC_START"), i), (l = i.parentNode) == null || l.insertBefore(r.createComment("REC_END"), i.nextSibling), s(a), h(i, a, t));
130
+ }), C(u, r).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
129
131
  }
130
132
  export {
131
- b as formatPriceVariable,
132
- E as prepareRecommendationBlocks
133
+ y as formatPriceVariable,
134
+ P as prepareRecommendationBlocks
133
135
  };
@@ -11,6 +11,8 @@ class f {
11
11
  try {
12
12
  const e = this.parser.parseFromString(t, "text/html"), i = e.querySelectorAll("td.checkbox-block");
13
13
  return i.length === 0 ? t : (i.forEach((r) => {
14
+ if (r.classList.contains("checkbox-block-v2"))
15
+ return;
14
16
  const n = r.getAttribute("id"), l = this.extractTextFromElement(r, "ins-title"), c = this.extractTextFromElement(r, "ins-description"), a = this.buildTextBlock(l), p = this.buildTextBlock(c), g = b.replace("{-{-TITLE-}-}", a).replace("{-{-DESCRIPTION-}-}", p), o = this.parser.parseFromString(
15
17
  `<table id="tempDoc"><tbody><tr>${g}</tr></tbody></table>`,
16
18
  "text/html"
@@ -22,7 +24,7 @@ class f {
22
24
  }
23
25
  }
24
26
  extractTextFromElement(t, e) {
25
- var o, u;
27
+ var o, d;
26
28
  const i = t.querySelector(`.${e}`);
27
29
  if (!i)
28
30
  return {
@@ -41,13 +43,13 @@ class f {
41
43
  align: i.getAttribute("align") || "left",
42
44
  styles: ""
43
45
  };
44
- const n = ((u = r.textContent) == null ? void 0 : u.trim()) || (e === "ins-title" ? "Title" : "Description"), l = r.getAttribute("style") || "", c = i.getAttribute("align") || r.getAttribute("align") || "left", a = /font-weight\s*:\s*bold/i.test(l) || !!r.querySelector("b, strong"), p = /font-style\s*:\s*italic/i.test(l) || !!r.querySelector("i, em"), g = this.removeStyleProperties(l, ["font-weight", "font-style"]), d = this.convertInlineToBlock(g);
46
+ const n = ((d = r.textContent) == null ? void 0 : d.trim()) || (e === "ins-title" ? "Title" : "Description"), l = r.getAttribute("style") || "", c = i.getAttribute("align") || r.getAttribute("align") || "left", a = /font-weight\s*:\s*bold/i.test(l) || !!r.querySelector("b, strong"), p = /font-style\s*:\s*italic/i.test(l) || !!r.querySelector("i, em"), g = this.removeStyleProperties(l, ["font-weight", "font-style"]), u = this.convertInlineToBlock(g);
45
47
  return {
46
48
  text: n,
47
49
  isBold: a,
48
50
  isItalic: p,
49
51
  align: c,
50
- styles: d
52
+ styles: u
51
53
  };
52
54
  }
53
55
  buildTextBlock(t) {
@@ -1,28 +1,30 @@
1
- var b = Object.defineProperty;
2
- var f = (r, t, e) => t in r ? b(r, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[t] = e;
3
- var x = (r, t, e) => f(r, typeof t != "symbol" ? t + "" : t, e);
1
+ var x = Object.defineProperty;
2
+ var f = (r, t, e) => t in r ? x(r, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[t] = e;
3
+ var b = (r, t, e) => f(r, typeof t != "symbol" ? t + "" : t, e);
4
4
  import h from "../../extensions/Blocks/RadioButton/template.js";
5
5
  class T {
6
6
  constructor() {
7
- x(this, "parser");
7
+ b(this, "parser");
8
8
  this.parser = new DOMParser();
9
9
  }
10
10
  migrate(t) {
11
11
  try {
12
12
  const e = this.parser.parseFromString(t, "text/html"), i = e.querySelectorAll("td.radio-button-block");
13
13
  return i.length === 0 ? t : (i.forEach((s) => {
14
- const o = s.getAttribute("id"), l = this.extractTextFromElement(s, "ins-title"), a = this.extractTextFromElement(s, "ins-description"), p = this.extractTextFromElement(s, "ins-subscribe"), u = this.extractTextFromElement(s, "ins-unsubscribe"), d = this.buildTextBlock(l), g = this.buildTextBlock(a), m = this.buildTextBlock({ ...p, classList: "" }), n = this.buildTextBlock({ ...u, classList: "" }), c = h.replace("{-{-TITLE-}-}", d).replace("{-{-DESCRIPTION-}-}", g).replace("{-{-YES-}-}", m).replace("{-{-NO-}-}", n), y = this.parser.parseFromString(
14
+ if (s.classList.contains("radio-button-v2"))
15
+ return;
16
+ const n = s.getAttribute("id"), l = this.extractTextFromElement(s, "ins-title"), a = this.extractTextFromElement(s, "ins-description"), p = this.extractTextFromElement(s, "ins-subscribe"), u = this.extractTextFromElement(s, "ins-unsubscribe"), d = this.buildTextBlock(l), g = this.buildTextBlock(a), m = this.buildTextBlock({ ...p, classList: "" }), o = this.buildTextBlock({ ...u, classList: "" }), c = h.replace("{-{-TITLE-}-}", d).replace("{-{-DESCRIPTION-}-}", g).replace("{-{-YES-}-}", m).replace("{-{-NO-}-}", o), y = this.parser.parseFromString(
15
17
  `<table id="tempDoc"><tbody><tr>${c}</tr></tbody></table>`,
16
18
  "text/html"
17
19
  ).querySelector(".radio-button-v2");
18
- y && s.parentNode && (y.setAttribute("id", o || ""), s.parentNode.replaceChild(y, s));
20
+ y && s.parentNode && (y.setAttribute("id", n || ""), s.parentNode.replaceChild(y, s));
19
21
  }), e.documentElement.outerHTML);
20
22
  } catch (e) {
21
23
  return console.error("RadioButtonMigrator failed:", e), t;
22
24
  }
23
25
  }
24
26
  extractTextFromElement(t, e) {
25
- var n, c;
27
+ var o, c;
26
28
  const i = t.querySelector(`.${e}`);
27
29
  if (!i)
28
30
  return {
@@ -36,16 +38,16 @@ class T {
36
38
  const s = i.querySelector("p");
37
39
  if (!s)
38
40
  return {
39
- text: ((n = i.textContent) == null ? void 0 : n.trim()) || (e === "ins-title" ? "Title" : "Description"),
41
+ text: ((o = i.textContent) == null ? void 0 : o.trim()) || (e === "ins-title" ? "Title" : "Description"),
40
42
  isBold: !1,
41
43
  isItalic: !1,
42
44
  align: i.getAttribute("align") || "left",
43
45
  styles: "",
44
46
  classList: ""
45
47
  };
46
- const o = ((c = s.textContent) == null ? void 0 : c.trim()) || (e === "ins-title" ? "Title" : "Description"), l = s.getAttribute("style") || "", a = i.getAttribute("align") || s.getAttribute("align") || "left", p = /font-weight\s*:\s*bold/i.test(l) || !!s.querySelector("b, strong"), u = /font-style\s*:\s*italic/i.test(l) || !!s.querySelector("i, em"), d = this.removeStyleProperties(l, ["font-weight", "font-style"]), g = this.convertInlineToBlock(d), m = i.getAttribute("class") || "";
48
+ const n = ((c = s.textContent) == null ? void 0 : c.trim()) || (e === "ins-title" ? "Title" : "Description"), l = s.getAttribute("style") || "", a = i.getAttribute("align") || s.getAttribute("align") || "left", p = /font-weight\s*:\s*bold/i.test(l) || !!s.querySelector("b, strong"), u = /font-style\s*:\s*italic/i.test(l) || !!s.querySelector("i, em"), d = this.removeStyleProperties(l, ["font-weight", "font-style"]), g = this.convertInlineToBlock(d), m = i.getAttribute("class") || "";
47
49
  return {
48
- text: o,
50
+ text: n,
49
51
  isBold: p,
50
52
  isItalic: u,
51
53
  align: a,
@@ -66,8 +68,8 @@ class T {
66
68
  `;
67
69
  }
68
70
  removeStyleProperties(t, e) {
69
- return t ? e.reduce((s, o) => {
70
- const l = new RegExp(`${o}\\s*:\\s*[^;]*;?`, "gi");
71
+ return t ? e.reduce((s, n) => {
72
+ const l = new RegExp(`${n}\\s*:\\s*[^;]*;?`, "gi");
71
73
  return s.replace(l, "");
72
74
  }, t).replace(/;\s*;/g, ";").replace(/^;|;$/g, "").trim() : "";
73
75
  }
@@ -1,6 +1,8 @@
1
1
  const s = {
2
2
  RECOMMENDATION_API_URL: "https://recommendationv2.api.useinsider.com"
3
- }, i = [
3
+ }, i = {
4
+ CLIENT_ID: "clientId"
5
+ }, u = [
4
6
  { id: 11, key: "similarViewed", name: "Viewed Together", path: "viewed-together" },
5
7
  { id: 12, key: "similarBought", name: "Purchased Together", path: "purchased-together" },
6
8
  { id: 13, key: "userBased", name: "User Based", path: "user-based" },
@@ -11,13 +13,13 @@ const s = {
11
13
  { id: 46, key: "mostValuableOfPartner", name: "Most Valuable Products", path: "most-valuable" },
12
14
  { id: 61, key: "mostPopular", name: "Most Popular Items", path: "most-popular" },
13
15
  { id: 62, key: "mostPurchased", name: "Top Sellers", path: "top-sellers" }
14
- ], u = ["discount", "omnibus_price", "omnibus_discount", "price", "original_price"], l = [
16
+ ], l = ["discount", "omnibus_price", "omnibus_discount", "price", "original_price"], c = [
15
17
  { text: "before the amount", value: "0" },
16
18
  { text: "after the amount", value: "1" }
17
- ], c = [
19
+ ], d = [
18
20
  { text: "dot(.)", value: "." },
19
21
  { text: "comma(,)", value: "," }
20
- ], d = [
22
+ ], p = [
21
23
  { text: "0", value: "0" },
22
24
  { text: "1", value: "1" },
23
25
  { text: "2", value: "2" },
@@ -46,7 +48,7 @@ const s = {
46
48
  ], n = [
47
49
  { text: "true", value: "==" },
48
50
  { text: "false", value: "!=" }
49
- ], p = (t) => {
51
+ ], m = (t) => {
50
52
  if (!t)
51
53
  return e;
52
54
  switch (t) {
@@ -65,13 +67,14 @@ const s = {
65
67
  }
66
68
  };
67
69
  export {
68
- u as PriceAttributes,
69
- i as RecommendationFeedSourceMaps,
70
+ l as PriceAttributes,
71
+ i as QUERY_PARAMS,
72
+ u as RecommendationFeedSourceMaps,
70
73
  s as URLS,
71
- d as currencyDecimalCounts,
72
- l as currencyLocationMaps,
73
- c as currencyOperators,
74
- p as getOperatorOptions,
74
+ p as currencyDecimalCounts,
75
+ c as currencyLocationMaps,
76
+ d as currencyOperators,
77
+ m as getOperatorOptions,
75
78
  a as operatorOptionsForArrayOfStrings,
76
79
  n as operatorOptionsForBooleans,
77
80
  o as operatorOptionsForDates,
@@ -28,8 +28,8 @@ const e = 20, s = 320, t = "vertical", m = {
28
28
  ATTRIBUTE_PARAGRAPH: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)"[^>]*>[\S\s]*?<\/p>/gm,
29
29
  ATTRIBUTE_PARAGRAPH_START_TAG: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)"[^>]*>/gm,
30
30
  COMPOSITION: /composition="true"/gm,
31
- CUSTOM_FIELD: /{{[0-9]+_[0-8]_(discount|omnibus_discount|omnibus_price)}}/gm,
32
- CUSTOM_FIELD_INDEXES_PART: /{{[0-9]+_[0-8]_/gm,
31
+ CUSTOM_FIELD: /{{(?:reco_)?[0-9]+_[0-8]_(discount|omnibus_discount|omnibus_price)}}/gm,
32
+ CUSTOM_FIELD_INDEXES_PART: /{{(?:reco_)?[0-9]+_[0-8]_/gm,
33
33
  CUSTOM_FIELD_NAME_PART: /_(discount|omnibus_discount|omnibus_price)}}/gm
34
34
  }, n = {
35
35
  PARAGRAPH_END_TAG: "</p>"