@useinsider/guido 2.1.0-beta.f30d59a → 2.1.0-beta.f8696fd

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 (167) hide show
  1. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
  2. package/dist/components/organisms/header/EditorActions.vue.js +12 -10
  3. package/dist/components/organisms/header/EditorActions.vue2.js +41 -31
  4. package/dist/components/organisms/header/MigrationConfirmModal.vue.js +21 -0
  5. package/dist/components/organisms/header/MigrationConfirmModal.vue2.js +38 -0
  6. package/dist/composables/useHtmlValidator.js +114 -104
  7. package/dist/composables/useRecommendation.js +54 -21
  8. package/dist/composables/useStripo.js +25 -23
  9. package/dist/composables/useVersionHistoryApi.js +1 -1
  10. package/dist/config/compiler/recommendationCompilerRules.js +45 -39
  11. package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
  12. package/dist/config/i18n/en/index.js +11 -0
  13. package/dist/config/i18n/en/labels.json.js +12 -0
  14. package/dist/config/i18n/en/toasters.json.js +56 -0
  15. package/dist/config/i18n/en/tooltips.json.js +82 -0
  16. package/dist/config/i18n/index.js +7 -0
  17. package/dist/config/migrator/itemsBlockMigrator.js +128 -121
  18. package/dist/config/migrator/recommendationMigrator.js +42 -40
  19. package/dist/enums/extensions/recommendationBlock.js +1 -1
  20. package/dist/enums/recommendation.js +16 -15
  21. package/dist/extensions/Blocks/Items/block.js +45 -25
  22. package/dist/extensions/Blocks/Items/iconsRegistry.js +40 -5
  23. package/dist/extensions/Blocks/Items/items.css.js +48 -0
  24. package/dist/extensions/Blocks/Recommendation/block.js +153 -9
  25. package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
  26. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
  27. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
  28. package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
  29. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
  30. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
  31. package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
  32. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
  33. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
  34. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
  35. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
  36. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
  37. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
  38. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +250 -0
  39. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
  40. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
  41. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
  42. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
  43. package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
  44. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
  45. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
  46. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
  47. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
  48. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextAfterControl.js → omnibusDiscount/textAfter.js} +16 -14
  49. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextBeforeControl.js → omnibusDiscount/textBefore.js} +16 -14
  50. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
  51. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextAfterControl.js → omnibusPrice/textAfter.js} +16 -14
  52. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextBeforeControl.js → omnibusPrice/textBefore.js} +14 -12
  53. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
  54. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
  55. package/dist/extensions/Blocks/Recommendation/extension.js +40 -17
  56. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +54 -3
  57. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +61 -4
  58. package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
  59. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +21 -10
  60. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +254 -207
  61. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
  62. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
  63. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
  64. package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
  65. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
  66. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
  67. package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
  68. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
  69. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
  70. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +26 -15
  71. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
  72. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
  73. package/dist/extensions/Blocks/common-control.js +12 -4
  74. package/dist/extensions/Blocks/controlFactories.js +125 -93
  75. package/dist/guido.css +1 -1
  76. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +242 -186
  77. package/dist/services/recommendationApi.js +11 -8
  78. package/dist/services/stripoApi.js +20 -17
  79. package/dist/services/templateLibraryApi.js +16 -13
  80. package/dist/src/components/Guido.vue.d.ts +1 -1
  81. package/dist/src/components/organisms/header/EditorActions.vue.d.ts +1 -1
  82. package/dist/src/components/organisms/header/HeaderWrapper.vue.d.ts +1 -1
  83. package/dist/src/components/organisms/header/MigrationConfirmModal.vue.d.ts +5 -0
  84. package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
  85. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  86. package/dist/src/components/wrappers/WpModal.vue.d.ts +2 -2
  87. package/dist/src/composables/useRecommendation.d.ts +1 -0
  88. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
  89. package/dist/src/config/i18n/en/index.d.ts +1 -0
  90. package/dist/src/config/i18n/index.d.ts +16 -0
  91. package/dist/src/extensions/Blocks/Items/block.d.ts +1 -0
  92. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +68 -0
  93. package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
  94. package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +0 -24
  95. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
  96. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
  97. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
  98. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
  99. package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
  100. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
  101. package/dist/src/extensions/Blocks/Recommendation/{cardCompositionControl.d.ts → controls/cardComposition/index.d.ts} +23 -3
  102. package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
  103. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +21 -589
  104. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
  105. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
  106. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
  107. package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
  108. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +79 -0
  109. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
  110. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
  111. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
  112. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
  113. package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
  114. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
  115. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
  116. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
  117. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
  118. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
  119. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
  120. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
  121. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
  122. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
  123. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
  124. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
  125. package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
  126. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
  127. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
  128. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +138 -468
  129. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
  130. package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
  131. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
  132. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
  133. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
  134. package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
  135. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
  136. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
  137. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
  138. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
  139. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
  140. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
  141. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
  142. package/dist/src/extensions/Blocks/common-control.d.ts +5 -0
  143. package/dist/src/stores/template.d.ts +3 -0
  144. package/dist/static/styles/components/notification.css.js +18 -0
  145. package/dist/static/styles/components/tools.css.js +6 -2
  146. package/dist/static/styles/customEditorStyle.css.js +35 -11
  147. package/dist/static/styles/variables.css.js +2 -0
  148. package/dist/static/templates/empty/index.html.js +74 -0
  149. package/dist/static/templates/empty/style.css.js +779 -0
  150. package/dist/stores/template.js +9 -0
  151. package/dist/utils/pairProductVariables.js +57 -56
  152. package/dist/utils/templatePreparation.js +15 -14
  153. package/package.json +1 -1
  154. package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -187
  155. package/dist/extensions/Blocks/Recommendation/constants.js +0 -13
  156. package/dist/extensions/Blocks/Recommendation/control.js +0 -336
  157. package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +0 -68
  158. package/dist/extensions/Blocks/Recommendation/controls/index.js +0 -245
  159. package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +0 -74
  160. package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +0 -188
  161. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -181
  162. package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -189
  163. package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -209
  164. package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -38
  165. package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +0 -16
  166. package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
  167. package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -52
@@ -1,16 +1,16 @@
1
1
  import { defineComponent as n, ref as a, computed as l } from "vue";
2
2
  import i from "../../../wrappers/WpDrawer.vue.js";
3
- import { useTranslations as p } from "../../../../composables/useTranslations.js";
4
- import { useRecommendationExtensionStore as c } from "../../../../extensions/Blocks/Recommendation/store/recommendation.js";
3
+ import { useTranslations as c } from "../../../../composables/useTranslations.js";
4
+ import { useRecommendationExtensionStore as p } from "../../../../extensions/Blocks/Recommendation/store/recommendation.js";
5
5
  import u from "./Filters.vue.js";
6
- const b = /* @__PURE__ */ n({
6
+ const v = /* @__PURE__ */ n({
7
7
  __name: "FilterSelectionDrawer",
8
- setup(m) {
9
- const t = p(), o = c(), e = a(!1), s = l(() => ({
8
+ setup(f) {
9
+ const r = c(), t = p(), e = a(!1), s = l(() => ({
10
10
  primaryButton: {
11
11
  styling: "solid",
12
12
  type: "primary",
13
- labelText: t(
13
+ labelText: r(
14
14
  e.value ? "unsubscription-preference.selecting-type" : "products.select-and-continue"
15
15
  ),
16
16
  loadingStatus: e.value,
@@ -19,19 +19,20 @@ const b = /* @__PURE__ */ n({
19
19
  cancelOrBackButton: {
20
20
  styling: "ghost",
21
21
  type: "secondary",
22
- labelText: t("products.cancel"),
22
+ labelText: r("products.cancel"),
23
23
  disabledStatus: e.value
24
24
  }
25
- })), r = () => {
26
- o.filterSelectionDrawerStatus = !1;
25
+ })), o = () => {
26
+ t.closeFilterDrawer();
27
27
  };
28
- return { __sfc: !0, trans: t, store: o, isApplying: e, footerButtonGroupOptions: s, closeModal: r, applyFilter: () => {
29
- e.value = !0, setTimeout(() => {
30
- console.debug("Filter applied!"), r(), o.generateFilterQuery();
31
- }, 2e3);
28
+ return { __sfc: !0, trans: r, store: t, isApplying: e, footerButtonGroupOptions: s, closeModal: o, applyFilter: () => {
29
+ e.value = !0, t.patchCurrentBlockConfig(
30
+ { filters: t.recommendationConfigs.filters },
31
+ { triggerRefetch: !0 }
32
+ ), o(), e.value = !1;
32
33
  }, WpDrawer: i, Filters: u };
33
34
  }
34
35
  });
35
36
  export {
36
- b as default
37
+ v as default
37
38
  };
@@ -1,21 +1,23 @@
1
- import l from "./EditorActions.vue2.js";
1
+ import r from "./EditorActions.vue2.js";
2
2
  /* empty css */
3
- import r from "../../../_virtual/_plugin-vue2_normalizer.js";
4
- var d = function() {
3
+ import d from "../../../_virtual/_plugin-vue2_normalizer.js";
4
+ var u = function() {
5
5
  var s, i, n, a;
6
6
  var e = this, o = e._self._c, t = e._self._setupProxy;
7
- return o("div", { staticClass: "d-f editor-actions" }, [t.isVersionHistoryButtonVisible ? o(t.InButtonV2, { attrs: { id: "guido__history-button", "left-icon": "line-architect-version-history", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isVersionHistoryButtonDisabled, "label-text-status": !1, "selected-status": t.editorStore.isVersionHistoryOpen, "tooltip-options": t.getTooltipOptions("guido__history-button"), "tooltip-text": t.versionHistoryTooltipText }, on: { click: t.handleVersionHistory } }) : e._e(), o(t.InButtonV2, { attrs: { id: "guido__export-button", "left-icon": "line-export", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isExportButtonDisabled, "label-text-status": !1, "loading-status": t.isExporting, "tooltip-options": t.getTooltipOptions("guido__export-button"), "tooltip-text": t.trans("newsletter.export") }, on: { click: t.handleExport } }), (i = (s = t.config) == null ? void 0 : s.features) != null && i.saveAsTemplate ? o(t.InButtonV2, { attrs: { id: "guido__save-as-button", "left-icon": "line-newsletter-save-as-template", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isSaveAsButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__save-as-button"), "tooltip-text": t.trans("newsletter.save-templates") }, on: { click: t.handleSaveAs } }) : e._e(), (a = (n = t.config) == null ? void 0 : n.features) != null && a.testMessage ? o(t.InButtonV2, { attrs: { id: "guido__test-button", "left-icon": "line-architect-test-journey", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isTestButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__test-button", { staticPosition: "bottom right" }), "tooltip-text": t.trans("newsletter.test-email") }, on: { click: t.testEmailClick } }) : e._e(), t.editorStore.isPreviewModeOpen ? e._e() : o(t.InButtonV2, { staticClass: "ml-3", attrs: { id: "guido__save-button", "label-text": "Save", "disabled-status": !t.isSaving && t.editorStore.isSaveButtonDisabled, "loading-status": t.isSaving }, on: { click: function(_) {
7
+ return o("div", { staticClass: "d-f editor-actions" }, [t.isVersionHistoryButtonVisible ? o(t.InButtonV2, { attrs: { id: "guido__history-button", "left-icon": "line-architect-version-history", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isVersionHistoryButtonDisabled, "label-text-status": !1, "selected-status": t.editorStore.isVersionHistoryOpen, "tooltip-options": t.getTooltipOptions("guido__history-button"), "tooltip-text": t.versionHistoryTooltipText }, on: { click: t.handleVersionHistory } }) : e._e(), o(t.InButtonV2, { attrs: { id: "guido__export-button", "left-icon": "line-export", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isExportButtonDisabled, "label-text-status": !1, "loading-status": t.isExporting, "tooltip-options": t.getTooltipOptions("guido__export-button"), "tooltip-text": t.trans("newsletter.export") }, on: { click: t.handleExport } }), (i = (s = t.config) == null ? void 0 : s.features) != null && i.saveAsTemplate ? o(t.InButtonV2, { attrs: { id: "guido__save-as-button", "left-icon": "line-newsletter-save-as-template", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isSaveAsButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__save-as-button"), "tooltip-text": t.trans("newsletter.save-templates") }, on: { click: t.handleSaveAs } }) : e._e(), (a = (n = t.config) == null ? void 0 : n.features) != null && a.testMessage ? o(t.InButtonV2, { attrs: { id: "guido__test-button", "left-icon": "line-architect-test-journey", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isTestButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__test-button", { staticPosition: "bottom right" }), "tooltip-text": t.trans("newsletter.test-email") }, on: { click: t.testEmailClick } }) : e._e(), t.editorStore.isPreviewModeOpen ? e._e() : o(t.InButtonV2, { staticClass: "ml-3", attrs: { id: "guido__save-button", "label-text": "Save", "disabled-status": !t.isSaving && t.editorStore.isSaveButtonDisabled, "loading-status": t.isSaving }, on: { click: function(l) {
8
8
  return t.handleSave(!1);
9
- } } })], 1);
10
- }, u = [], p = /* @__PURE__ */ r(
11
- l,
12
- d,
9
+ } } }), t.isMigrationModalVisible ? o(t.MigrationConfirmModal, { on: { close: function(l) {
10
+ t.isMigrationModalVisible = !1;
11
+ }, confirm: t.handleMigrationConfirm } }) : e._e()], 1);
12
+ }, p = [], c = /* @__PURE__ */ d(
13
+ r,
13
14
  u,
15
+ p,
14
16
  !1,
15
17
  null,
16
- "17dd4d8b"
18
+ "92b1be6c"
17
19
  );
18
- const v = p.exports;
20
+ const v = c.exports;
19
21
  export {
20
22
  v as default
21
23
  };
@@ -1,41 +1,51 @@
1
- import { defineComponent as g, ref as u, computed as f } from "vue";
2
- import { useConfig as E } from "../../../composables/useConfig.js";
3
- import { useExport as h } from "../../../composables/useExport.js";
4
- import { useTestEmailClick as w } from "../../../composables/useGuidoActions.js";
5
- import { useSave as x } from "../../../composables/useSave.js";
6
- import { useTranslations as T } from "../../../composables/useTranslations.js";
7
- import { useVersionHistoryApi as O } from "../../../composables/useVersionHistoryApi.js";
8
- import { useEditorStore as A } from "../../../stores/editor.js";
9
- import { getTooltipOptions as C } from "../../../utils/tooltipUtils.js";
10
- import { InButtonV2 as k } from "@useinsider/design-system-vue";
11
- const J = /* @__PURE__ */ g({
1
+ import { defineComponent as T, ref as l, computed as m } from "vue";
2
+ import { useConfig as w } from "../../../composables/useConfig.js";
3
+ import { useExport as C } from "../../../composables/useExport.js";
4
+ import { useTestEmailClick as O } from "../../../composables/useGuidoActions.js";
5
+ import { useSave as A } from "../../../composables/useSave.js";
6
+ import { useTranslations as b } from "../../../composables/useTranslations.js";
7
+ import { useVersionHistoryApi as k } from "../../../composables/useVersionHistoryApi.js";
8
+ import { useEditorStore as B } from "../../../stores/editor.js";
9
+ import { useTemplateStore as j } from "../../../stores/template.js";
10
+ import { getTooltipOptions as D } from "../../../utils/tooltipUtils.js";
11
+ import { InButtonV2 as I } from "@useinsider/design-system-vue";
12
+ import P from "./MigrationConfirmModal.vue.js";
13
+ const Y = /* @__PURE__ */ T({
12
14
  __name: "EditorActions",
13
- setup(B, { expose: v }) {
14
- const { config: n } = E(), { exportHtml: a } = h(), { save: l } = x(), { openVersionHistory: p, closeVersionHistory: c } = O(), o = A(), s = T(), r = u(!1), i = u(!1), d = w(), y = () => {
15
- if (o.isVersionHistoryOpen) {
16
- c();
15
+ setup(q, { expose: H }) {
16
+ const { config: u } = w(), { exportHtml: c } = C(), { save: p } = A(), { openVersionHistory: f, closeVersionHistory: v } = k(), t = B(), d = j(), s = b(), r = l(!1), i = l(!1), n = l(!1), S = O(), y = m(() => Object.values(d.migrations).some((o) => o > 0)), V = () => {
17
+ if (t.isVersionHistoryOpen) {
18
+ v();
17
19
  return;
18
20
  }
19
- p();
20
- }, H = async () => {
21
- r.value = !0, await a(), r.value = !1;
22
- }, V = () => {
23
- o.isSaveAsTemplateDrawerOpen = !0;
24
- }, S = f(() => o.isVersionHistoryOpen ? s("newsletter.close-version-history") : s("newsletter.version-history")), _ = f(
21
+ f();
22
+ }, h = async () => {
23
+ r.value = !0, await c(), r.value = !1;
24
+ }, _ = () => {
25
+ t.isSaveAsTemplateDrawerOpen = !0;
26
+ }, x = m(() => t.isVersionHistoryOpen ? s("newsletter.close-version-history") : s("newsletter.version-history")), E = m(
25
27
  () => {
26
- var t, e;
27
- return ((e = (t = n.value) == null ? void 0 : t.features) == null ? void 0 : e.versionHistory) && !o.isPreviewModeOpen;
28
+ var o, e;
29
+ return ((e = (o = u.value) == null ? void 0 : o.features) == null ? void 0 : e.versionHistory) && !t.isPreviewModeOpen;
28
30
  }
29
- ), m = async (t) => {
30
- i.value = !0, o.loadingStatus = !0;
31
- const e = await l(t);
32
- return i.value = !1, (t || !e) && (o.loadingStatus = !1), e;
31
+ ), a = async (o) => {
32
+ i.value = !0, t.loadingStatus = !0;
33
+ const e = await p(o);
34
+ return i.value = !1, (o || !e) && (t.loadingStatus = !1), e;
35
+ }, g = (o) => {
36
+ if (!o && y.value) {
37
+ n.value = !0;
38
+ return;
39
+ }
40
+ a(o);
41
+ }, M = () => {
42
+ n.value = !1, a(!1);
33
43
  };
34
- return v({
35
- handleSave: m
36
- }), { __sfc: !0, config: n, exportHtml: a, save: l, openVersionHistory: p, closeVersionHistory: c, editorStore: o, trans: s, isExporting: r, isSaving: i, testEmailClick: d, handleVersionHistory: y, handleExport: H, handleSaveAs: V, versionHistoryTooltipText: S, isVersionHistoryButtonVisible: _, handleSave: m, getTooltipOptions: C, InButtonV2: k };
44
+ return H({
45
+ handleSave: g
46
+ }), { __sfc: !0, config: u, exportHtml: c, save: p, openVersionHistory: f, closeVersionHistory: v, editorStore: t, templateStore: d, trans: s, isExporting: r, isSaving: i, isMigrationModalVisible: n, testEmailClick: S, hasMigrations: y, handleVersionHistory: V, handleExport: h, handleSaveAs: _, versionHistoryTooltipText: x, isVersionHistoryButtonVisible: E, executeSave: a, handleSave: g, handleMigrationConfirm: M, getTooltipOptions: D, InButtonV2: I, MigrationConfirmModal: P };
37
47
  }
38
48
  });
39
49
  export {
40
- J as default
50
+ Y as default
41
51
  };
@@ -0,0 +1,21 @@
1
+ import n from "./MigrationConfirmModal.vue2.js";
2
+ import s from "../../../_virtual/_plugin-vue2_normalizer.js";
3
+ var i = function() {
4
+ var t = this, e = t._self._c, o = t._self._setupProxy;
5
+ return e(o.WpModal, { attrs: { id: "migration-confirm-modal", size: "X-small", "close-on-outside-click": !1, "footer-button-options": o.footerButtonOptions, title: o.trans("email-editor.migration-confirm-save") }, on: { close: function(r) {
6
+ return o.emit("close");
7
+ }, "primary-action": function(r) {
8
+ return o.emit("confirm");
9
+ } } }, [e("p", [t._v(" " + t._s(o.textParts.before)), e("strong", [t._v(t._s(o.blockNames))]), t._v(t._s(o.textParts.after) + " ")])]);
10
+ }, a = [], _ = /* @__PURE__ */ s(
11
+ n,
12
+ i,
13
+ a,
14
+ !1,
15
+ null,
16
+ null
17
+ );
18
+ const f = _.exports;
19
+ export {
20
+ f as default
21
+ };
@@ -0,0 +1,38 @@
1
+ import { defineComponent as f, ref as d, computed as r } from "vue";
2
+ import u from "../../wrappers/WpModal.vue.js";
3
+ import { useTranslations as g } from "../../../composables/useTranslations.js";
4
+ import { useTemplateStore as b } from "../../../stores/template.js";
5
+ const M = /* @__PURE__ */ f({
6
+ __name: "MigrationConfirmModal",
7
+ emits: ["close", "confirm"],
8
+ setup(_, { emit: i }) {
9
+ const o = b(), t = g(), a = d({
10
+ cancelOrBackButton: {
11
+ type: "secondary",
12
+ labelText: t("campaign-builder.cancel"),
13
+ styling: "ghost"
14
+ },
15
+ primaryButton: {
16
+ type: "primary",
17
+ labelText: t("email-editor.migration-confirm-save")
18
+ }
19
+ }), s = r(() => {
20
+ const e = o.migrations["recommendation-block"] > 0, m = o.migrations["items-block"] > 0;
21
+ if (e && m) {
22
+ const l = t("email-recommendation.recommendation"), p = t("email-items.items");
23
+ return `${l} ${t("campaign-builder.or")} ${p}`;
24
+ }
25
+ return t(m ? "email-items.items" : "email-recommendation.recommendation");
26
+ }), n = "email-editor.migration-confirm-message", c = r(() => {
27
+ const e = t(n).split("{blockNames}");
28
+ return {
29
+ before: e[0] || "",
30
+ after: e[1] || ""
31
+ };
32
+ });
33
+ return { __sfc: !0, emit: i, templateStore: o, trans: t, footerButtonOptions: a, blockNames: s, MESSAGE_KEY: n, textParts: c, WpModal: u };
34
+ }
35
+ });
36
+ export {
37
+ M as default
38
+ };
@@ -1,77 +1,84 @@
1
- import { useConfig as D } from "./useConfig.js";
2
- import { TemplateTypes as H } from "../enums/defaults.js";
3
- import { DISPLAY_CONDITIONS_REGEX as P, DISPLAY_CONDITIONS_EXCEPTIONS_REGEX as R, CampaignCouldNotBeSavedKey as _, CanNotMakeAnyChangesForRunningKey as G } from "../enums/html-validator.js";
4
- import { ToasterTypeOptions as l } from "../enums/toaster.js";
5
- import { itemsBlockDynamicVariables as $ } from "../extensions/Blocks/Items/enums/productEnums.js";
6
- import { useRecommendationStore as j } from "../stores/recommendation.js";
7
- import { base64EncodeWithSpecialChars as q } from "../utils/base64.js";
8
- import { useHttp as M } from "./useHttp.js";
9
- import { useToaster as X } from "./useToaster.js";
1
+ import { useConfig as L } from "./useConfig.js";
2
+ import { TemplateTypes as V } from "../enums/defaults.js";
3
+ import { DISPLAY_CONDITIONS_REGEX as _, DISPLAY_CONDITIONS_EXCEPTIONS_REGEX as H, CampaignCouldNotBeSavedKey as P, CanNotMakeAnyChangesForRunningKey as G } from "../enums/html-validator.js";
4
+ import { ToasterTypeOptions as c } from "../enums/toaster.js";
5
+ import { itemsBlockDynamicVariables as M } from "../extensions/Blocks/Items/enums/productEnums.js";
6
+ import { useRecommendationStore as $ } from "../stores/recommendation.js";
7
+ import { base64EncodeWithSpecialChars as X } from "../utils/base64.js";
8
+ import { useHttp as j } from "./useHttp.js";
9
+ import { useToaster as q } from "./useToaster.js";
10
10
  import { useTranslations as z } from "./useTranslations.js";
11
- const oe = () => {
12
- var d, f;
13
- const { showToaster: c } = X(), { post: h } = M(), { config: v } = D(), a = z(), m = j(), u = ((f = (d = v.value) == null ? void 0 : d.partner) == null ? void 0 : f.messageType) === H.transactional, C = async (e) => {
14
- const t = await h(
11
+ const K = /recommendation-id="(\d+)"/g;
12
+ function U(i) {
13
+ return [...i.matchAll(K)].map((u) => u[1]);
14
+ }
15
+ function Y(i, u) {
16
+ return u.some((d) => i.startsWith(`${d}_`));
17
+ }
18
+ const ce = () => {
19
+ var y, h;
20
+ const { showToaster: i } = q(), { post: u } = j(), { config: d } = L(), r = z(), g = $(), p = ((h = (y = d.value) == null ? void 0 : y.partner) == null ? void 0 : h.messageType) === V.transactional, w = async (e) => {
21
+ const t = await u(
15
22
  "/newsletter/template-library/check-template-html-body",
16
- { html: q(e) }
17
- ), { status: n, message: r } = t.data;
18
- return n || c({
19
- type: l.Alert,
20
- message: n === void 0 ? r : a("newsletter.invalid-url-link-for-toaster")
21
- }), a(_), r === a(G) && c({
22
- type: l.Alert,
23
- message: a("newsletter.already-in-progress")
23
+ { html: X(e) }
24
+ ), { status: n, message: l } = t.data;
25
+ return n || i({
26
+ type: c.Alert,
27
+ message: n === void 0 ? l : r("newsletter.invalid-url-link-for-toaster")
28
+ }), r(P), l === r(G) && i({
29
+ type: c.Alert,
30
+ message: r("newsletter.already-in-progress")
24
31
  }), n;
25
- }, w = (e) => !["if", "endif", "else", "elif", "now"].includes(e.toLowerCase()), S = (e) => ["if", "endif"].includes(e.toLowerCase()), b = (e, s) => {
32
+ }, b = (e) => !["if", "endif", "else", "elif", "now"].includes(e.toLowerCase()), S = (e) => ["if", "endif"].includes(e.toLowerCase()), E = (e, s) => {
26
33
  const t = e.match(/({%(.*?)%})/g);
27
34
  let n = !0;
28
- return t !== null && !u && t.forEach((r) => {
29
- const i = r.slice(2, -2).trim().match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);
30
- if (i && i.length > 0) {
31
- const [o] = i;
32
- w(o) && !s.includes(o) && (c({
33
- type: l.Warning,
34
- message: a("custom-fields.invalid-custom-fields")
35
+ return t !== null && !p && t.forEach((l) => {
36
+ const o = l.slice(2, -2).trim().match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);
37
+ if (o && o.length > 0) {
38
+ const [a] = o;
39
+ b(a) && !s.includes(a) && (i({
40
+ type: c.Warning,
41
+ message: r("custom-fields.invalid-custom-fields")
35
42
  }), n = !1);
36
43
  }
37
44
  }), n;
38
- }, E = async (e, s, t) => {
39
- const n = t ? await C(e) : !0;
40
- return b(e, s) && n;
41
- }, A = (e) => e.length > 0 ? !0 : (c({
42
- type: l.Warning,
43
- message: a("newsletter.html-content-is-empty")
44
- }), !1), x = (e) => {
45
+ }, A = async (e, s, t) => {
46
+ const n = t ? await w(e) : !0;
47
+ return E(e, s) && n;
48
+ }, I = (e) => e.length > 0 ? !0 : (i({
49
+ type: c.Warning,
50
+ message: r("newsletter.html-content-is-empty")
51
+ }), !1), k = (e) => {
45
52
  const s = (e.match(/{/gm) || []).length, t = (e.match(/}/gm) || []).length;
46
- return s > t && c({
47
- type: l.Warning,
48
- message: a("custom-fields.missing-closing-braces")
49
- }), s < t && c({
50
- type: l.Warning,
51
- message: a("custom-fields.missing-opening-braces")
53
+ return s > t && i({
54
+ type: c.Warning,
55
+ message: r("custom-fields.missing-closing-braces")
56
+ }), s < t && i({
57
+ type: c.Warning,
58
+ message: r("custom-fields.missing-opening-braces")
52
59
  }), s === t;
53
- }, k = (e) => {
60
+ }, x = (e) => {
54
61
  const s = e.match(/{{\s*(\w+\s+((\w+\|\w+)|(\w+)))\s*}}/gm) === null;
55
- return s || c({
56
- type: l.Warning,
57
- message: a("custom-fields.invalid-custom-fields")
62
+ return s || i({
63
+ type: c.Warning,
64
+ message: r("custom-fields.invalid-custom-fields")
58
65
  }), s;
59
66
  }, T = (e, s) => {
60
67
  const t = e.match(/{{([a-zA-Z0-9_\s]*)}}/gm);
61
- if (t && !u) {
62
- const n = new Set(s.map((i) => i.toLowerCase())), r = [];
63
- if (t.forEach((i) => {
64
- const o = i.slice(2, -2).trim().toLowerCase();
65
- (!n.has(o) || o === "") && r.push(o);
66
- }), r.length > 0) {
67
- const i = `
68
+ if (t && !p) {
69
+ const n = new Set(s.map((a) => a.toLowerCase())), l = U(e), o = [];
70
+ if (t.forEach((a) => {
71
+ const m = a.slice(2, -2).trim().toLowerCase();
72
+ (!n.has(m) || m === "") && !Y(m, l) && o.push(m);
73
+ }), o.length > 0) {
74
+ const a = `
68
75
  <ul>
69
- ${r.map((o) => `<li>${o}</li>`).join("")}
76
+ ${o.map((m) => `<li>${m}</li>`).join("")}
70
77
  </ul>
71
78
  `;
72
- return c({
73
- type: l.Alert,
74
- message: a("custom-fields.invalid-custom-fields") + i
79
+ return i({
80
+ type: c.Alert,
81
+ message: r("custom-fields.invalid-custom-fields") + a
75
82
  }), !1;
76
83
  }
77
84
  }
@@ -79,71 +86,74 @@ const oe = () => {
79
86
  }, F = (e) => {
80
87
  const s = e.match(/{%(.*?)%}/g), t = [];
81
88
  let n = !0;
82
- if (s && s.forEach((r) => {
83
- const i = r.match(P), o = r.match(R), V = (i == null ? void 0 : i.join("")) || "";
84
- (!i || r !== V) && !o && (c({
85
- type: l.Alert,
86
- message: a("newsletter.display-conditions-invalid-syntax")
87
- }), n = !1), i && i.forEach((g) => {
88
- g.trim() === "=" && (c({
89
- type: l.Alert,
90
- message: a("custom-conditions.wrong-equality-operators")
89
+ if (s && s.forEach((l) => {
90
+ const o = l.match(_), a = l.match(H), m = (o == null ? void 0 : o.join("")) || "";
91
+ (!o || l !== m) && !a && (i({
92
+ type: c.Alert,
93
+ message: r("newsletter.display-conditions-invalid-syntax")
94
+ }), n = !1), o && o.forEach((f) => {
95
+ f.trim() === "=" && (i({
96
+ type: c.Alert,
97
+ message: r("custom-conditions.wrong-equality-operators")
91
98
  }), n = !1);
92
- const p = g.match(/^[a-zA-Z]*$/g);
93
- p && p.forEach((y) => {
94
- S(y) && t.push(y);
99
+ const v = f.match(/^[a-zA-Z]*$/g);
100
+ v && v.forEach((C) => {
101
+ S(C) && t.push(C);
95
102
  });
96
103
  });
97
104
  }), t.length) {
98
- const r = t.filter((o) => o === "if"), i = t.filter((o) => o === "endif");
99
- r.length !== i.length && (c({
100
- type: l.Alert,
101
- message: a("custom-conditions.missing-if-endif-tag")
105
+ const l = t.filter((a) => a === "if"), o = t.filter((a) => a === "endif");
106
+ l.length !== o.length && (i({
107
+ type: c.Alert,
108
+ message: r("custom-conditions.missing-if-endif-tag")
102
109
  }), n = !1);
103
110
  }
104
111
  return n;
105
- }, I = (e) => {
112
+ }, W = (e) => {
106
113
  const s = (e.match(/{% /gm) || []).length, t = (e.match(/ %}/gm) || []).length, n = s === t;
107
- return n || c({
108
- type: l.Warning,
109
- message: a("custom-conditions.no-space-after-braces")
114
+ return n || i({
115
+ type: c.Warning,
116
+ message: r("custom-conditions.no-space-after-braces")
110
117
  }), n;
111
- }, W = (e) => (e.match(/({%(.*?)%})/g) || []).filter((t) => t.includes("if")).map((t) => (t.match(/{{.*}}/gm) || []).length).reduce((t, n) => t + n, 0) > 0 ? (c({
112
- type: l.Warning,
113
- message: a("custom-conditions.no-braces-inside-if-tag")
114
- }), !1) : !0, L = () => m.recommendationConfigs && Object.values(m.recommendationConfigs).find((s) => s.filters.find((t) => t.value === "")) !== void 0 ? (c({
115
- type: l.Alert,
116
- message: a("newsletter.fill-all-necessary-fields")
117
- }), !1) : !0, N = (e) => {
118
+ }, N = (e) => (e.match(/({%(.*?)%})/g) || []).filter((t) => t.includes("if")).map((t) => (t.match(/{{.*}}/gm) || []).length).reduce((t, n) => t + n, 0) > 0 ? (i({
119
+ type: c.Warning,
120
+ message: r("custom-conditions.no-braces-inside-if-tag")
121
+ }), !1) : !0, O = () => g.recommendationConfigs && Object.values(g.recommendationConfigs).find((s) => s.filters.find((t) => t.value === "")) !== void 0 ? (i({
122
+ type: c.Alert,
123
+ message: r("newsletter.fill-all-necessary-fields")
124
+ }), !1) : !0, B = (e) => {
118
125
  const s = /src="[^"]*\.(svg|pst)"/gm;
119
- return e.match(s) === null ? !0 : (c({
120
- type: l.Alert,
121
- message: a("newsletter.invalid-image-type")
126
+ return e.match(s) === null ? !0 : (i({
127
+ type: c.Alert,
128
+ message: r("newsletter.invalid-image-type")
122
129
  }), !1);
123
- }, O = (e) => {
130
+ }, R = (e) => {
124
131
  const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".checkbox-block-v2");
125
- return Array.from(n).find((i) => {
126
- var o;
127
- return !((o = i.id) != null && o.trim());
128
- }) ? (c({
129
- type: l.Alert,
130
- message: a("unsubscribe-templates.select-checkbox-groups")
132
+ return Array.from(n).find((o) => {
133
+ var a;
134
+ return !((a = o.id) != null && a.trim());
135
+ }) ? (i({
136
+ type: c.Alert,
137
+ message: r("unsubscribe-templates.select-checkbox-groups")
131
138
  }), !1) : !0;
132
- }, B = (e) => {
139
+ }, D = (e) => {
133
140
  const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".radio-button-v2");
134
- return Array.from(n).find((i) => {
135
- var o;
136
- return !((o = i.id) != null && o.trim());
137
- }) ? (c({
138
- type: l.Alert,
139
- message: a("unsubscribe-templates.select-radio-button-groups")
141
+ return Array.from(n).find((o) => {
142
+ var a;
143
+ return !((a = o.id) != null && a.trim());
144
+ }) ? (i({
145
+ type: c.Alert,
146
+ message: r("unsubscribe-templates.select-radio-button-groups")
140
147
  }), !1) : !0;
141
148
  };
142
149
  return { validateHtml: async (e, s, t = !1) => {
143
- const n = [...s.map((i) => i.value), ...$];
144
- return await E(e, n, t) && A(e) && x(e) && k(e) && T(e, n) && F(e) && I(e) && W(e) && L() && N(e) && O(e) && B(e);
150
+ const n = [
151
+ ...s.map((o) => o.value),
152
+ ...M
153
+ ];
154
+ return await A(e, n, t) && I(e) && k(e) && x(e) && T(e, n) && F(e) && W(e) && N(e) && O() && B(e) && R(e) && D(e);
145
155
  } };
146
156
  };
147
157
  export {
148
- oe as useHtmlValidator
158
+ ce as useHtmlValidator
149
159
  };
@@ -1,27 +1,60 @@
1
- import { MinDeviceViewport as r, DefaultPadding as c } from "../enums/recommendation.js";
2
- const m = () => ({
1
+ import { RecommendationFeedSourceMaps as g, URLS as p } from "../enums/extensions/recommendationBlock.js";
2
+ import { MinDeviceViewport as R, DefaultPadding as b } from "../enums/recommendation.js";
3
+ import { useRecommendationExtensionStore as l } from "../extensions/Blocks/Recommendation/store/recommendation.js";
4
+ import { generateCompleteFilterQuery as x } from "../extensions/Blocks/Recommendation/utils/filterUtil.js";
5
+ import { useConfigStore as C } from "../stores/config.js";
6
+ const N = () => ({
3
7
  calculateCardWidth: ({
4
- mobileLeftPadding: e,
5
- mobileRightPadding: a,
6
- cardsInRow: n,
7
- unresponsive: i
8
+ mobileLeftPadding: i,
9
+ mobileRightPadding: n,
10
+ cardsInRow: o,
11
+ unresponsive: a
8
12
  }) => {
9
- const t = i ? n : 1, o = e + a + (t - 1) * c;
10
- return (r - o) / t;
13
+ const r = a ? o : 1, e = i + n + (r - 1) * b;
14
+ return (R - e) / r;
11
15
  },
12
- getRecommendationCampaignData: (e) => (console.debug(e), {
13
- textTrimming: !1,
14
- orientation: "vertical",
15
- mobileLeftPadding: 0,
16
- mobileRightPadding: 0,
17
- cardsInRow: 2,
18
- unresponsive: !1,
19
- priceBeforeTextValue: "",
20
- priceAfterTextValue: "",
21
- discountBeforeTextValue: "",
22
- discountAfterTextValue: ""
23
- })
16
+ getRecommendationCampaignData: (i) => {
17
+ const n = l(), o = Number(i), a = n.blockStates[o];
18
+ if (!a)
19
+ return {
20
+ textTrimming: !1,
21
+ orientation: "vertical",
22
+ mobileLeftPadding: 0,
23
+ mobileRightPadding: 0,
24
+ cardsInRow: 2,
25
+ unresponsive: !1,
26
+ priceBeforeTextValue: "",
27
+ priceAfterTextValue: "",
28
+ discountBeforeTextValue: "",
29
+ discountAfterTextValue: ""
30
+ };
31
+ const { recommendationConfigs: r } = a, e = r.orientation === "grid" ? "vertical" : "horizontal";
32
+ return {
33
+ textTrimming: r.textTrimming,
34
+ orientation: e,
35
+ mobileLeftPadding: 0,
36
+ mobileRightPadding: 0,
37
+ cardsInRow: r.cardsInRow,
38
+ unresponsive: r.unresponsive,
39
+ priceBeforeTextValue: "",
40
+ priceAfterTextValue: "",
41
+ discountBeforeTextValue: "",
42
+ discountAfterTextValue: ""
43
+ };
44
+ },
45
+ buildCampaignUrl: (i) => {
46
+ var d;
47
+ const n = l(), o = C(), a = Number(i), r = n.blockStates[a];
48
+ if (!r)
49
+ return "";
50
+ const { recommendationConfigs: e } = r, u = ((d = g.find((s) => s.key === e.strategy)) == null ? void 0 : d.path) || "", t = new URLSearchParams();
51
+ t.set("locale", e.language), t.set("currency", e.currencySettings.value), t.set("partnerName", o.partnerName), t.set("size", e.size), t.set("details", "true"), t.set("campaignId", o.variationId), e.strategy === "manualMerchandising" ? t.set("productId", e.productIds.join(",")) : e.strategy === "similarViewed" && t.set("productId", "{itemId}");
52
+ const f = e.filters.filter((s) => s.isValid), c = x(f);
53
+ c && t.set("filter", c), e.shuffleProducts && t.set("shuffle", "true");
54
+ const m = `${p.RECOMMENDATION_API_URL}/v2/${u}?${t.toString()}`;
55
+ return n.recommendationCampaignUrls[i] = m, m;
56
+ }
24
57
  });
25
58
  export {
26
- m as useRecommendation
59
+ N as useRecommendation
27
60
  };