@useinsider/guido 3.9.0-beta.ec06cf4 → 3.9.0-beta.f844081

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.
@@ -1,37 +1,37 @@
1
1
  import { useConfig as q } from "../../../composables/useConfig.js";
2
- import { useRecommendation as E } from "../../../composables/useRecommendation.js";
3
- import { CSS_CLASS_RECO_BUTTON as w } from "../../../extensions/Blocks/Recommendation/constants/selectors.js";
4
- import { useRecommendationExtensionStore as R } from "../../../extensions/Blocks/Recommendation/store/recommendation.js";
2
+ import { useRecommendation as C } from "../../../composables/useRecommendation.js";
3
+ import { CSS_CLASS_RECO_BUTTON as E } from "../../../extensions/Blocks/Recommendation/constants/selectors.js";
4
+ import { useRecommendationExtensionStore as w } from "../../../extensions/Blocks/Recommendation/store/recommendation.js";
5
5
  import { isIgnoredRecommendationBlock as P } from "./recommendationIgnoreUtils.js";
6
- function f(t, r, e, o, s = "") {
7
- const i = `{{${s}${t}_${r}_${e}}}`, n = `{{${s}${t}_${r}_currency}}`;
8
- return o === "before" ? `${n} ${i}` : `${i} ${n}`;
6
+ function f(t, o, e, n, s = "") {
7
+ const i = `{{${s}${t}_${o}_${e}}}`, r = `{{${s}${t}_${o}_currency}}`;
8
+ return n === "before" ? `${r} ${i}` : `${i} ${r}`;
9
9
  }
10
10
  function m(t) {
11
- let r = t;
12
- for (; r.children.length === 1; )
13
- [r] = r.children;
14
- return r;
11
+ let o = t;
12
+ for (; o.children.length === 1; )
13
+ [o] = o.children;
14
+ return o;
15
15
  }
16
- function h(t, r, e, o, s, i) {
17
- switch (r) {
16
+ function h(t, o, e, n, s, i) {
17
+ switch (o) {
18
18
  case "productImage": {
19
- const n = t.querySelector("img");
20
- n && (n.setAttribute("src", `{{${i}${e}_${o}_image_url}}`), n.setAttribute("alt", `{{${i}${e}_${o}_name}}`));
19
+ const r = t.querySelector("img");
20
+ r && (r.setAttribute("src", `{{${i}${e}_${n}_image_url}}`), r.setAttribute("alt", `{{${i}${e}_${n}_name}}`));
21
21
  const c = t.querySelector("a");
22
- c && (c.setAttribute("href", `{{${i}${e}_${o}_url}}`), c.classList.add(w));
22
+ c && (c.setAttribute("href", `{{${i}${e}_${n}_url}}`), c.classList.add(E));
23
23
  break;
24
24
  }
25
25
  case "productName": {
26
- const n = t.querySelector("p");
27
- n && (m(n).textContent = `{{${i}${e}_${o}_name}}`);
26
+ const r = t.querySelector("p");
27
+ r && (m(r).textContent = `{{${i}${e}_${n}_name}}`);
28
28
  break;
29
29
  }
30
30
  case "productPrice": {
31
- const n = t.querySelector(".product-price p") ?? t.querySelector("p");
32
- n && (m(n).textContent = f(
31
+ const r = t.querySelector(".product-price p") ?? t.querySelector("p");
32
+ r && (m(r).textContent = f(
33
33
  e,
34
- o,
34
+ n,
35
35
  "price",
36
36
  s,
37
37
  i
@@ -39,7 +39,7 @@ function h(t, r, e, o, s, i) {
39
39
  const c = t.querySelector(".product-old-price p");
40
40
  c && (m(c).textContent = f(
41
41
  e,
42
- o,
42
+ n,
43
43
  "original_price",
44
44
  s,
45
45
  i
@@ -47,10 +47,10 @@ function h(t, r, e, o, s, i) {
47
47
  break;
48
48
  }
49
49
  case "productOldPrice": {
50
- const n = t.querySelector("p");
51
- n && (m(n).textContent = f(
50
+ const r = t.querySelector("p");
51
+ r && (m(r).textContent = f(
52
52
  e,
53
- o,
53
+ n,
54
54
  "original_price",
55
55
  s,
56
56
  i
@@ -58,125 +58,105 @@ function h(t, r, e, o, s, i) {
58
58
  break;
59
59
  }
60
60
  case "productButton": {
61
- const n = t.querySelector("a");
62
- n && n.setAttribute("href", `{{${i}${e}_${o}_url}}`);
61
+ const r = t.querySelector("a");
62
+ r && r.setAttribute("href", `{{${i}${e}_${n}_url}}`);
63
63
  break;
64
64
  }
65
65
  case "productOmnibusPrice": {
66
- const n = t.querySelector(".omnibus-price-value");
67
- if (n) {
68
- n.textContent = `{{${i}${e}_${o}_omnibus_price}}`;
69
- const c = n.closest("p");
66
+ const r = t.querySelector(".omnibus-price-value");
67
+ if (r) {
68
+ r.textContent = `{{${i}${e}_${n}_omnibus_price}}`;
69
+ const c = r.closest("p");
70
70
  c && (c.setAttribute("product-attr", "omnibus_price"), c.setAttribute("composition", "true"));
71
71
  }
72
72
  break;
73
73
  }
74
74
  case "productOmnibusDiscount": {
75
- const n = t.querySelector(".omnibus-discount-value");
76
- if (n) {
77
- n.textContent = `{{${i}${e}_${o}_omnibus_discount}}`;
78
- const c = n.closest("p");
75
+ const r = t.querySelector(".omnibus-discount-value");
76
+ if (r) {
77
+ r.textContent = `{{${i}${e}_${n}_omnibus_discount}}`;
78
+ const c = r.closest("p");
79
79
  c && (c.setAttribute("product-attr", "omnibus_discount"), c.setAttribute("composition", "true"));
80
80
  }
81
81
  break;
82
82
  }
83
83
  default: {
84
- const n = t.getAttribute("product-attr") ? t : t.querySelector("[product-attr]");
85
- if (n) {
86
- const c = n.getAttribute("product-attr"), l = n.querySelector("p");
87
- l && (m(l).textContent = `{{${i}${e}_${o}_${c}}}`);
84
+ const r = t.getAttribute("product-attr") ? t : t.querySelector("[product-attr]");
85
+ if (r) {
86
+ const c = r.getAttribute("product-attr"), l = r.querySelector("p");
87
+ l && (m(l).textContent = `{{${i}${e}_${n}_${c}}}`);
88
88
  }
89
89
  break;
90
90
  }
91
91
  }
92
92
  }
93
- const T = "name";
94
- function _(t, r, e, o) {
95
- const s = `${o}${r}_${e}_${T}`;
96
- return {
97
- open: t.createComment(`{% if ${s} and ${s} != "" %}`),
98
- close: t.createComment("{% endif %}")
99
- };
100
- }
101
- function L(t, r, e, o) {
102
- if (!t.innerHTML.includes("{{"))
103
- return;
104
- const { open: s, close: i } = _(t.ownerDocument, r, e, o);
105
- t.insertBefore(s, t.firstChild), t.appendChild(i);
106
- }
107
- function v(t, r, e, o) {
108
- if (!t.innerHTML.includes("{{"))
109
- return;
110
- const { open: s, close: i } = _(t.ownerDocument, r, e, o), n = t.parentNode;
111
- n.insertBefore(s, t), n.insertBefore(i, t.nextSibling);
112
- }
113
- function O(t, r, e, o) {
114
- t.querySelectorAll(".recommendation-product-row").forEach((i, n) => {
93
+ function R(t, o, e, n) {
94
+ t.querySelectorAll(".recommendation-product-row").forEach((i, r) => {
115
95
  i.querySelectorAll("[data-attribute-type]").forEach((l) => {
116
96
  const u = l.getAttribute("data-attribute-type") || "", p = l.querySelectorAll(".attribute-cell");
117
97
  p.length > 0 ? p.forEach((a) => {
118
- h(a, u, r, n, e, o);
119
- }) : h(l, u, r, n, e, o);
120
- }), v(i, r, n, o);
98
+ h(a, u, o, r, e, n);
99
+ }) : h(l, u, o, r, e, n);
100
+ });
121
101
  });
122
102
  }
123
- function W(t, r, e, o) {
103
+ function W(t, o, e, n) {
124
104
  const s = t.querySelectorAll(".recommendation-product-row");
125
105
  if (!s.length)
126
106
  return;
127
- const [i] = s, n = i.querySelector("[data-attribute-type]"), c = n ? n.querySelectorAll(".attribute-cell").length : 1;
107
+ const [i] = s, r = i.querySelector("[data-attribute-type]"), c = r ? r.querySelectorAll(".attribute-cell").length : 1;
128
108
  s.forEach((l, u) => {
129
109
  l.querySelectorAll("[data-attribute-type]").forEach((a) => {
130
110
  const d = a.getAttribute("data-attribute-type") || "";
131
- a.querySelectorAll(".attribute-cell").forEach(($, g) => {
132
- const A = u * c + g;
133
- h($, d, r, A, e, o), L($, r, A, o);
111
+ a.querySelectorAll(".attribute-cell").forEach((S, _) => {
112
+ const g = u * c + _;
113
+ h(S, d, o, g, e, n);
134
114
  });
135
115
  });
136
116
  });
137
117
  }
138
- function B(t, r, e, o) {
118
+ function v(t, o, e, n) {
139
119
  t.querySelectorAll(".ins-recommendation-product-container").forEach((i) => {
140
- W(i, r, e, o);
120
+ W(i, o, e, n);
141
121
  });
142
122
  }
143
- function D(t, r, e) {
144
- const o = t.getAttribute("data-layout") || "grid", s = t.getAttribute("currency-alignment") || "after";
145
- o === "list" ? O(t, r, s, e) : B(t, r, s, e);
123
+ function O(t, o, e) {
124
+ const n = t.getAttribute("data-layout") || "grid", s = t.getAttribute("currency-alignment") || "after";
125
+ n === "list" ? R(t, o, s, e) : v(t, o, s, e);
146
126
  }
147
- function b(t, r, e) {
148
- const o = new RegExp(`${r}\\s*:\\s*(\\d+)\\s*px`, "i"), s = t.match(o);
127
+ function b(t, o, e) {
128
+ const n = new RegExp(`${o}\\s*:\\s*(\\d+)\\s*px`, "i"), s = t.match(n);
149
129
  return s ? parseInt(s[1]) : e;
150
130
  }
151
- function S(t) {
152
- const r = t.trim();
153
- return r.endsWith("%") ? parseFloat(r) < 100 : /^\d+(?:\.\d+)?(?:px)?$/.test(r) && parseInt(r) > 0;
131
+ function A(t) {
132
+ const o = t.trim();
133
+ return o.endsWith("%") ? parseFloat(o) < 100 : /^\d+(?:\.\d+)?(?:px)?$/.test(o) && parseInt(o) > 0;
154
134
  }
155
- function C(t) {
156
- const r = t.getAttribute("width");
157
- if (r && S(r))
158
- return r.trim();
135
+ function $(t) {
136
+ const o = t.getAttribute("width");
137
+ if (o && A(o))
138
+ return o.trim();
159
139
  const e = (t.getAttribute("style") || "").match(/(?:^|[;\s])width\s*:\s*(\d+(?:\.\d+)?(?:px|%))/i);
160
- return e && S(e[1]) ? e[1] : null;
140
+ return e && A(e[1]) ? e[1] : null;
161
141
  }
162
- function M(t, r) {
142
+ function T(t, o) {
163
143
  let e = t.parentElement;
164
- for (; e && e !== r; ) {
165
- if (e.tagName === "TD" && C(e))
144
+ for (; e && e !== o; ) {
145
+ if (e.tagName === "TD" && $(e))
166
146
  return e;
167
147
  e = e.parentElement;
168
148
  }
169
149
  return null;
170
150
  }
171
- function N(t) {
172
- const r = t.getAttribute("style") || "", e = b(r, "width", 600), o = b(r, "padding", 0) * 2, s = Math.max(0, e - o);
151
+ function M(t) {
152
+ const o = t.getAttribute("style") || "", e = b(o, "width", 600), n = b(o, "padding", 0) * 2, s = Math.max(0, e - n);
173
153
  s !== 0 && t.querySelectorAll("img.adapt-img").forEach((i) => {
174
154
  if (i.hasAttribute("width"))
175
155
  return;
176
- const n = M(i, t);
177
- if (!n)
156
+ const r = T(i, t);
157
+ if (!r)
178
158
  return;
179
- const c = C(n), l = b(n.getAttribute("style") || "", "padding", 0) * 2, u = c.endsWith("%") ? Math.floor(s * parseFloat(c) / 100) : parseInt(c), p = Math.max(1, u - l);
159
+ const c = $(r), l = b(r.getAttribute("style") || "", "padding", 0) * 2, u = c.endsWith("%") ? Math.floor(s * parseFloat(c) / 100) : parseInt(c), p = Math.max(1, u - l);
180
160
  i.setAttribute("width", String(p));
181
161
  const a = i.getAttribute("style") || "";
182
162
  if (!/\bwidth\s*:\s*\d/i.test(a)) {
@@ -185,25 +165,25 @@ function N(t) {
185
165
  }
186
166
  });
187
167
  }
188
- function H(t, r) {
168
+ function B(t, o) {
189
169
  const e = t.match(/<!DOCTYPE[^>]*>/i);
190
170
  return (e ? `${e[0]}
191
- ` : "") + r.documentElement.outerHTML;
171
+ ` : "") + o.documentElement.outerHTML;
192
172
  }
193
- function X(t) {
194
- const r = t.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), e = new DOMParser().parseFromString(r, "text/html"), o = e.querySelectorAll(".recommendation-block-v2");
195
- if (!o.length)
173
+ function G(t) {
174
+ const o = t.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), e = new DOMParser().parseFromString(o, "text/html"), n = e.querySelectorAll(".recommendation-block-v2");
175
+ if (!n.length)
196
176
  return t;
197
- const { buildCampaignUrl: s } = E(), i = R();
177
+ const { buildCampaignUrl: s } = C(), i = w();
198
178
  i.recommendationCampaignUrls = {};
199
- const { isFeatureEnabled: n } = q(), c = n("liquidSyntax") ? "reco_" : "";
200
- return o.forEach((u) => {
179
+ const { isFeatureEnabled: r } = q(), c = r("liquidSyntax") ? "reco_" : "";
180
+ return n.forEach((u) => {
201
181
  var a, d;
202
182
  const p = u.getAttribute("recommendation-id");
203
- p && ((a = u.parentNode) == null || a.insertBefore(e.createComment("REC_START"), u), (d = u.parentNode) == null || d.insertBefore(e.createComment("REC_END"), u.nextSibling), u.querySelectorAll('[data-visibility="0"]').forEach((y) => y.remove()), s(p), P(u) || D(u, p, c), N(u));
204
- }), H(r, e).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
183
+ p && ((a = u.parentNode) == null || a.insertBefore(e.createComment("REC_START"), u), (d = u.parentNode) == null || d.insertBefore(e.createComment("REC_END"), u.nextSibling), u.querySelectorAll('[data-visibility="0"]').forEach((y) => y.remove()), s(p), P(u) || O(u, p, c), M(u));
184
+ }), B(o, e).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
205
185
  }
206
186
  export {
207
187
  f as formatPriceVariable,
208
- X as prepareRecommendationBlocks
188
+ G as prepareRecommendationBlocks
209
189
  };