@useinsider/guido 3.18.0 → 3.18.1-beta.74a13e4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Guido.vue.js +3 -3
- package/dist/components/Guido.vue2.js +85 -81
- package/dist/components/organisms/header/EditorActions.vue.js +1 -1
- package/dist/components/organisms/header/EditorActions.vue2.js +54 -41
- package/dist/composables/useActionsApi.js +82 -67
- package/dist/composables/useAutoSave.js +31 -26
- package/dist/composables/useEditorLock.js +20 -0
- package/dist/composables/useGuidoStateBridge.js +37 -31
- package/dist/composables/useSave.js +42 -39
- package/dist/config/migrator/itemsBlockMigrator.js +197 -137
- package/dist/extensions/Blocks/Items/constants/cardLayout.js +20 -0
- package/dist/extensions/Blocks/Items/controls/name/trimming.js +18 -17
- package/dist/extensions/Blocks/Items/controls/settingsControl.js +114 -105
- package/dist/extensions/Blocks/Items/enums/productEnums.js +14 -9
- package/dist/extensions/Blocks/Items/layouts/horizontal.html.js +11 -9
- package/dist/extensions/Blocks/Items/template.js +224 -215
- package/dist/guido.css +1 -1
- package/dist/package.json.js +1 -1
- package/dist/src/composables/useEditorLock.d.ts +10 -0
- package/dist/src/extensions/Blocks/Items/constants/cardLayout.d.ts +44 -0
- package/dist/src/extensions/Blocks/Items/enums/productEnums.d.ts +3 -0
- package/dist/src/extensions/Blocks/Items/template.d.ts +19 -0
- package/dist/utils/pairProductVariables.js +71 -71
- package/package.json +2 -2
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import { BLOCK_ID as
|
|
5
|
-
import { productPairs as
|
|
6
|
-
import { ItemInCartOptions as I, DefaultConfigValues as
|
|
7
|
-
import { getDefaultTemplate as
|
|
8
|
-
import { useTemplateStore as
|
|
1
|
+
var q = Object.defineProperty;
|
|
2
|
+
var v = (o, t, e) => t in o ? q(o, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[t] = e;
|
|
3
|
+
var P = (o, t, e) => v(o, typeof t != "symbol" ? t + "" : t, e);
|
|
4
|
+
import { BLOCK_ID as U } from "../../extensions/Blocks/Items/block.js";
|
|
5
|
+
import { productPairs as F } from "../../extensions/Blocks/Items/enums/productEnums.js";
|
|
6
|
+
import { ItemInCartOptions as I, DefaultConfigValues as S, SETTINGS_ENUMS as p } from "../../extensions/Blocks/Items/enums/settingsEnums.js";
|
|
7
|
+
import { getDefaultTemplate as K } from "../../extensions/Blocks/Items/template.js";
|
|
8
|
+
import { useTemplateStore as O } from "../../stores/template.js";
|
|
9
9
|
const x = {
|
|
10
10
|
img: {
|
|
11
11
|
pairsKey: "imageSrc",
|
|
@@ -73,10 +73,10 @@ const x = {
|
|
|
73
73
|
isArray: !1
|
|
74
74
|
}
|
|
75
75
|
};
|
|
76
|
-
function
|
|
76
|
+
function $() {
|
|
77
77
|
return String(Date.now() + Math.floor(Math.random() * 1e3));
|
|
78
78
|
}
|
|
79
|
-
function
|
|
79
|
+
function R(o) {
|
|
80
80
|
return o ? {
|
|
81
81
|
CartItems: p.ITEMS_TYPE.CART_ITEMS,
|
|
82
82
|
BrowsedItems: p.ITEMS_TYPE.BROWSED_ITEMS,
|
|
@@ -86,38 +86,41 @@ function k(o) {
|
|
|
86
86
|
PURCHASED_ITEMS: p.ITEMS_TYPE.PURCHASED_ITEMS
|
|
87
87
|
}[o] || p.ITEMS_TYPE.CART_ITEMS : p.ITEMS_TYPE.CART_ITEMS;
|
|
88
88
|
}
|
|
89
|
-
function
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
89
|
+
function V(o) {
|
|
90
|
+
return o.classList.contains("esd-browsed-items-block") ? p.ITEMS_TYPE.BROWSED_ITEMS : o.classList.contains("esd-purchased-items-block") ? p.ITEMS_TYPE.PURCHASED_ITEMS : p.ITEMS_TYPE.CART_ITEMS;
|
|
91
|
+
}
|
|
92
|
+
function M(o) {
|
|
93
|
+
var r;
|
|
94
|
+
const t = (l, u) => l == null ? u : l === "1" || l === "true", e = (l, u) => l || u, i = o["data-type"] || o["data-source"], a = R(i), n = I[a];
|
|
95
|
+
let c = o["data-cart_items_select_control_value"] || ((r = n == null ? void 0 : n[0]) == null ? void 0 : r.value) || S.cartItemsSelectControlValue;
|
|
96
|
+
if (c && !c.includes("{{") && /^\d+$/.test(c)) {
|
|
97
|
+
const l = parseInt(c) - 1, u = I[a];
|
|
98
|
+
u && u[l] && (c = u[l].value);
|
|
96
99
|
}
|
|
97
100
|
return {
|
|
98
101
|
initialized: !0,
|
|
99
|
-
blockInstanceId:
|
|
102
|
+
blockInstanceId: e(o["data-block-instance-id"], $()),
|
|
100
103
|
source: a,
|
|
101
104
|
type: a,
|
|
102
|
-
itemsSelectValue:
|
|
105
|
+
itemsSelectValue: c,
|
|
103
106
|
orientation: o["data-card_orientation_control_value"] || p.ORIENTATION.VERTICAL,
|
|
104
107
|
nameTrimming: t(o["data-product_name_control_trim"], !0),
|
|
105
108
|
priceHideDiscount: t(o["data-product_price_control_nodup"], !0),
|
|
106
109
|
priceFormatted: t(o["data-product_price_control_formated"], !0),
|
|
107
110
|
priceSinglePrice: t(o["data-product_price_control_single_price"], !1),
|
|
108
|
-
priceCurrencySymbol:
|
|
111
|
+
priceCurrencySymbol: e(
|
|
109
112
|
o["data-product_price_control_currency_symbol"],
|
|
110
|
-
|
|
113
|
+
S.productPriceCurrencySymbolControlValue
|
|
111
114
|
),
|
|
112
|
-
priceCurrencyLocation:
|
|
115
|
+
priceCurrencyLocation: e(
|
|
113
116
|
o["data-product_price_currency_location"],
|
|
114
|
-
|
|
117
|
+
S.productPriceCurrencyLocationControlValue
|
|
115
118
|
),
|
|
116
119
|
priceOrientation: o["data-product_original_price_control_orientation"] || "horizontal",
|
|
117
120
|
quantityControlEnabled: t(o["data-product_quantity_control_enabled"], !0),
|
|
118
|
-
buttonLink:
|
|
119
|
-
imageLink:
|
|
120
|
-
buttonLabel:
|
|
121
|
+
buttonLink: e(o["data-product_button_link"], S.productButtonLinkControlValue),
|
|
122
|
+
imageLink: e(o["data-product_image_link"], S.productImageLinkControlValue),
|
|
123
|
+
buttonLabel: e(o["data-product_button_control_label"], "Buy"),
|
|
121
124
|
buttonFullWidth: t(o["data-product_button_control_atw"], !0),
|
|
122
125
|
imageVisible: t(o["data-product_image_control_enabled"], !0),
|
|
123
126
|
nameVisible: t(o["data-product_name_control_enabled"], !0),
|
|
@@ -127,72 +130,72 @@ function h(o) {
|
|
|
127
130
|
buttonVisible: t(o["data-product_button_control_enabled"], !0)
|
|
128
131
|
};
|
|
129
132
|
}
|
|
130
|
-
const
|
|
133
|
+
const H = {
|
|
131
134
|
ins_apr: "CART_ITEMS",
|
|
132
135
|
browsed_item: "BROWSED_ITEMS",
|
|
133
136
|
purchased_item: "PURCHASED_ITEMS"
|
|
134
137
|
};
|
|
135
|
-
function
|
|
136
|
-
const
|
|
138
|
+
function N(o, t) {
|
|
139
|
+
const e = {
|
|
137
140
|
CART_ITEMS: `{{Abandoned Cart Item (${t}) Image}}`,
|
|
138
141
|
BROWSED_ITEMS: `{{Browsed Item (${t}) Image}}`,
|
|
139
142
|
PURCHASED_ITEMS: `{{Purchased Item (${t}) Image}}`
|
|
140
143
|
};
|
|
141
|
-
return
|
|
144
|
+
return e[o] || e.CART_ITEMS;
|
|
142
145
|
}
|
|
143
|
-
function
|
|
144
|
-
const
|
|
146
|
+
function z(o, t) {
|
|
147
|
+
const e = {
|
|
145
148
|
CART_ITEMS: `{{Abandoned Cart Item (${t}) Url}}`,
|
|
146
149
|
BROWSED_ITEMS: `{{Browsed Item (${t}) Url}}`,
|
|
147
150
|
PURCHASED_ITEMS: `{{Purchased Item (${t}) Url}}`
|
|
148
151
|
};
|
|
149
|
-
return
|
|
152
|
+
return e[o] || e.CART_ITEMS;
|
|
150
153
|
}
|
|
151
|
-
class
|
|
154
|
+
class Y {
|
|
152
155
|
constructor() {
|
|
153
|
-
|
|
156
|
+
P(this, "parser");
|
|
154
157
|
this.parser = new DOMParser();
|
|
155
158
|
}
|
|
156
159
|
migrate(t) {
|
|
157
160
|
try {
|
|
158
161
|
if (!this.containsItemsBlock(t))
|
|
159
162
|
return this.backfillV2ProductTdAttributes(t);
|
|
160
|
-
let
|
|
161
|
-
|
|
162
|
-
const
|
|
163
|
+
let e = this.removeJinjaConditionals(t);
|
|
164
|
+
e = this.replaceTemplateVariables(e);
|
|
165
|
+
const i = this.parser.parseFromString(e, "text/html"), a = i.querySelectorAll(
|
|
163
166
|
"td.esd-cart-items-block, td.esd-browsed-items-block, td.esd-purchased-items-block"
|
|
164
167
|
);
|
|
165
|
-
return
|
|
166
|
-
|
|
167
|
-
}), a.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"),
|
|
168
|
-
const
|
|
169
|
-
orientation:
|
|
170
|
-
itemsType:
|
|
171
|
-
itemId:
|
|
172
|
-
currencySymbol:
|
|
173
|
-
currencyLocation:
|
|
174
|
-
formattedPrice:
|
|
175
|
-
configBlockAttributes:
|
|
168
|
+
return O().$patch((c) => {
|
|
169
|
+
c.migrations = { ...c.migrations, [U]: a.length };
|
|
170
|
+
}), a.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"), e) : (a.forEach((c) => {
|
|
171
|
+
const r = this.extractConfiguration(c), l = K({
|
|
172
|
+
orientation: r.orientation,
|
|
173
|
+
itemsType: r.itemsType,
|
|
174
|
+
itemId: r.itemId,
|
|
175
|
+
currencySymbol: r.currencySymbol,
|
|
176
|
+
currencyLocation: r.currencyLocation,
|
|
177
|
+
formattedPrice: r.formattedPrice,
|
|
178
|
+
configBlockAttributes: r.configBlockAttributes,
|
|
176
179
|
migrate: !0,
|
|
177
|
-
nameStyles:
|
|
178
|
-
buttonStyles:
|
|
179
|
-
priceStyles:
|
|
180
|
-
originalPriceStyles:
|
|
181
|
-
quantityStyles:
|
|
182
|
-
nodeConfig:
|
|
183
|
-
}),
|
|
180
|
+
nameStyles: r.nameStyles,
|
|
181
|
+
buttonStyles: r.buttonStyles,
|
|
182
|
+
priceStyles: r.priceStyles,
|
|
183
|
+
originalPriceStyles: r.originalPriceStyles,
|
|
184
|
+
quantityStyles: r.quantityStyles,
|
|
185
|
+
nodeConfig: M(r.configBlockAttributes)
|
|
186
|
+
}), d = this.parser.parseFromString(
|
|
184
187
|
`<table><tbody><tr>${l}</tr></tbody></table>`,
|
|
185
188
|
"text/html"
|
|
186
189
|
).querySelector("td");
|
|
187
|
-
if (
|
|
188
|
-
const _ =
|
|
189
|
-
|
|
190
|
-
const
|
|
191
|
-
|
|
190
|
+
if (d && c.parentNode) {
|
|
191
|
+
const _ = M(r.configBlockAttributes);
|
|
192
|
+
d.setAttribute("esd-ext-config", JSON.stringify(_)), d.setAttribute("data-type", _.type);
|
|
193
|
+
const s = d.querySelector("esd-config-block");
|
|
194
|
+
s && s.remove(), c.parentNode.replaceChild(d, c);
|
|
192
195
|
}
|
|
193
|
-
}),
|
|
194
|
-
} catch (
|
|
195
|
-
return console.error("ItemsBlockMigrator failed:",
|
|
196
|
+
}), i.documentElement.outerHTML);
|
|
197
|
+
} catch (e) {
|
|
198
|
+
return console.error("ItemsBlockMigrator failed:", e), t;
|
|
196
199
|
}
|
|
197
200
|
}
|
|
198
201
|
/**
|
|
@@ -202,28 +205,85 @@ class H {
|
|
|
202
205
|
* - UI styles from product elements (name, price, button, quantity, etc.)
|
|
203
206
|
*/
|
|
204
207
|
extractConfiguration(t) {
|
|
205
|
-
var
|
|
206
|
-
const
|
|
207
|
-
(
|
|
208
|
-
),
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
208
|
+
var D;
|
|
209
|
+
const e = R(
|
|
210
|
+
this.readSelfOrDescendantAttribute(t, "data-type") || V(t)
|
|
211
|
+
), i = this.readSelfOrDescendantAttribute(t, "data-number") || "1", a = parseInt(i) - 1, n = I[e], c = ((D = n == null ? void 0 : n[a]) == null ? void 0 : D.value) || n[0].value, r = this.extractConfigBlockAttributes(t, e, i);
|
|
212
|
+
this.applyDomFallbacks(t, r);
|
|
213
|
+
const l = t.querySelector('[product-attr="price"]'), u = l ?? t.querySelector('[product-attr="originalPrice"]'), d = (u == null ? void 0 : u.getAttribute("data-currency_symbol")) || r["data-product_price_control_currency_symbol"], _ = u == null ? void 0 : u.getAttribute("data-curency");
|
|
214
|
+
let s = r["data-product_price_currency_location"] || "0";
|
|
215
|
+
_ && (s = _ === "after" ? "1" : "0");
|
|
216
|
+
const A = (u == null ? void 0 : u.getAttribute("data-formated")) ?? r["data-product_price_control_formated"], h = A !== "false" && A !== "0", m = r["data-card_orientation_control_value"];
|
|
217
|
+
let g;
|
|
218
|
+
m ? g = m === "horizontal" ? "horizontal" : "vertical" : g = t.querySelector('[colspan="2"]') !== null ? "vertical" : "horizontal";
|
|
219
|
+
const y = t.querySelector('a[product-attr="name"]'), b = (y == null ? void 0 : y.getAttribute("style")) || void 0, E = t.querySelector('a[product-attr="button"]') ?? t.querySelector('[product-attr="button"]'), L = (E == null ? void 0 : E.getAttribute("style")) || void 0, k = (l == null ? void 0 : l.getAttribute("style")) || void 0, f = t.querySelector("p.original-price") ?? t.querySelector('[product-attr="originalPrice"]'), T = f != null && f.getAttribute("style") ? f : (f == null ? void 0 : f.closest("p")) ?? f, w = (T == null ? void 0 : T.getAttribute("style")) || void 0, C = t.querySelector('[product-attr="quantity"]'), B = (C == null ? void 0 : C.getAttribute("style")) || void 0;
|
|
212
220
|
return {
|
|
213
|
-
orientation:
|
|
214
|
-
itemsType:
|
|
215
|
-
itemId:
|
|
216
|
-
currencySymbol:
|
|
221
|
+
orientation: g,
|
|
222
|
+
itemsType: e,
|
|
223
|
+
itemId: c,
|
|
224
|
+
currencySymbol: d,
|
|
217
225
|
currencyLocation: s,
|
|
218
|
-
formattedPrice:
|
|
219
|
-
configBlockAttributes:
|
|
220
|
-
nameStyles:
|
|
221
|
-
buttonStyles:
|
|
222
|
-
priceStyles:
|
|
223
|
-
originalPriceStyles:
|
|
226
|
+
formattedPrice: h,
|
|
227
|
+
configBlockAttributes: r,
|
|
228
|
+
nameStyles: b,
|
|
229
|
+
buttonStyles: L,
|
|
230
|
+
priceStyles: k,
|
|
231
|
+
originalPriceStyles: w,
|
|
224
232
|
quantityStyles: B
|
|
225
233
|
};
|
|
226
234
|
}
|
|
235
|
+
/**
|
|
236
|
+
* DOM fallback for hand-edited templates whose esd-config-block was deleted. With no
|
|
237
|
+
* toggle record left, derive each field's enabled state from whether its product-attr
|
|
238
|
+
* element still exists and read the button label from the live caption — a deleted
|
|
239
|
+
* element means the field is off, not an all-ON default. A present config block stays
|
|
240
|
+
* authoritative (a missing flag there still means "default on"), so we no-op for it.
|
|
241
|
+
*/
|
|
242
|
+
applyDomFallbacks(t, e) {
|
|
243
|
+
var u;
|
|
244
|
+
const i = t.querySelector("esd-config-block");
|
|
245
|
+
if (Object.entries({
|
|
246
|
+
image: '[product-attr="imageSrc"]',
|
|
247
|
+
name: '[product-attr="name"]',
|
|
248
|
+
price: '[product-attr="price"]',
|
|
249
|
+
original_price: '[product-attr="originalPrice"], p.original-price',
|
|
250
|
+
quantity: '[product-attr="quantity"]',
|
|
251
|
+
button: '[product-attr="button"]'
|
|
252
|
+
}).forEach(([d, _]) => {
|
|
253
|
+
const s = `data-product_${d}_control_enabled`;
|
|
254
|
+
(!i || !i.hasAttribute(s)) && (e[s] = t.querySelector(_) ? "true" : "false");
|
|
255
|
+
}), i)
|
|
256
|
+
return;
|
|
257
|
+
e["data-card_orientation_control_value"] = t.querySelector('[colspan="2"]') ? "vertical" : "horizontal";
|
|
258
|
+
const n = t.querySelector('a[product-attr="button"]') ?? t.querySelector('[product-attr="button"]'), c = (u = n == null ? void 0 : n.textContent) == null ? void 0 : u.replace(/\s+/g, " ").trim();
|
|
259
|
+
c && (e["data-product_button_control_label"] = c), /display:\s*inline/.test((n == null ? void 0 : n.getAttribute("style")) || "") && (e["data-product_button_control_atw"] = "false");
|
|
260
|
+
const r = t.querySelector('[product-attr="imageSrc"]'), l = r ? this.readImageDimension(r) : null;
|
|
261
|
+
l && (e["data-product_image_control_image-height"] = l, e["data-product_image_control_image-width"] = l);
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* Reads an attribute from the block element itself before falling back to a descendant.
|
|
265
|
+
* Real legacy markup carries data-type/data-number on the `.ins-product-td` AND on the
|
|
266
|
+
* esd-config-block; when an author deletes the config block only the td's copy survives.
|
|
267
|
+
*/
|
|
268
|
+
readSelfOrDescendantAttribute(t, e) {
|
|
269
|
+
var i;
|
|
270
|
+
return t.getAttribute(e) || ((i = t.querySelector(`[${e}]`)) == null ? void 0 : i.getAttribute(e)) || null;
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* Reads a pixel dimension for the product image from its DOM element — the legacy
|
|
274
|
+
* `width` attribute first, then a px value in the inline style. An explicit `width` wins
|
|
275
|
+
* over `max-width`, which is only an upper bound; `max-width` still covers the common
|
|
276
|
+
* `width: 100%` case, where no pixel size can be read from `width` itself.
|
|
277
|
+
* Returns null when no pixel size is present.
|
|
278
|
+
*/
|
|
279
|
+
readImageDimension(t) {
|
|
280
|
+
var n;
|
|
281
|
+
const e = (n = t.getAttribute("width")) == null ? void 0 : n.trim();
|
|
282
|
+
if (e && /^\d+$/.test(e))
|
|
283
|
+
return e;
|
|
284
|
+
const i = t.getAttribute("style") || "", a = i.match(/(?:^|;)\s*width:\s*(\d+)px/) || i.match(/max-width:\s*(\d+)px/);
|
|
285
|
+
return a ? a[1] : null;
|
|
286
|
+
}
|
|
227
287
|
/**
|
|
228
288
|
* Extracts all data-* attributes from the esd-config-block element
|
|
229
289
|
* Returns a key-value mapping of all configuration attributes
|
|
@@ -231,27 +291,27 @@ class H {
|
|
|
231
291
|
* @param itemsType - The type of items (CART_ITEMS, BROWSED_ITEMS, PURCHASED_ITEMS)
|
|
232
292
|
* @param itemNumber - The item number (1-based index)
|
|
233
293
|
*/
|
|
234
|
-
extractConfigBlockAttributes(t,
|
|
235
|
-
const a = t.querySelector("esd-config-block"),
|
|
236
|
-
if (
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
294
|
+
extractConfigBlockAttributes(t, e, i) {
|
|
295
|
+
const a = t.querySelector("esd-config-block"), n = {};
|
|
296
|
+
if (a) {
|
|
297
|
+
if (Array.from(a.attributes).forEach((r) => {
|
|
298
|
+
r.name.startsWith("data-") && (n[r.name] = r.value);
|
|
299
|
+
}), n["data-cart_items_select_control_value"]) {
|
|
300
|
+
const r = n["data-cart_items_select_control_value"];
|
|
301
|
+
if (/^\d+$/.test(r)) {
|
|
302
|
+
const l = parseInt(r) - 1, u = I[e];
|
|
303
|
+
u && u[l] && (n["data-cart_items_select_control_value"] = u[l].value);
|
|
304
|
+
}
|
|
245
305
|
}
|
|
306
|
+
if (n["data-product_price_control_curency"]) {
|
|
307
|
+
const r = n["data-product_price_control_curency"];
|
|
308
|
+
let l = r;
|
|
309
|
+
r === "before" ? l = "0" : r === "after" && (l = "1"), n["data-product_price_control_curency"] = l, n["data-product_price_currency_location"] = l;
|
|
310
|
+
}
|
|
311
|
+
(!n["data-product_price_control_currency_symbol"] || n["data-product_price_control_currency_symbol"].trim() === "") && (n["data-product_price_control_currency_symbol"] = "USD");
|
|
246
312
|
}
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
let l = e;
|
|
250
|
-
e === "before" ? l = "0" : e === "after" && (l = "1"), i["data-product_price_control_curency"] = l, i["data-product_price_currency_location"] = l;
|
|
251
|
-
}
|
|
252
|
-
(!i["data-product_price_control_currency_symbol"] || i["data-product_price_control_currency_symbol"].trim() === "") && (i["data-product_price_control_currency_symbol"] = "USD");
|
|
253
|
-
const n = { ...this.getDefaultConfigBlockAttributes(), ...i };
|
|
254
|
-
return n["data-type"] = r, n["data-source"] = r, n["data-product_image_link"] = $(r, c), n["data-product_button_link"] = N(r, c), n;
|
|
313
|
+
const c = { ...this.getDefaultConfigBlockAttributes(), ...n };
|
|
314
|
+
return c["data-type"] = e, c["data-source"] = e, c["data-product_image_link"] = N(e, i), c["data-product_button_link"] = z(e, i), c;
|
|
255
315
|
}
|
|
256
316
|
/**
|
|
257
317
|
* Returns default esd-config-block attributes based on the old template structure
|
|
@@ -325,25 +385,25 @@ class H {
|
|
|
325
385
|
backfillV2ProductTdAttributes(t) {
|
|
326
386
|
if (!t.includes("ins-product-td") || !t.includes("esd-ext-config"))
|
|
327
387
|
return t;
|
|
328
|
-
const
|
|
329
|
-
let
|
|
330
|
-
return
|
|
331
|
-
a.hasAttribute("width") && (a.removeAttribute("width"),
|
|
332
|
-
const
|
|
333
|
-
let
|
|
388
|
+
const e = this.parser.parseFromString(t, "text/html");
|
|
389
|
+
let i = !1;
|
|
390
|
+
return e.querySelectorAll(".ins-product-td").forEach((a) => {
|
|
391
|
+
a.hasAttribute("width") && (a.removeAttribute("width"), i = !0);
|
|
392
|
+
const n = a.getAttribute("esd-ext-config");
|
|
393
|
+
let c = null;
|
|
334
394
|
try {
|
|
335
|
-
|
|
395
|
+
c = n ? JSON.parse(n) : null;
|
|
336
396
|
} catch {
|
|
337
397
|
}
|
|
338
|
-
if (!
|
|
398
|
+
if (!c || (!a.getAttribute("data-nodup") && typeof c.priceHideDiscount == "boolean" && (a.setAttribute("data-nodup", String(c.priceHideDiscount)), i = !0), a.getAttribute("data-type")))
|
|
339
399
|
return;
|
|
340
|
-
const
|
|
341
|
-
if (!
|
|
400
|
+
const r = c.type || c.source;
|
|
401
|
+
if (!r)
|
|
342
402
|
return;
|
|
343
|
-
a.setAttribute("data-type",
|
|
344
|
-
const l = typeof
|
|
403
|
+
a.setAttribute("data-type", r), i = !0;
|
|
404
|
+
const l = typeof c.itemsSelectValue == "string" ? c.itemsSelectValue.match(/\((\d+)\)/) : null;
|
|
345
405
|
l && a.getAttribute("data-number") !== l[1] && a.setAttribute("data-number", l[1]);
|
|
346
|
-
}),
|
|
406
|
+
}), i ? e.documentElement.outerHTML : t;
|
|
347
407
|
}
|
|
348
408
|
/**
|
|
349
409
|
* Fast check for the presence of any items block (cart / browsed / purchased)
|
|
@@ -364,15 +424,15 @@ class H {
|
|
|
364
424
|
* contains display condition Jinja scripts that should NOT be removed.
|
|
365
425
|
*/
|
|
366
426
|
removeJinjaConditionals(t) {
|
|
367
|
-
const
|
|
368
|
-
let a =
|
|
427
|
+
const e = "__ESD_DISPLAY_CONDITIONS_PLACEHOLDER__", i = t.match(/esd-custom-display-conditions="[^"]*"/);
|
|
428
|
+
let a = i ? t.replace(i[0], e) : t;
|
|
369
429
|
return a = a.replace(
|
|
370
430
|
/\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_total_product_kind\s*(>|>)\s*\d+\s*%\}/g,
|
|
371
431
|
""
|
|
372
432
|
), a = a.replace(
|
|
373
433
|
/\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_price_\d+\s*(!=|!=)\s*\1_originalprice_\d+\s*%\}/g,
|
|
374
434
|
""
|
|
375
|
-
), a = a.replace(/\{%\s*endif\s*%\}/g, ""),
|
|
435
|
+
), a = a.replace(/\{%\s*endif\s*%\}/g, ""), i && (a = a.replace(e, i[0])), a = a.replace(/\n\s*\n\s*\n/g, `
|
|
376
436
|
|
|
377
437
|
`), a;
|
|
378
438
|
}
|
|
@@ -386,32 +446,32 @@ class H {
|
|
|
386
446
|
* - {{purchased_item_formattedprice_5}} → '1,490.49' (PURCHASED_ITEMS)
|
|
387
447
|
*/
|
|
388
448
|
replaceTemplateVariables(t) {
|
|
389
|
-
const { PAIRS_FOR_EXTENSION:
|
|
390
|
-
return t.replace(/{{([^}]+)}}/g, (
|
|
391
|
-
const
|
|
392
|
-
if (!
|
|
393
|
-
return
|
|
394
|
-
const [,
|
|
449
|
+
const { PAIRS_FOR_EXTENSION: e } = F;
|
|
450
|
+
return t.replace(/{{([^}]+)}}/g, (i, a) => {
|
|
451
|
+
const n = a.match(/^(ins_apr|browsed_item|purchased_item)_([a-z_]+)_(\d+)$/);
|
|
452
|
+
if (!n)
|
|
453
|
+
return i;
|
|
454
|
+
const [, c, r, l] = n, u = H[c];
|
|
395
455
|
if (!u)
|
|
396
|
-
return console.warn(`Unknown variable prefix: ${
|
|
397
|
-
const
|
|
398
|
-
if (!
|
|
399
|
-
return console.warn(`Unknown variable suffix mapping for: ${
|
|
400
|
-
const { pairsKey: _, defaultKey:
|
|
401
|
-
if (!
|
|
402
|
-
return console.warn(`No data found for: ${_}.${u}`),
|
|
403
|
-
if (
|
|
404
|
-
const
|
|
405
|
-
return Array.isArray(
|
|
456
|
+
return console.warn(`Unknown variable prefix: ${c}`), i;
|
|
457
|
+
const d = x[r];
|
|
458
|
+
if (!d)
|
|
459
|
+
return console.warn(`Unknown variable suffix mapping for: ${r}`), i;
|
|
460
|
+
const { pairsKey: _, defaultKey: s, isArray: A } = d, m = e[_][u];
|
|
461
|
+
if (!m)
|
|
462
|
+
return console.warn(`No data found for: ${_}.${u}`), i;
|
|
463
|
+
if (A) {
|
|
464
|
+
const y = parseInt(l) - 1, b = m[s];
|
|
465
|
+
return Array.isArray(b) && b[y] ? b[y] : (console.warn(`Array value not found: ${_}.${u}.${s}[${y}]`), i);
|
|
406
466
|
}
|
|
407
|
-
const
|
|
408
|
-
return
|
|
467
|
+
const g = m[s];
|
|
468
|
+
return g !== void 0 ? String(g) : (console.warn(`Default value not found: ${_}.${u}.${s}`), i);
|
|
409
469
|
});
|
|
410
470
|
}
|
|
411
471
|
}
|
|
412
|
-
function
|
|
413
|
-
return new
|
|
472
|
+
function tt(o) {
|
|
473
|
+
return new Y().migrate(o);
|
|
414
474
|
}
|
|
415
475
|
export {
|
|
416
|
-
|
|
476
|
+
tt as migrateItemsBlock
|
|
417
477
|
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { SETTINGS_ENUMS as r } from "../enums/settingsEnums.js";
|
|
2
|
+
const I = "130px", L = "100%", R = (e) => e === r.ORIENTATION.HORIZONTAL ? I : L, n = {
|
|
3
|
+
VERTICAL: "es-p5b es-p5t",
|
|
4
|
+
HORIZONTAL: "es-p5l es-p5r"
|
|
5
|
+
}, o = "data-items-cell-pad", d = (e) => `${o}="${e ? "v" : "h"}"`, t = (e) => e ? ` ${n.VERTICAL}` : ` ${n.HORIZONTAL}`, E = (e, A) => {
|
|
6
|
+
if (!e.includes(o))
|
|
7
|
+
return e;
|
|
8
|
+
const T = A ? n.HORIZONTAL : n.VERTICAL, s = A ? n.VERTICAL : n.HORIZONTAL, c = A ? "v" : "h";
|
|
9
|
+
return e.includes(T) ? e.replace(T, s).replace(new RegExp(`${o}="[hv]"`), `${o}="${c}"`) : e;
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
n as BLOCK_CELL_PADDING,
|
|
13
|
+
o as BLOCK_CELL_PAD_ATTR,
|
|
14
|
+
I as NAME_HORIZONTAL_MAX_WIDTH,
|
|
15
|
+
L as NAME_VERTICAL_MAX_WIDTH,
|
|
16
|
+
d as blockCellPadMarker,
|
|
17
|
+
t as blockCellPaddingFor,
|
|
18
|
+
R as nameMaxWidthFor,
|
|
19
|
+
E as reorientBlockCellPadding
|
|
20
|
+
};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import { ModificationDescription as
|
|
2
|
-
import { CommonControl as
|
|
1
|
+
import { ModificationDescription as d, UIElementType as s, UEAttr as p } from "../../../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
|
+
import { CommonControl as T } from "../../../common-control.js";
|
|
3
|
+
import { nameMaxWidthFor as h } from "../../constants/cardLayout.js";
|
|
3
4
|
import { ItemsBlockControlId as a } from "../../enums/controlEnums.js";
|
|
4
|
-
import { findNameTextNode as
|
|
5
|
-
import { getItemsBlockConfig as r, setItemsBlockConfig as
|
|
6
|
-
const
|
|
5
|
+
import { findNameTextNode as c } from "../../utils/nameNode.js";
|
|
6
|
+
import { getItemsBlockConfig as r, setItemsBlockConfig as g } from "../../utils/nodeConfigUtils.js";
|
|
7
|
+
const I = a.NAME_TRIMMING, n = {
|
|
7
8
|
TRIMMING: "trimming"
|
|
8
9
|
};
|
|
9
|
-
class
|
|
10
|
+
class E extends T {
|
|
10
11
|
getId() {
|
|
11
|
-
return
|
|
12
|
+
return I;
|
|
12
13
|
}
|
|
13
14
|
getTemplate() {
|
|
14
15
|
return `
|
|
@@ -19,39 +20,39 @@ class y extends p {
|
|
|
19
20
|
}
|
|
20
21
|
onRender() {
|
|
21
22
|
const e = r(this.currentNode);
|
|
22
|
-
this.api.updateValues({ [
|
|
23
|
+
this.api.updateValues({ [n.TRIMMING]: (e == null ? void 0 : e.nameTrimming) ?? !0 }), this.api.onValueChanged(n.TRIMMING, (t) => {
|
|
23
24
|
this._onTrimmingChange(t);
|
|
24
25
|
});
|
|
25
26
|
}
|
|
26
27
|
onTemplateNodeUpdated(e) {
|
|
27
28
|
super.onTemplateNodeUpdated(e), this.handleBlockInstanceChange(() => {
|
|
28
29
|
const t = r(this.currentNode);
|
|
29
|
-
this.api.updateValues({ [
|
|
30
|
+
this.api.updateValues({ [n.TRIMMING]: (t == null ? void 0 : t.nameTrimming) ?? !0 });
|
|
30
31
|
});
|
|
31
32
|
}
|
|
32
33
|
_onTrimmingChange(e) {
|
|
33
|
-
|
|
34
|
+
g(this.currentNode, this.api, { nameTrimming: e }), this.api.updateValues({ [n.TRIMMING]: e }), this._applyTrimmingStyles(e);
|
|
34
35
|
}
|
|
35
36
|
_applyTrimmingStyles(e) {
|
|
36
|
-
const t =
|
|
37
|
+
const t = c(this.currentNode);
|
|
37
38
|
if (!t)
|
|
38
39
|
return;
|
|
39
|
-
const
|
|
40
|
-
m ? o.setStyle("white-space", "nowrap").setStyle("overflow", "hidden").setStyle("text-overflow", "ellipsis") : o.removeStyle("white-space").removeStyle("overflow").removeStyle("text-overflow"), o.setStyle("max-width",
|
|
40
|
+
const i = r(this.currentNode), m = e !== void 0 ? e : (i == null ? void 0 : i.nameTrimming) ?? !0, l = h(i == null ? void 0 : i.orientation), o = this.api.getDocumentModifier().modifyHtml(t);
|
|
41
|
+
m ? o.setStyle("white-space", "nowrap").setStyle("overflow", "hidden").setStyle("text-overflow", "ellipsis") : o.removeStyle("white-space").removeStyle("overflow").removeStyle("text-overflow"), o.setStyle("max-width", l).apply(new d(`Text Trimming ${m ? "Enabled" : "Disabled"}`));
|
|
41
42
|
}
|
|
42
43
|
_getTextTrimming() {
|
|
43
44
|
return `
|
|
44
45
|
<div class="display-flex align-items-center justify-content-between">
|
|
45
46
|
<${s.LABEL}
|
|
46
|
-
${
|
|
47
|
+
${p.LABEL.text}="${this.api.translate("Text Trimming")}"
|
|
47
48
|
>
|
|
48
49
|
</${s.LABEL}>
|
|
49
|
-
${this._GuToggle(
|
|
50
|
+
${this._GuToggle(n.TRIMMING)}
|
|
50
51
|
</div>
|
|
51
52
|
`;
|
|
52
53
|
}
|
|
53
54
|
}
|
|
54
55
|
export {
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
I as CONTROL_BLOCK_ID,
|
|
57
|
+
E as NameTrimmingControl
|
|
57
58
|
};
|