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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/README.md +1 -3
  2. package/dist/components/Guido.vue.js +1 -1
  3. package/dist/components/Guido.vue2.js +39 -36
  4. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +5 -5
  5. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +2 -2
  6. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
  7. package/dist/composables/useHtmlValidator.js +114 -104
  8. package/dist/composables/useRecommendation.js +54 -21
  9. package/dist/composables/useSave.js +12 -16
  10. package/dist/composables/useStripo.js +54 -58
  11. package/dist/composables/useStripoEventHandler.js +12 -27
  12. package/dist/config/compiler/recommendationCompilerRules.js +45 -39
  13. package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
  14. package/dist/config/migrator/itemsBlockMigrator.js +101 -97
  15. package/dist/config/migrator/recommendationMigrator.js +2 -2
  16. package/dist/enums/extensions/recommendationBlock.js +1 -1
  17. package/dist/enums/recommendation.js +16 -15
  18. package/dist/enums/unsubscribe.js +21 -25
  19. package/dist/extensions/Blocks/Recommendation/block.js +133 -9
  20. package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
  21. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
  22. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
  23. package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
  24. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
  25. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
  26. package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
  27. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
  28. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
  29. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
  30. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
  31. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
  32. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
  33. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +250 -0
  34. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
  35. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
  36. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
  37. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
  38. package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
  39. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
  40. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
  41. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
  42. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
  43. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextAfterControl.js → omnibusDiscount/textAfter.js} +16 -14
  44. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextBeforeControl.js → omnibusDiscount/textBefore.js} +16 -14
  45. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
  46. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextAfterControl.js → omnibusPrice/textAfter.js} +16 -14
  47. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextBeforeControl.js → omnibusPrice/textBefore.js} +14 -12
  48. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
  49. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
  50. package/dist/extensions/Blocks/Recommendation/extension.js +40 -17
  51. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +19 -3
  52. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +13 -4
  53. package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
  54. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +21 -10
  55. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +254 -207
  56. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
  57. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
  58. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
  59. package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
  60. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
  61. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
  62. package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
  63. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
  64. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
  65. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +26 -15
  66. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
  67. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
  68. package/dist/extensions/Blocks/controlFactories.js +125 -93
  69. package/dist/guido.css +1 -1
  70. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +242 -186
  71. package/dist/services/recommendationApi.js +11 -8
  72. package/dist/services/stripoApi.js +12 -48
  73. package/dist/services/templateLibraryApi.js +16 -13
  74. package/dist/src/@types/events.d.ts +2 -38
  75. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  76. package/dist/src/composables/useRecommendation.d.ts +1 -0
  77. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
  78. package/dist/src/enums/unsubscribe.d.ts +0 -3
  79. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +67 -0
  80. package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
  81. package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +0 -24
  82. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
  83. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
  84. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
  85. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
  86. package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
  87. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
  88. package/dist/src/extensions/Blocks/Recommendation/{cardCompositionControl.d.ts → controls/cardComposition/index.d.ts} +23 -3
  89. package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
  90. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +21 -589
  91. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
  92. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
  93. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
  94. package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
  95. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +79 -0
  96. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
  97. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
  98. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
  99. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
  100. package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
  101. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
  102. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
  103. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
  104. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
  105. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
  106. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
  107. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
  108. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
  109. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
  110. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
  111. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
  112. package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
  113. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
  114. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
  115. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +138 -468
  116. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
  117. package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
  118. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
  119. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
  120. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
  121. package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
  122. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
  123. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
  124. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
  125. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
  126. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
  127. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
  128. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
  129. package/dist/src/services/stripoApi.d.ts +0 -5
  130. package/dist/src/stores/editor.d.ts +0 -23
  131. package/dist/static/styles/customEditorStyle.css.js +35 -11
  132. package/dist/stores/editor.js +1 -2
  133. package/dist/utils/pairProductVariables.js +57 -56
  134. package/dist/utils/templatePreparation.js +15 -14
  135. package/package.json +1 -1
  136. package/dist/composables/useSyncModuleExtractor.js +0 -45
  137. package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -187
  138. package/dist/extensions/Blocks/Recommendation/constants.js +0 -13
  139. package/dist/extensions/Blocks/Recommendation/control.js +0 -336
  140. package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +0 -68
  141. package/dist/extensions/Blocks/Recommendation/controls/index.js +0 -245
  142. package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +0 -74
  143. package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +0 -188
  144. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -181
  145. package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -189
  146. package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -209
  147. package/dist/src/composables/useSyncModuleExtractor.d.ts +0 -4
  148. package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -38
  149. package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +0 -16
  150. package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
  151. package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -52
  152. package/dist/src/mock/api/settings.d.ts +0 -2
@@ -1,8 +1,8 @@
1
1
  var B = Object.defineProperty;
2
- var U = (r, t, e) => t in r ? B(r, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[t] = e;
3
- var M = (r, t, e) => U(r, typeof t != "symbol" ? t + "" : t, e);
2
+ var U = (e, t, r) => t in e ? B(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
3
+ var M = (e, t, r) => U(e, typeof t != "symbol" ? t + "" : t, r);
4
4
  import { productPairs as v } from "../../extensions/Blocks/Items/enums/productEnums.js";
5
- import { ItemInCartOptions as E, DefaultConfigValues as g, SETTINGS_ENUMS as d } from "../../extensions/Blocks/Items/enums/settingsEnums.js";
5
+ import { ItemInCartOptions as E, DefaultConfigValues as g, SETTINGS_ENUMS as u } from "../../extensions/Blocks/Items/enums/settingsEnums.js";
6
6
  import { getDefaultTemplate as K } from "../../extensions/Blocks/Items/template.js";
7
7
  const w = {
8
8
  img: {
@@ -74,76 +74,76 @@ const w = {
74
74
  function F() {
75
75
  return String(Date.now() + Math.floor(Math.random() * 1e3));
76
76
  }
77
- function q(r) {
78
- return r ? {
79
- CartItems: d.ITEMS_TYPE.CART_ITEMS,
80
- BrowsedItems: d.ITEMS_TYPE.BROWSED_ITEMS,
81
- PurchasedItems: d.ITEMS_TYPE.PURCHASED_ITEMS,
82
- CART_ITEMS: d.ITEMS_TYPE.CART_ITEMS,
83
- BROWSED_ITEMS: d.ITEMS_TYPE.BROWSED_ITEMS,
84
- PURCHASED_ITEMS: d.ITEMS_TYPE.PURCHASED_ITEMS
85
- }[r] || d.ITEMS_TYPE.CART_ITEMS : d.ITEMS_TYPE.CART_ITEMS;
77
+ function q(e) {
78
+ return e ? {
79
+ CartItems: u.ITEMS_TYPE.CART_ITEMS,
80
+ BrowsedItems: u.ITEMS_TYPE.BROWSED_ITEMS,
81
+ PurchasedItems: u.ITEMS_TYPE.PURCHASED_ITEMS,
82
+ CART_ITEMS: u.ITEMS_TYPE.CART_ITEMS,
83
+ BROWSED_ITEMS: u.ITEMS_TYPE.BROWSED_ITEMS,
84
+ PURCHASED_ITEMS: u.ITEMS_TYPE.PURCHASED_ITEMS
85
+ }[e] || u.ITEMS_TYPE.CART_ITEMS : u.ITEMS_TYPE.CART_ITEMS;
86
86
  }
87
- function R(r) {
88
- const t = (a, o) => a == null ? o : a === "1" || a === "true", e = (a, o) => a || o, i = r["data-type"] || r["data-source"], l = q(i);
89
- let n = r["data-cart_items_select_control_value"] || g.cartItemsSelectControlValue;
87
+ function R(e) {
88
+ const t = (a, o) => a == null ? o : a === "1" || a === "true", r = (a, o) => a || o, c = e["data-type"] || e["data-source"], i = q(c);
89
+ let n = e["data-cart_items_select_control_value"] || g.cartItemsSelectControlValue;
90
90
  if (n && !n.includes("{{") && /^\d+$/.test(n)) {
91
- const a = parseInt(n) - 1, o = E[l];
91
+ const a = parseInt(n) - 1, o = E[i];
92
92
  o && o[a] && (n = o[a].value);
93
93
  }
94
94
  return {
95
95
  initialized: !0,
96
- blockInstanceId: e(r["data-block-instance-id"], F()),
97
- source: l,
98
- type: l,
96
+ blockInstanceId: r(e["data-block-instance-id"], F()),
97
+ source: i,
98
+ type: i,
99
99
  itemsSelectValue: n,
100
- orientation: r["data-card_orientation_control_value"] || d.ORIENTATION.VERTICAL,
101
- nameTrimming: t(r["data-product_name_control_trim"], !0),
102
- priceHideDiscount: t(r["data-product_price_control_nodup"], !0),
103
- priceFormatted: t(r["data-product_price_control_formated"], !0),
104
- priceSinglePrice: t(r["data-product_price_control_single_price"], !1),
105
- priceCurrencySymbol: e(
106
- r["data-product_price_control_currency_symbol"],
100
+ orientation: e["data-card_orientation_control_value"] || u.ORIENTATION.VERTICAL,
101
+ nameTrimming: t(e["data-product_name_control_trim"], !0),
102
+ priceHideDiscount: t(e["data-product_price_control_nodup"], !0),
103
+ priceFormatted: t(e["data-product_price_control_formated"], !0),
104
+ priceSinglePrice: t(e["data-product_price_control_single_price"], !1),
105
+ priceCurrencySymbol: r(
106
+ e["data-product_price_control_currency_symbol"],
107
107
  g.productPriceCurrencySymbolControlValue
108
108
  ),
109
- priceCurrencyLocation: e(
110
- r["data-product_price_currency_location"],
109
+ priceCurrencyLocation: r(
110
+ e["data-product_price_currency_location"],
111
111
  g.productPriceCurrencyLocationControlValue
112
112
  ),
113
- priceOrientation: r["data-product_original_price_control_orientation"] || "horizontal",
114
- quantityControlEnabled: t(r["data-product_quantity_control_enabled"], !0),
115
- buttonLink: e(r["data-product_button_link"], g.productButtonLinkControlValue),
116
- imageLink: e(r["data-product_image_link"], g.productImageLinkControlValue),
117
- buttonLabel: e(r["data-product_button_control_label"], "Buy"),
118
- buttonFullWidth: t(r["data-product_button_control_atw"], !0),
119
- imageVisible: t(r["data-product_image_control_enabled"], !0),
120
- nameVisible: t(r["data-product_name_control_enabled"], !0),
121
- quantityVisible: t(r["data-product_quantity_control_enabled"], !0),
122
- priceVisible: t(r["data-product_price_control_enabled"], !0),
123
- originalPriceVisible: t(r["data-product_original_price_control_enabled"], !0),
124
- buttonVisible: t(r["data-product_button_control_enabled"], !0)
113
+ priceOrientation: e["data-product_original_price_control_orientation"] || "horizontal",
114
+ quantityControlEnabled: t(e["data-product_quantity_control_enabled"], !0),
115
+ buttonLink: r(e["data-product_button_link"], g.productButtonLinkControlValue),
116
+ imageLink: r(e["data-product_image_link"], g.productImageLinkControlValue),
117
+ buttonLabel: r(e["data-product_button_control_label"], "Buy"),
118
+ buttonFullWidth: t(e["data-product_button_control_atw"], !0),
119
+ imageVisible: t(e["data-product_image_control_enabled"], !0),
120
+ nameVisible: t(e["data-product_name_control_enabled"], !0),
121
+ quantityVisible: t(e["data-product_quantity_control_enabled"], !0),
122
+ priceVisible: t(e["data-product_price_control_enabled"], !0),
123
+ originalPriceVisible: t(e["data-product_original_price_control_enabled"], !0),
124
+ buttonVisible: t(e["data-product_button_control_enabled"], !0)
125
125
  };
126
126
  }
127
- const $ = {
127
+ const O = {
128
128
  ins_apr: "CART_ITEMS",
129
129
  browsed_item: "BROWSED_ITEMS",
130
130
  purchased_item: "PURCHASED_ITEMS"
131
131
  };
132
- function x(r, t) {
133
- const e = {
132
+ function $(e, t) {
133
+ const r = {
134
134
  CART_ITEMS: `{{Abandoned Cart Item (${t}) Image}}`,
135
135
  BROWSED_ITEMS: `{{Browsed Item (${t}) Image}}`,
136
136
  PURCHASED_ITEMS: `{{Purchased Item (${t}) Image}}`
137
137
  };
138
- return e[r] || e.CART_ITEMS;
138
+ return r[e] || r.CART_ITEMS;
139
139
  }
140
- function O(r, t) {
141
- const e = {
140
+ function x(e, t) {
141
+ const r = {
142
142
  CART_ITEMS: `{{Abandoned Cart Item (${t}) Url}}`,
143
143
  BROWSED_ITEMS: `{{Browsed Item (${t}) Url}}`,
144
144
  PURCHASED_ITEMS: `{{Purchased Item (${t}) Url}}`
145
145
  };
146
- return e[r] || e.CART_ITEMS;
146
+ return r[e] || r.CART_ITEMS;
147
147
  }
148
148
  class V {
149
149
  constructor() {
@@ -152,12 +152,12 @@ class V {
152
152
  }
153
153
  migrate(t) {
154
154
  try {
155
- let e = this.removeJinjaConditionals(t);
156
- e = this.replaceTemplateVariables(e);
157
- const i = this.parser.parseFromString(e, "text/html"), l = i.querySelectorAll(
155
+ let r = this.removeJinjaConditionals(t);
156
+ r = this.replaceTemplateVariables(r);
157
+ const c = this.parser.parseFromString(r, "text/html"), i = c.querySelectorAll(
158
158
  "td.esd-cart-items-block, td.esd-browsed-items-block, td.esd-purchased-items-block"
159
159
  );
160
- return l.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"), e) : (l.forEach((n) => {
160
+ return i.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"), r) : (i.forEach((n) => {
161
161
  const a = this.extractConfiguration(n), o = K({
162
162
  orientation: a.orientation,
163
163
  itemsType: a.itemsType,
@@ -173,19 +173,19 @@ class V {
173
173
  originalPriceStyles: a.originalPriceStyles,
174
174
  quantityStyles: a.quantityStyles,
175
175
  nodeConfig: R(a.configBlockAttributes)
176
- }), c = this.parser.parseFromString(
176
+ }), l = this.parser.parseFromString(
177
177
  `<table><tbody><tr>${o}</tr></tbody></table>`,
178
178
  "text/html"
179
179
  ).querySelector("td");
180
- if (c && n.parentNode) {
180
+ if (l && n.parentNode) {
181
181
  const f = R(a.configBlockAttributes);
182
- c.setAttribute("esd-ext-config", JSON.stringify(f));
183
- const u = c.querySelector("esd-config-block");
184
- u && u.remove(), n.parentNode.replaceChild(c, n);
182
+ l.setAttribute("esd-ext-config", JSON.stringify(f));
183
+ const d = l.querySelector("esd-config-block");
184
+ d && d.remove(), n.parentNode.replaceChild(l, n);
185
185
  }
186
- }), i.documentElement.outerHTML);
187
- } catch (e) {
188
- return console.error("ItemsBlockMigrator failed:", e), t;
186
+ }), c.documentElement.outerHTML);
187
+ } catch (r) {
188
+ return console.error("ItemsBlockMigrator failed:", r), t;
189
189
  }
190
190
  }
191
191
  /**
@@ -196,22 +196,22 @@ class V {
196
196
  */
197
197
  extractConfiguration(t) {
198
198
  var C, D, P;
199
- const e = ((C = t.querySelector("[data-type]")) == null ? void 0 : C.getAttribute("data-type")) || "CART_ITEMS", i = ((D = t.querySelector("[data-number]")) == null ? void 0 : D.getAttribute("data-number")) || "1", l = parseInt(i) - 1, n = E[e], a = ((P = n == null ? void 0 : n[l]) == null ? void 0 : P.value) || n[0].value, o = t.querySelector('[product-attr="price"]'), _ = (o == null ? void 0 : o.getAttribute("data-currency_symbol")) || "USD", f = ((o == null ? void 0 : o.getAttribute("data-curency")) || "before") === "after" ? "1" : "0", u = (o == null ? void 0 : o.getAttribute("data-formated")) !== "false", s = this.extractConfigBlockAttributes(t, e, i), b = s["data-card_orientation_control_value"];
200
- let S;
201
- b ? S = b === "horizontal" ? "horizontal" : "vertical" : S = t.querySelector('[colspan="2"]') !== null ? "vertical" : "horizontal";
202
- const p = t.querySelector('a[product-attr="name"]'), T = (p == null ? void 0 : p.getAttribute("style")) || void 0, y = t.querySelector('a[product-attr="button"]'), m = (y == null ? void 0 : y.getAttribute("style")) || void 0, k = (o == null ? void 0 : o.getAttribute("style")) || void 0, I = t.querySelector("p.original-price"), h = (I == null ? void 0 : I.getAttribute("style")) || void 0, A = t.querySelector('[product-attr="quantity"]'), L = (A == null ? void 0 : A.getAttribute("style")) || void 0;
199
+ const r = ((C = t.querySelector("[data-type]")) == null ? void 0 : C.getAttribute("data-type")) || "CART_ITEMS", c = ((D = t.querySelector("[data-number]")) == null ? void 0 : D.getAttribute("data-number")) || "1", i = parseInt(c) - 1, n = E[r], a = ((P = n == null ? void 0 : n[i]) == null ? void 0 : P.value) || n[0].value, o = t.querySelector('[product-attr="price"]'), _ = (o == null ? void 0 : o.getAttribute("data-currency_symbol")) || "USD", f = ((o == null ? void 0 : o.getAttribute("data-curency")) || "before") === "after" ? "1" : "0", d = (o == null ? void 0 : o.getAttribute("data-formated")) !== "false", s = this.extractConfigBlockAttributes(t, r, c), S = s["data-card_orientation_control_value"];
200
+ let b;
201
+ S ? b = S === "horizontal" ? "horizontal" : "vertical" : b = t.querySelector('[colspan="2"]') !== null ? "vertical" : "horizontal";
202
+ const p = t.querySelector('a[product-attr="name"]'), I = (p == null ? void 0 : p.getAttribute("style")) || void 0, y = t.querySelector('a[product-attr="button"]'), m = (y == null ? void 0 : y.getAttribute("style")) || void 0, h = (o == null ? void 0 : o.getAttribute("style")) || void 0, T = t.querySelector("p.original-price"), k = (T == null ? void 0 : T.getAttribute("style")) || void 0, A = t.querySelector('[product-attr="quantity"]'), L = (A == null ? void 0 : A.getAttribute("style")) || void 0;
203
203
  return {
204
- orientation: S,
205
- itemsType: e,
204
+ orientation: b,
205
+ itemsType: r,
206
206
  itemId: a,
207
207
  currencySymbol: _,
208
208
  currencyLocation: f,
209
- formattedPrice: u,
209
+ formattedPrice: d,
210
210
  configBlockAttributes: s,
211
- nameStyles: T,
211
+ nameStyles: I,
212
212
  buttonStyles: m,
213
- priceStyles: k,
214
- originalPriceStyles: h,
213
+ priceStyles: h,
214
+ originalPriceStyles: k,
215
215
  quantityStyles: L
216
216
  };
217
217
  }
@@ -222,17 +222,17 @@ class V {
222
222
  * @param itemsType - The type of items (CART_ITEMS, BROWSED_ITEMS, PURCHASED_ITEMS)
223
223
  * @param itemNumber - The item number (1-based index)
224
224
  */
225
- extractConfigBlockAttributes(t, e, i) {
226
- const l = t.querySelector("esd-config-block"), n = {};
227
- if (!l)
225
+ extractConfigBlockAttributes(t, r, c) {
226
+ const i = t.querySelector("esd-config-block"), n = {};
227
+ if (!i)
228
228
  return this.getDefaultConfigBlockAttributes();
229
- if (Array.from(l.attributes).forEach((o) => {
229
+ if (Array.from(i.attributes).forEach((o) => {
230
230
  o.name.startsWith("data-") && (n[o.name] = o.value);
231
231
  }), n["data-cart_items_select_control_value"]) {
232
232
  const o = n["data-cart_items_select_control_value"];
233
233
  if (/^\d+$/.test(o)) {
234
- const _ = parseInt(o) - 1, c = E[e];
235
- c && c[_] && (n["data-cart_items_select_control_value"] = c[_].value);
234
+ const _ = parseInt(o) - 1, l = E[r];
235
+ l && l[_] && (n["data-cart_items_select_control_value"] = l[_].value);
236
236
  }
237
237
  }
238
238
  if (n["data-product_price_control_curency"]) {
@@ -242,7 +242,7 @@ class V {
242
242
  }
243
243
  (!n["data-product_price_control_currency_symbol"] || n["data-product_price_control_currency_symbol"].trim() === "") && (n["data-product_price_control_currency_symbol"] = "USD");
244
244
  const a = { ...this.getDefaultConfigBlockAttributes(), ...n };
245
- return a["data-type"] = e, a["data-source"] = e, a["data-product_image_link"] = x(e, i), a["data-product_button_link"] = O(e, i), a;
245
+ return a["data-type"] = r, a["data-source"] = r, a["data-product_image_link"] = $(r, c), a["data-product_button_link"] = x(r, c), a;
246
246
  }
247
247
  /**
248
248
  * Returns default esd-config-block attributes based on the old template structure
@@ -297,18 +297,22 @@ class V {
297
297
  * - Cart Items: ins_apr_total_product_kind, ins_apr_price_N, ins_apr_originalprice_N
298
298
  * - Browsed Items: browsed_item_total_product_kind, browsed_item_price_N, browsed_item_originalprice_N
299
299
  * - Purchased Items: purchased_item_total_product_kind, purchased_item_price_N, purchased_item_originalprice_N
300
+ *
301
+ * IMPORTANT: Preserves the esd-custom-display-conditions attribute on <body> which
302
+ * contains display condition Jinja scripts that should NOT be removed.
300
303
  */
301
304
  removeJinjaConditionals(t) {
302
- let e = t.replace(
305
+ const r = "__ESD_DISPLAY_CONDITIONS_PLACEHOLDER__", c = t.match(/esd-custom-display-conditions="[^"]*"/);
306
+ let i = c ? t.replace(c[0], r) : t;
307
+ return i = i.replace(
303
308
  /\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_total_product_kind\s*(&gt;|>)\s*\d+\s*%\}/g,
304
309
  ""
305
- );
306
- return e = e.replace(
310
+ ), i = i.replace(
307
311
  /\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_price_\d+\s*(!&#61;|!=)\s*\1_originalprice_\d+\s*%\}/g,
308
312
  ""
309
- ), e = e.replace(/\{%\s*endif\s*%\}/g, ""), e = e.replace(/\n\s*\n\s*\n/g, `
313
+ ), i = i.replace(/\{%\s*endif\s*%\}/g, ""), c && (i = i.replace(r, c[0])), i = i.replace(/\n\s*\n\s*\n/g, `
310
314
 
311
- `), e;
315
+ `), i;
312
316
  }
313
317
  /**
314
318
  * Replaces template variables with default values from productPairs
@@ -320,31 +324,31 @@ class V {
320
324
  * - {{purchased_item_formattedprice_5}} → '1,490.49' (PURCHASED_ITEMS)
321
325
  */
322
326
  replaceTemplateVariables(t) {
323
- const { PAIRS_FOR_EXTENSION: e } = v;
324
- return t.replace(/{{([^}]+)}}/g, (i, l) => {
325
- const n = l.match(/^(ins_apr|browsed_item|purchased_item)_([a-z_]+)_(\d+)$/);
327
+ const { PAIRS_FOR_EXTENSION: r } = v;
328
+ return t.replace(/{{([^}]+)}}/g, (c, i) => {
329
+ const n = i.match(/^(ins_apr|browsed_item|purchased_item)_([a-z_]+)_(\d+)$/);
326
330
  if (!n)
327
- return i;
328
- const [, a, o, _] = n, c = $[a];
329
- if (!c)
330
- return console.warn(`Unknown variable prefix: ${a}`), i;
331
+ return c;
332
+ const [, a, o, _] = n, l = O[a];
333
+ if (!l)
334
+ return console.warn(`Unknown variable prefix: ${a}`), c;
331
335
  const f = w[o];
332
336
  if (!f)
333
- return console.warn(`Unknown variable suffix mapping for: ${o}`), i;
334
- const { pairsKey: u, defaultKey: s, isArray: b } = f, p = e[u][c];
337
+ return console.warn(`Unknown variable suffix mapping for: ${o}`), c;
338
+ const { pairsKey: d, defaultKey: s, isArray: S } = f, p = r[d][l];
335
339
  if (!p)
336
- return console.warn(`No data found for: ${u}.${c}`), i;
337
- if (b) {
340
+ return console.warn(`No data found for: ${d}.${l}`), c;
341
+ if (S) {
338
342
  const y = parseInt(_) - 1, m = p[s];
339
- return Array.isArray(m) && m[y] ? m[y] : (console.warn(`Array value not found: ${u}.${c}.${s}[${y}]`), i);
343
+ return Array.isArray(m) && m[y] ? m[y] : (console.warn(`Array value not found: ${d}.${l}.${s}[${y}]`), c);
340
344
  }
341
- const T = p[s];
342
- return T !== void 0 ? String(T) : (console.warn(`Default value not found: ${u}.${c}.${s}`), i);
345
+ const I = p[s];
346
+ return I !== void 0 ? String(I) : (console.warn(`Default value not found: ${d}.${l}.${s}`), c);
343
347
  });
344
348
  }
345
349
  }
346
- function G(r) {
347
- return new V().migrate(r);
350
+ function G(e) {
351
+ return new V().migrate(e);
348
352
  }
349
353
  export {
350
354
  G as migrateItemsBlock
@@ -1,8 +1,8 @@
1
1
  var h = Object.defineProperty;
2
2
  var T = (A, e, t) => e in A ? h(A, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : A[e] = t;
3
3
  var m = (A, e, t) => T(A, typeof e != "symbol" ? e + "" : e, t);
4
- import P, { prepareProductRows as S } from "../../extensions/Blocks/Recommendation/templates/migrationTemplate.js";
5
- import { getDefaultProducts as q } from "../../extensions/Blocks/Recommendation/templates/templateUtils.js";
4
+ import P, { prepareProductRows as S } from "../../extensions/Blocks/Recommendation/templates/grid/migration.js";
5
+ import { getDefaultProducts as q } from "../../extensions/Blocks/Recommendation/templates/utils.js";
6
6
  class w {
7
7
  constructor() {
8
8
  m(this, "parser");
@@ -1,5 +1,5 @@
1
1
  const s = {
2
- RECOMMENDATION_API_URL: "http://recommendationv2.api.useinsider.com"
2
+ RECOMMENDATION_API_URL: "https://recommendationv2.api.useinsider.com"
3
3
  }, i = [
4
4
  { id: 11, key: "similarViewed", name: "Viewed Together", path: "viewed-together" },
5
5
  { id: 12, key: "similarBought", name: "Purchased Together", path: "purchased-together" },
@@ -1,4 +1,4 @@
1
- const s = 20, e = 320, t = {
1
+ const e = 20, s = 320, t = "vertical", m = {
2
2
  CART_ABANDONMENT: {
3
3
  ins_apr_img_1: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/ins_apr_img_1.png",
4
4
  ins_apr_img_2: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/ins_apr_img_2.png",
@@ -15,7 +15,7 @@ const s = 20, e = 320, t = {
15
15
  DISCOUNT: "discount",
16
16
  OMNIBUS_DISCOUNT: "omnibus_discount",
17
17
  OMNIBUS_PRICE: "omnibus_price"
18
- }, m = {
18
+ }, _ = {
19
19
  IF: {
20
20
  discount: `{% if {${i.DISCOUNT}} != "0%" and {${i.DISCOUNT}} != "" %}`,
21
21
  omnibus_discount: `{% if {${i.DISCOUNT}} != "0%" and {${i.DISCOUNT}} != "" and {${i.OMNIBUS_DISCOUNT}} != "0%" and {${i.OMNIBUS_DISCOUNT}} != "" %}`,
@@ -23,17 +23,17 @@ const s = 20, e = 320, t = {
23
23
  },
24
24
  ELSE: "{% else %}",
25
25
  END_IF: "{% endif %}"
26
- }, _ = {
27
- ID: /ins-recommendation-v3-campaign-id="(.*?)"/gi,
28
- ATTRIBUTE_PARAGRAPH: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)">[\S\s]*?<\/p>/gm,
29
- ATTRIBUTE_PARAGRAPH_START_TAG: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)">/gm,
26
+ }, a = {
27
+ ID: /recommendation-id="(.*?)"/gi,
28
+ ATTRIBUTE_PARAGRAPH: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)"[^>]*>[\S\s]*?<\/p>/gm,
29
+ ATTRIBUTE_PARAGRAPH_START_TAG: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)"[^>]*>/gm,
30
30
  COMPOSITION: /composition="true"/gm,
31
31
  CUSTOM_FIELD: /{{[0-9]+_[0-8]_(discount|omnibus_discount|omnibus_price)}}/gm,
32
32
  CUSTOM_FIELD_INDEXES_PART: /{{[0-9]+_[0-8]_/gm,
33
33
  CUSTOM_FIELD_NAME_PART: /_(discount|omnibus_discount|omnibus_price)}}/gm
34
- }, a = {
35
- PARAGRAPH_END_TAG: "</p>"
36
34
  }, n = {
35
+ PARAGRAPH_END_TAG: "</p>"
36
+ }, o = {
37
37
  REGULAR_NAME_HEIGHT: ".ext-product-name.ins-vertical p { height:90px!important;",
38
38
  TRIMMED_NAME_HEIGHT: ".ext-product-name.ins-vertical p { height:18px!important;",
39
39
  ELLIPSIS: "text-overflow:ellipsis!important; white-space:nowrap!important;",
@@ -46,11 +46,12 @@ const s = 20, e = 320, t = {
46
46
  };
47
47
  export {
48
48
  i as ATTRIBUTES,
49
- m as CONDITIONS,
50
- n as CSS,
51
- t as DUMMY_IMAGE_MAPPINGS,
52
- s as DefaultPadding,
53
- a as HTML,
54
- e as MinDeviceViewport,
55
- _ as REGEX
49
+ _ as CONDITIONS,
50
+ o as CSS,
51
+ m as DUMMY_IMAGE_MAPPINGS,
52
+ e as DefaultPadding,
53
+ n as HTML,
54
+ s as MinDeviceViewport,
55
+ a as REGEX,
56
+ t as VerticalOrientation
56
57
  };
@@ -1,17 +1,17 @@
1
1
  import { useTranslations as e } from "../composables/useTranslations.js";
2
2
  import { getEnvironmentPrefix as R } from "../utils/environmentUtil.js";
3
- const _ = {
3
+ const I = {
4
4
  UNSUBSCRIBE_LINK_TYPE: 1,
5
5
  PREFERENCES_LINK_TYPE: 3
6
- }, I = {
6
+ }, r = {
7
7
  UNSUBSCRIBE_LINK_REGEX: /{{ins-unsubscribe-link}}/g,
8
8
  DATA_OGSB_BUTTON_CSS_REGEX: "\\[data-ogsb\\]\\s*\\.es-button\\.es-button-[0-9]+\\s*\\{(?:[^\\}]*)\\}",
9
9
  GLOBAL_UNSUBSCRIBE_LINK_REGEX: /{{ins-global-unsubscribe-link}}/g,
10
10
  PREFERENCES_UNSUBSCRIBE_LINK_REGEX: /{{ins-preferences-unsubscribe-link}}/g
11
- }, n = R(), r = {
12
- UNSUBSCRIBE_URL: `https://mail.${n}.com/user/v1/unsub`,
13
- PREFERENCES_URL: `https://mail.${n}.com/user/v1/prefs`
14
- }, B = "iid", i = {
11
+ }, s = R(), _ = {
12
+ UNSUBSCRIBE_URL: `https://mail.${s}.com/user/v1/unsub`,
13
+ PREFERENCES_URL: `https://mail.${s}.com/user/v1/prefs`
14
+ }, i = "iid", B = {
15
15
  name: "Global Unsubscribe",
16
16
  sendGridId: "G"
17
17
  }, C = "/email/unsubscribe-pages", E = {
@@ -20,9 +20,6 @@ const _ = {
20
20
  SUBSCRIPTION_PREFERENCE_CENTER: 3,
21
21
  SUBSCRIPTION_PREFERENCE_CONFIRMATION: 4,
22
22
  RESUBSCRIBE: 5
23
- }, U = {
24
- [E.GLOBAL_UNSUBSCRIBE]: "custom-unsubscribe",
25
- [E.SUBSCRIPTION_PREFERENCE_CENTER]: "custom-preferences"
26
23
  }, t = {
27
24
  [E.GLOBAL_UNSUBSCRIBE]: [
28
25
  E.GLOBAL_UNSUBSCRIBE,
@@ -33,30 +30,29 @@ const _ = {
33
30
  E.SUBSCRIPTION_PREFERENCE_CENTER,
34
31
  E.SUBSCRIPTION_PREFERENCE_CONFIRMATION
35
32
  ]
36
- }, c = () => {
37
- const s = e();
33
+ }, U = () => {
34
+ const n = e();
38
35
  return {
39
- [E.GLOBAL_UNSUBSCRIBE]: s("unsubscription-preference.type-global-unsubscribe"),
40
- [E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE]: s("unsubscription-preference.type-global-unsubscription-confirmation"),
41
- [E.RESUBSCRIBE]: s("unsubscription-preference.type-resubscribe"),
42
- [E.SUBSCRIPTION_PREFERENCE_CENTER]: s("unsubscription-preference.type-subscription-preferences-center"),
43
- [E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: s("unsubscription-preference.type-subscription-preferences-confirmation")
36
+ [E.GLOBAL_UNSUBSCRIBE]: n("unsubscription-preference.type-global-unsubscribe"),
37
+ [E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE]: n("unsubscription-preference.type-global-unsubscription-confirmation"),
38
+ [E.RESUBSCRIBE]: n("unsubscription-preference.type-resubscribe"),
39
+ [E.SUBSCRIPTION_PREFERENCE_CENTER]: n("unsubscription-preference.type-subscription-preferences-center"),
40
+ [E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: n("unsubscription-preference.type-subscription-preferences-confirmation")
44
41
  };
45
- }, o = {
42
+ }, c = {
46
43
  default: "{{ins-unsubscribe-link}}",
47
44
  [E.GLOBAL_UNSUBSCRIBE]: "{{ins-global-unsubscribe-link}}",
48
45
  [E.SUBSCRIPTION_PREFERENCE_CENTER]: "{{ins-preferences-unsubscribe-link}}"
49
46
  };
50
47
  export {
51
- i as DEFAULT_UNSUBSCRIBE_GROUP,
52
- B as INSIDER_ID,
53
- I as LINK_REGEXES,
54
- _ as LINK_TYPES,
55
- o as MERGE_TAGS,
48
+ B as DEFAULT_UNSUBSCRIBE_GROUP,
49
+ i as INSIDER_ID,
50
+ r as LINK_REGEXES,
51
+ I as LINK_TYPES,
52
+ c as MERGE_TAGS,
56
53
  E as PAGE_TYPES,
57
54
  t as TYPE_COLLECTIONS,
58
55
  C as UNSUBSCRIBE_PAGES_LINK,
59
- U as UNSUBSCRIBE_SYNC_MODULE_TYPES,
60
- r as URLS,
61
- c as getTypeTranslations
56
+ _ as URLS,
57
+ U as getTypeTranslations
62
58
  };
@@ -1,18 +1,29 @@
1
- import { Block as e, BlockCompositionType as t } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
2
- import { getDefaultTemplate as o } from "./templates/blockTemplate.js";
3
- const n = "recommendation-block";
4
- class m extends e {
1
+ var p = Object.defineProperty;
2
+ var f = (r, o, t) => o in r ? p(r, o, { enumerable: !0, configurable: !0, writable: !0, value: t }) : r[o] = t;
3
+ var g = (r, o, t) => f(r, typeof o != "symbol" ? o + "" : o, t);
4
+ import { Block as h, BlockCompositionType as I, ModificationDescription as _ } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
5
+ import { ensureMobileCssRulesExist as d } from "./controls/mobileLayout/cssRules.js";
6
+ import { RecommendationConfigService as s } from "./services/configService.js";
7
+ import { useRecommendationExtensionStore as u } from "./store/recommendation.js";
8
+ import { getDefaultTemplate as k } from "./templates/grid/template.js";
9
+ const B = "recommendation-block", c = "ins-recommendation-v3-block-v2", a = "recommendation-id";
10
+ class y extends h {
5
11
  constructor() {
6
12
  super();
13
+ /**
14
+ * Stores the ID generated in getTemplate() so onCreated() can reuse it.
15
+ * This avoids generating a new (different) ID in onCreated().
16
+ */
17
+ g(this, "_pendingBlockId", null);
7
18
  }
8
19
  getId() {
9
- return n;
20
+ return B;
10
21
  }
11
22
  getIcon() {
12
23
  return "recommendation-icon";
13
24
  }
14
25
  getBlockCompositionType() {
15
- return t.CONTAINER;
26
+ return I.CONTAINER;
16
27
  }
17
28
  getName() {
18
29
  return this.api.translate("Recommendation Block");
@@ -20,11 +31,124 @@ class m extends e {
20
31
  getDescription() {
21
32
  return this.api.translate("Recommendation Block Title Description");
22
33
  }
34
+ /**
35
+ * Returns the template HTML for a new recommendation block.
36
+ * Generates a unique recommendation ID and embeds the instance class
37
+ * (ins-recommendation-v3-block-{id}) directly in the template HTML.
38
+ * This is necessary because Stripo's Angular rendering manages the class
39
+ * attribute and overwrites dynamically added classes via setAttribute.
40
+ */
23
41
  getTemplate() {
24
- return o();
42
+ const t = this._generateNextId();
43
+ return this._pendingBlockId = t, k(t);
44
+ }
45
+ /**
46
+ * Called when a new block is dropped into the template
47
+ *
48
+ * Uses the ID from getTemplate() (which already embedded the instance class)
49
+ * and assigns the recommendation-id attribute + initializes configuration.
50
+ * @param node - The newly created block node
51
+ */
52
+ onCreated(t) {
53
+ const e = this._pendingBlockId ?? this._generateNextId();
54
+ this._pendingBlockId = null, this._assignRecommendationId(t, e);
55
+ const n = s.initializeConfig(this.api, t, { recommendationId: e }), i = u();
56
+ i.setCurrentBlock(e), d(this.api), i.patchCurrentBlockConfig({ language: n.language }, { triggerRefetch: !1 });
57
+ }
58
+ /**
59
+ * Called when the document changes or template is loaded
60
+ *
61
+ * Handles migration from legacy templates that don't have node config
62
+ * and assigns recommendation-id to legacy blocks that lack one.
63
+ * @param node - The block node that may need migration
64
+ */
65
+ onDocumentChanged(t) {
66
+ if (!(!t || !("getNodeConfig" in t))) {
67
+ if (!this._getRecommendationId(t)) {
68
+ const e = this._generateNextId();
69
+ this._assignRecommendationId(t, e), s.hasConfig(t) && s.updateConfig(
70
+ this.api,
71
+ t,
72
+ { recommendationId: e },
73
+ "Assign recommendation ID to legacy block"
74
+ );
75
+ }
76
+ s.needsMigration(t) && this._migrateFromLegacy(t), d(this.api);
77
+ }
78
+ }
79
+ /**
80
+ * Called when a block is deleted from the template
81
+ *
82
+ * Cleans up the per-block state from the Pinia store.
83
+ * @param node - The block node being deleted
84
+ */
85
+ onDelete(t) {
86
+ const e = this._getRecommendationId(t);
87
+ e && u().removeBlockState(e);
88
+ }
89
+ /**
90
+ * Generates the next unique recommendation ID by scanning all existing blocks
91
+ * in the document and finding the maximum existing ID + 1.
92
+ */
93
+ _generateNextId() {
94
+ let t = 0;
95
+ try {
96
+ const e = this.api.getDocumentRoot();
97
+ e && "querySelectorAll" in e && e.querySelectorAll(`.${c}`).forEach((i) => {
98
+ if ("getAttribute" in i) {
99
+ const m = i.getAttribute(a), l = m ? parseInt(m) : 0;
100
+ l > t && (t = l);
101
+ }
102
+ });
103
+ } catch {
104
+ }
105
+ return t + 1;
106
+ }
107
+ /**
108
+ * Assigns a recommendation-id attribute to the block element.
109
+ * The instance class (ins-recommendation-v3-block-{id}) is embedded in the template
110
+ * HTML by getTemplate(), since Stripo's Angular rendering overwrites dynamically
111
+ * added classes via setAttribute.
112
+ */
113
+ _assignRecommendationId(t, e) {
114
+ const n = this._getBlockElement(t);
115
+ if (!n)
116
+ return;
117
+ const i = this.api.getDocumentModifier();
118
+ i.modifyHtml(n).setAttribute(a, e.toString()), i.apply(new _(`Assign recommendation ID ${e}`));
119
+ }
120
+ /**
121
+ * Gets the recommendation-id from a block node
122
+ */
123
+ _getRecommendationId(t) {
124
+ const e = this._getBlockElement(t);
125
+ if (!e || !("getAttribute" in e))
126
+ return null;
127
+ const n = e.getAttribute(a);
128
+ if (!n)
129
+ return null;
130
+ const i = parseInt(n);
131
+ return Number.isNaN(i) ? null : i;
132
+ }
133
+ /**
134
+ * Gets the block element (the element with BLOCK_CLASS)
135
+ */
136
+ _getBlockElement(t) {
137
+ if ("getAttribute" in t) {
138
+ const e = t.getAttribute("class");
139
+ if (e && e.includes(c))
140
+ return t;
141
+ }
142
+ return "querySelector" in t ? t.querySelector(`.${c}`) : null;
143
+ }
144
+ /**
145
+ * Migrate configuration from legacy format
146
+ */
147
+ _migrateFromLegacy(t) {
148
+ s.migrateFromDataAttributes(this.api, t);
25
149
  }
26
150
  }
27
151
  export {
28
- n as BLOCK_ID,
29
- m as RecommendationBlock
152
+ B as BLOCK_ID,
153
+ y as RecommendationBlock
30
154
  };
@@ -0,0 +1,4 @@
1
+ var b = /* @__PURE__ */ ((r) => (r.BUTTON = "recommendation-block-button", r.NAME = "recommendation-block-name", r.PRICE = "recommendation-block-price", r.OLD_PRICE = "recommendation-block-old-price", r.OMNIBUS_PRICE = "recommendation-block-omnibus-price", r.OMNIBUS_DISCOUNT = "recommendation-block-omnibus-discount", r.IMAGE = "recommendation-block-image", r))(b || {});
2
+ export {
3
+ b as RecommendationBlockId
4
+ };