@useinsider/guido 2.1.0-beta.bc18abc → 2.1.0-beta.bcfc012
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/README.md +36 -0
- package/dist/@types/config/schemas.js +70 -65
- package/dist/components/Guido.vue.js +1 -1
- package/dist/components/Guido.vue2.js +69 -58
- package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
- package/dist/components/organisms/header/EditorActions.vue.js +12 -10
- package/dist/components/organisms/header/EditorActions.vue2.js +41 -31
- package/dist/components/organisms/header/HeaderWrapper.vue.js +9 -9
- package/dist/components/organisms/header/MigrationConfirmModal.vue.js +21 -0
- package/dist/components/organisms/header/MigrationConfirmModal.vue2.js +38 -0
- package/dist/composables/useActionsApi.js +15 -13
- package/dist/composables/useBlocksConfig.js +26 -16
- package/dist/composables/useHtmlValidator.js +114 -104
- package/dist/composables/useRecommendation.js +54 -21
- package/dist/composables/useStripo.js +25 -23
- package/dist/composables/useVersionHistoryApi.js +1 -1
- package/dist/config/compiler/recommendationCompilerRules.js +45 -39
- package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
- package/dist/config/i18n/en/index.js +11 -0
- package/dist/config/i18n/en/labels.json.js +12 -0
- package/dist/config/i18n/en/toasters.json.js +56 -0
- package/dist/config/i18n/en/tooltips.json.js +82 -0
- package/dist/config/i18n/index.js +7 -0
- package/dist/config/migrator/itemsBlockMigrator.js +142 -119
- package/dist/config/migrator/recommendationMigrator.js +42 -40
- package/dist/enums/defaults.js +8 -4
- package/dist/enums/extensions/recommendationBlock.js +1 -1
- package/dist/enums/recommendation.js +16 -15
- package/dist/extensions/Blocks/Items/block.js +46 -35
- package/dist/extensions/Blocks/Items/controls/button/link.js +19 -31
- package/dist/extensions/Blocks/Items/controls/cardComposition.js +124 -85
- package/dist/extensions/Blocks/Items/controls/image/link.js +19 -31
- package/dist/extensions/Blocks/Items/controls/name/trimming.js +28 -40
- package/dist/extensions/Blocks/Items/controls/price/currencyLocation.js +35 -47
- package/dist/extensions/Blocks/Items/controls/price/currencySymbol.js +49 -54
- package/dist/extensions/Blocks/Items/controls/price/formattedPrice.js +42 -51
- package/dist/extensions/Blocks/Items/controls/price/hideDiscount.js +23 -36
- package/dist/extensions/Blocks/Items/controls/price/priceOrientation.js +45 -57
- package/dist/extensions/Blocks/Items/controls/price/singlePrice.js +42 -60
- package/dist/extensions/Blocks/Items/controls/settingsControl.js +189 -196
- package/dist/extensions/Blocks/Items/enums/settingsEnums.js +0 -2
- package/dist/extensions/Blocks/Items/extension.js +8 -9
- package/dist/extensions/Blocks/Items/iconsRegistry.js +40 -5
- package/dist/extensions/Blocks/Items/items.css.js +48 -0
- package/dist/extensions/Blocks/Items/settingsPanel.js +10 -15
- package/dist/extensions/Blocks/Items/template.js +181 -175
- package/dist/extensions/Blocks/Items/utils/nodeConfigUtils.js +65 -65
- package/dist/extensions/Blocks/Recommendation/block.js +153 -9
- package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
- package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
- package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
- package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
- package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
- package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
- package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
- package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
- package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
- package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/index.js +250 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
- package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
- package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
- package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
- package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
- package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
- package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextAfterControl.js → omnibusDiscount/textAfter.js} +16 -14
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextBeforeControl.js → omnibusDiscount/textBefore.js} +16 -14
- package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextAfterControl.js → omnibusPrice/textAfter.js} +16 -14
- package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextBeforeControl.js → omnibusPrice/textBefore.js} +14 -12
- package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
- package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
- package/dist/extensions/Blocks/Recommendation/extension.js +40 -17
- package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +54 -3
- package/dist/extensions/Blocks/Recommendation/recommendation.css.js +61 -4
- package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
- package/dist/extensions/Blocks/Recommendation/settingsPanel.js +21 -10
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +254 -207
- package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
- package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
- package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
- package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
- package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
- package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
- package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
- package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
- package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +9 -9
- package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +26 -15
- package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
- package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
- package/dist/extensions/Blocks/common-control.js +101 -94
- package/dist/extensions/Blocks/controlFactories.js +125 -93
- package/dist/extensions/ModulesTabIcons/extension.js +17 -0
- package/dist/guido.css +1 -1
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +317 -193
- package/dist/services/recommendationApi.js +11 -8
- package/dist/services/stripoApi.js +20 -17
- package/dist/services/templateLibraryApi.js +16 -13
- package/dist/src/@types/config/schemas.d.ts +8 -0
- package/dist/src/components/Guido.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/EditorActions.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/HeaderWrapper.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/MigrationConfirmModal.vue.d.ts +5 -0
- package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
- package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
- package/dist/src/components/wrappers/WpModal.vue.d.ts +2 -2
- package/dist/src/composables/useConfig.d.ts +4 -0
- package/dist/src/composables/useRecommendation.d.ts +1 -0
- package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
- package/dist/src/config/i18n/en/index.d.ts +1 -0
- package/dist/src/config/i18n/index.d.ts +16 -0
- package/dist/src/enums/defaults.d.ts +4 -0
- package/dist/src/extensions/Blocks/Items/block.d.ts +1 -1
- package/dist/src/extensions/Blocks/Items/controls/button/link.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/cardComposition.d.ts +5 -5
- package/dist/src/extensions/Blocks/Items/controls/image/link.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/name/trimming.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/price/currencyLocation.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/price/currencySymbol.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/price/formattedPrice.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/price/hideDiscount.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/price/priceOrientation.d.ts +0 -1
- package/dist/src/extensions/Blocks/Items/controls/price/singlePrice.d.ts +0 -5
- package/dist/src/extensions/Blocks/Items/controls/settingsControl.d.ts +10 -12
- package/dist/src/extensions/Blocks/Items/utils/nodeConfigUtils.d.ts +2 -1
- package/dist/src/extensions/Blocks/Recommendation/block.d.ts +68 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
- package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +0 -24
- package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
- package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
- package/dist/src/extensions/Blocks/Recommendation/{cardCompositionControl.d.ts → controls/cardComposition/index.d.ts} +23 -3
- package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +21 -589
- package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +79 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
- package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
- package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
- package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +138 -468
- package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
- package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
- package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
- package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
- package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
- package/dist/src/extensions/Blocks/common-control.d.ts +9 -5
- package/dist/src/extensions/ModulesTabIcons/extension.d.ts +2 -0
- package/dist/src/stores/config.d.ts +36 -0
- package/dist/src/stores/template.d.ts +3 -0
- package/dist/static/styles/components/notification.css.js +19 -0
- package/dist/static/styles/components/tools.css.js +6 -2
- package/dist/static/styles/components/version-history.css.js +10 -2
- package/dist/static/styles/components/wide-panel.css.js +18 -2
- package/dist/static/styles/customEditorStyle.css.js +35 -11
- package/dist/static/styles/variables.css.js +2 -0
- package/dist/static/templates/empty/index.html.js +74 -0
- package/dist/static/templates/empty/style.css.js +779 -0
- package/dist/stores/template.js +9 -0
- package/dist/utils/pairProductVariables.js +57 -56
- package/dist/utils/templatePreparation.js +15 -14
- package/package.json +1 -1
- package/dist/extensions/Blocks/Items/store/items-block.js +0 -79
- package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -187
- package/dist/extensions/Blocks/Recommendation/constants.js +0 -13
- package/dist/extensions/Blocks/Recommendation/control.js +0 -336
- package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +0 -68
- package/dist/extensions/Blocks/Recommendation/controls/index.js +0 -245
- package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +0 -74
- package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +0 -188
- package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -181
- package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -189
- package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -209
- package/dist/src/extensions/Blocks/Items/store/items-block.d.ts +0 -45
- package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -38
- package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +0 -16
- package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
- package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -52
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
1
|
+
var B = Object.defineProperty;
|
|
2
|
+
var U = (r, t, o) => t in r ? B(r, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) : r[t] = o;
|
|
3
|
+
var M = (r, t, o) => U(r, typeof t != "symbol" ? t + "" : t, o);
|
|
4
|
+
import { BLOCK_ID as v } from "../../extensions/Blocks/Items/block.js";
|
|
5
|
+
import { productPairs as K } from "../../extensions/Blocks/Items/enums/productEnums.js";
|
|
6
|
+
import { ItemInCartOptions as E, DefaultConfigValues as g, SETTINGS_ENUMS as s } from "../../extensions/Blocks/Items/enums/settingsEnums.js";
|
|
7
|
+
import { getDefaultTemplate as w } from "../../extensions/Blocks/Items/template.js";
|
|
8
|
+
import { useTemplateStore as F } from "../../stores/template.js";
|
|
9
|
+
const O = {
|
|
8
10
|
img: {
|
|
9
11
|
pairsKey: "imageSrc",
|
|
10
12
|
defaultKey: "DEFAULT",
|
|
@@ -71,57 +73,57 @@ const w = {
|
|
|
71
73
|
isArray: !1
|
|
72
74
|
}
|
|
73
75
|
};
|
|
74
|
-
function
|
|
76
|
+
function q() {
|
|
75
77
|
return String(Date.now() + Math.floor(Math.random() * 1e3));
|
|
76
78
|
}
|
|
77
|
-
function
|
|
78
|
-
return
|
|
79
|
-
CartItems:
|
|
80
|
-
BrowsedItems:
|
|
81
|
-
PurchasedItems:
|
|
82
|
-
CART_ITEMS:
|
|
83
|
-
BROWSED_ITEMS:
|
|
84
|
-
PURCHASED_ITEMS:
|
|
85
|
-
}[
|
|
79
|
+
function $(r) {
|
|
80
|
+
return r ? {
|
|
81
|
+
CartItems: s.ITEMS_TYPE.CART_ITEMS,
|
|
82
|
+
BrowsedItems: s.ITEMS_TYPE.BROWSED_ITEMS,
|
|
83
|
+
PurchasedItems: s.ITEMS_TYPE.PURCHASED_ITEMS,
|
|
84
|
+
CART_ITEMS: s.ITEMS_TYPE.CART_ITEMS,
|
|
85
|
+
BROWSED_ITEMS: s.ITEMS_TYPE.BROWSED_ITEMS,
|
|
86
|
+
PURCHASED_ITEMS: s.ITEMS_TYPE.PURCHASED_ITEMS
|
|
87
|
+
}[r] || s.ITEMS_TYPE.CART_ITEMS : s.ITEMS_TYPE.CART_ITEMS;
|
|
86
88
|
}
|
|
87
|
-
function
|
|
88
|
-
const t = (
|
|
89
|
-
let
|
|
90
|
-
if (
|
|
91
|
-
const
|
|
92
|
-
|
|
89
|
+
function R(r) {
|
|
90
|
+
const t = (i, e) => i == null ? e : i === "1" || i === "true", o = (i, e) => i || e, c = r["data-type"] || r["data-source"], n = $(c);
|
|
91
|
+
let a = r["data-cart_items_select_control_value"] || g.cartItemsSelectControlValue;
|
|
92
|
+
if (a && !a.includes("{{") && /^\d+$/.test(a)) {
|
|
93
|
+
const i = parseInt(a) - 1, e = E[n];
|
|
94
|
+
e && e[i] && (a = e[i].value);
|
|
93
95
|
}
|
|
94
96
|
return {
|
|
95
97
|
initialized: !0,
|
|
96
|
-
blockInstanceId: r
|
|
98
|
+
blockInstanceId: o(r["data-block-instance-id"], q()),
|
|
97
99
|
source: n,
|
|
98
100
|
type: n,
|
|
99
|
-
itemsSelectValue:
|
|
100
|
-
orientation:
|
|
101
|
-
nameTrimming: t(
|
|
102
|
-
priceHideDiscount: t(
|
|
103
|
-
priceFormatted: t(
|
|
104
|
-
priceSinglePrice: t(
|
|
105
|
-
priceCurrencySymbol:
|
|
106
|
-
|
|
101
|
+
itemsSelectValue: a,
|
|
102
|
+
orientation: r["data-card_orientation_control_value"] || s.ORIENTATION.VERTICAL,
|
|
103
|
+
nameTrimming: t(r["data-product_name_control_trim"], !0),
|
|
104
|
+
priceHideDiscount: t(r["data-product_price_control_nodup"], !0),
|
|
105
|
+
priceFormatted: t(r["data-product_price_control_formated"], !0),
|
|
106
|
+
priceSinglePrice: t(r["data-product_price_control_single_price"], !1),
|
|
107
|
+
priceCurrencySymbol: o(
|
|
108
|
+
r["data-product_price_control_currency_symbol"],
|
|
107
109
|
g.productPriceCurrencySymbolControlValue
|
|
108
110
|
),
|
|
109
|
-
priceCurrencyLocation:
|
|
110
|
-
|
|
111
|
+
priceCurrencyLocation: o(
|
|
112
|
+
r["data-product_price_currency_location"],
|
|
111
113
|
g.productPriceCurrencyLocationControlValue
|
|
112
114
|
),
|
|
113
|
-
priceOrientation:
|
|
114
|
-
quantityControlEnabled: t(
|
|
115
|
-
buttonLink: r
|
|
116
|
-
imageLink: r
|
|
117
|
-
buttonLabel: r
|
|
118
|
-
buttonFullWidth: t(
|
|
119
|
-
imageVisible: t(
|
|
120
|
-
nameVisible: t(
|
|
121
|
-
quantityVisible: t(
|
|
122
|
-
priceVisible: t(
|
|
123
|
-
originalPriceVisible: t(
|
|
124
|
-
buttonVisible: t(
|
|
115
|
+
priceOrientation: r["data-product_original_price_control_orientation"] || "horizontal",
|
|
116
|
+
quantityControlEnabled: t(r["data-product_quantity_control_enabled"], !0),
|
|
117
|
+
buttonLink: o(r["data-product_button_link"], g.productButtonLinkControlValue),
|
|
118
|
+
imageLink: o(r["data-product_image_link"], g.productImageLinkControlValue),
|
|
119
|
+
buttonLabel: o(r["data-product_button_control_label"], "Buy"),
|
|
120
|
+
buttonFullWidth: t(r["data-product_button_control_atw"], !0),
|
|
121
|
+
imageVisible: t(r["data-product_image_control_enabled"], !0),
|
|
122
|
+
nameVisible: t(r["data-product_name_control_enabled"], !0),
|
|
123
|
+
quantityVisible: t(r["data-product_quantity_control_enabled"], !0),
|
|
124
|
+
priceVisible: t(r["data-product_price_control_enabled"], !0),
|
|
125
|
+
originalPriceVisible: t(r["data-product_original_price_control_enabled"], !0),
|
|
126
|
+
buttonVisible: t(r["data-product_button_control_enabled"], !0)
|
|
125
127
|
};
|
|
126
128
|
}
|
|
127
129
|
const x = {
|
|
@@ -129,20 +131,36 @@ const x = {
|
|
|
129
131
|
browsed_item: "BROWSED_ITEMS",
|
|
130
132
|
purchased_item: "PURCHASED_ITEMS"
|
|
131
133
|
};
|
|
132
|
-
|
|
134
|
+
function V(r, t) {
|
|
135
|
+
const o = {
|
|
136
|
+
CART_ITEMS: `{{Abandoned Cart Item (${t}) Image}}`,
|
|
137
|
+
BROWSED_ITEMS: `{{Browsed Item (${t}) Image}}`,
|
|
138
|
+
PURCHASED_ITEMS: `{{Purchased Item (${t}) Image}}`
|
|
139
|
+
};
|
|
140
|
+
return o[r] || o.CART_ITEMS;
|
|
141
|
+
}
|
|
142
|
+
function N(r, t) {
|
|
143
|
+
const o = {
|
|
144
|
+
CART_ITEMS: `{{Abandoned Cart Item (${t}) Url}}`,
|
|
145
|
+
BROWSED_ITEMS: `{{Browsed Item (${t}) Url}}`,
|
|
146
|
+
PURCHASED_ITEMS: `{{Purchased Item (${t}) Url}}`
|
|
147
|
+
};
|
|
148
|
+
return o[r] || o.CART_ITEMS;
|
|
149
|
+
}
|
|
150
|
+
class z {
|
|
133
151
|
constructor() {
|
|
134
|
-
|
|
152
|
+
M(this, "parser");
|
|
135
153
|
this.parser = new DOMParser();
|
|
136
154
|
}
|
|
137
155
|
migrate(t) {
|
|
138
156
|
try {
|
|
139
|
-
let
|
|
140
|
-
|
|
141
|
-
const c = this.parser.parseFromString(
|
|
157
|
+
let o = this.removeJinjaConditionals(t);
|
|
158
|
+
o = this.replaceTemplateVariables(o);
|
|
159
|
+
const c = this.parser.parseFromString(o, "text/html"), n = c.querySelectorAll(
|
|
142
160
|
"td.esd-cart-items-block, td.esd-browsed-items-block, td.esd-purchased-items-block"
|
|
143
|
-
);
|
|
144
|
-
return n.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"),
|
|
145
|
-
const e = this.extractConfiguration(i),
|
|
161
|
+
), a = F();
|
|
162
|
+
return a.migrations[v] = n.length, n.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"), o) : (n.forEach((i) => {
|
|
163
|
+
const e = this.extractConfiguration(i), l = w({
|
|
146
164
|
orientation: e.orientation,
|
|
147
165
|
itemsType: e.itemsType,
|
|
148
166
|
itemId: e.itemId,
|
|
@@ -156,20 +174,20 @@ class N {
|
|
|
156
174
|
priceStyles: e.priceStyles,
|
|
157
175
|
originalPriceStyles: e.originalPriceStyles,
|
|
158
176
|
quantityStyles: e.quantityStyles,
|
|
159
|
-
nodeConfig:
|
|
160
|
-
}),
|
|
161
|
-
`<table><tbody><tr>${
|
|
177
|
+
nodeConfig: R(e.configBlockAttributes)
|
|
178
|
+
}), u = this.parser.parseFromString(
|
|
179
|
+
`<table><tbody><tr>${l}</tr></tbody></table>`,
|
|
162
180
|
"text/html"
|
|
163
181
|
).querySelector("td");
|
|
164
|
-
if (
|
|
165
|
-
const
|
|
166
|
-
|
|
167
|
-
const
|
|
168
|
-
|
|
182
|
+
if (u && i.parentNode) {
|
|
183
|
+
const p = R(e.configBlockAttributes);
|
|
184
|
+
u.setAttribute("esd-ext-config", JSON.stringify(p));
|
|
185
|
+
const d = u.querySelector("esd-config-block");
|
|
186
|
+
d && d.remove(), i.parentNode.replaceChild(u, i);
|
|
169
187
|
}
|
|
170
188
|
}), c.documentElement.outerHTML);
|
|
171
|
-
} catch (
|
|
172
|
-
return console.error("ItemsBlockMigrator failed:",
|
|
189
|
+
} catch (o) {
|
|
190
|
+
return console.error("ItemsBlockMigrator failed:", o), t;
|
|
173
191
|
}
|
|
174
192
|
}
|
|
175
193
|
/**
|
|
@@ -180,23 +198,23 @@ class N {
|
|
|
180
198
|
*/
|
|
181
199
|
extractConfiguration(t) {
|
|
182
200
|
var C, D, P;
|
|
183
|
-
const
|
|
184
|
-
let
|
|
185
|
-
|
|
186
|
-
const
|
|
201
|
+
const o = ((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", n = parseInt(c) - 1, a = E[o], i = ((P = a == null ? void 0 : a[n]) == null ? void 0 : P.value) || a[0].value, e = t.querySelector('[product-attr="price"]'), l = (e == null ? void 0 : e.getAttribute("data-currency_symbol")) || "USD", u = ((e == null ? void 0 : e.getAttribute("data-curency")) || "before") === "after" ? "1" : "0", p = (e == null ? void 0 : e.getAttribute("data-formated")) !== "false", d = this.extractConfigBlockAttributes(t, o, c), S = d["data-card_orientation_control_value"];
|
|
202
|
+
let b;
|
|
203
|
+
S ? b = S === "horizontal" ? "horizontal" : "vertical" : b = t.querySelector('[colspan="2"]') !== null ? "vertical" : "horizontal";
|
|
204
|
+
const y = t.querySelector('a[product-attr="name"]'), I = (y == null ? void 0 : y.getAttribute("style")) || void 0, f = t.querySelector('a[product-attr="button"]'), m = (f == null ? void 0 : f.getAttribute("style")) || void 0, h = (e == null ? void 0 : e.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;
|
|
187
205
|
return {
|
|
188
|
-
orientation:
|
|
189
|
-
itemsType:
|
|
190
|
-
itemId:
|
|
191
|
-
currencySymbol:
|
|
192
|
-
currencyLocation:
|
|
193
|
-
formattedPrice:
|
|
194
|
-
configBlockAttributes:
|
|
195
|
-
nameStyles:
|
|
206
|
+
orientation: b,
|
|
207
|
+
itemsType: o,
|
|
208
|
+
itemId: i,
|
|
209
|
+
currencySymbol: l,
|
|
210
|
+
currencyLocation: u,
|
|
211
|
+
formattedPrice: p,
|
|
212
|
+
configBlockAttributes: d,
|
|
213
|
+
nameStyles: I,
|
|
196
214
|
buttonStyles: m,
|
|
197
215
|
priceStyles: h,
|
|
198
216
|
originalPriceStyles: k,
|
|
199
|
-
quantityStyles:
|
|
217
|
+
quantityStyles: L
|
|
200
218
|
};
|
|
201
219
|
}
|
|
202
220
|
/**
|
|
@@ -204,28 +222,29 @@ class N {
|
|
|
204
222
|
* Returns a key-value mapping of all configuration attributes
|
|
205
223
|
* @param block - The block element containing the esd-config-block
|
|
206
224
|
* @param itemsType - The type of items (CART_ITEMS, BROWSED_ITEMS, PURCHASED_ITEMS)
|
|
225
|
+
* @param itemNumber - The item number (1-based index)
|
|
207
226
|
*/
|
|
208
|
-
extractConfigBlockAttributes(t,
|
|
209
|
-
const
|
|
210
|
-
if (!
|
|
227
|
+
extractConfigBlockAttributes(t, o, c) {
|
|
228
|
+
const n = t.querySelector("esd-config-block"), a = {};
|
|
229
|
+
if (!n)
|
|
211
230
|
return this.getDefaultConfigBlockAttributes();
|
|
212
|
-
if (Array.from(
|
|
213
|
-
e.name.startsWith("data-") && (
|
|
214
|
-
}),
|
|
215
|
-
const e =
|
|
231
|
+
if (Array.from(n.attributes).forEach((e) => {
|
|
232
|
+
e.name.startsWith("data-") && (a[e.name] = e.value);
|
|
233
|
+
}), a["data-cart_items_select_control_value"]) {
|
|
234
|
+
const e = a["data-cart_items_select_control_value"];
|
|
216
235
|
if (/^\d+$/.test(e)) {
|
|
217
|
-
const
|
|
218
|
-
|
|
236
|
+
const l = parseInt(e) - 1, _ = E[o];
|
|
237
|
+
_ && _[l] && (a["data-cart_items_select_control_value"] = _[l].value);
|
|
219
238
|
}
|
|
220
239
|
}
|
|
221
|
-
if (
|
|
222
|
-
const e =
|
|
223
|
-
let
|
|
224
|
-
e === "before" ?
|
|
240
|
+
if (a["data-product_price_control_curency"]) {
|
|
241
|
+
const e = a["data-product_price_control_curency"];
|
|
242
|
+
let l = e;
|
|
243
|
+
e === "before" ? l = "0" : e === "after" && (l = "1"), a["data-product_price_control_curency"] = l, a["data-product_price_currency_location"] = l;
|
|
225
244
|
}
|
|
226
|
-
(!
|
|
227
|
-
const i = { ...this.getDefaultConfigBlockAttributes(), ...
|
|
228
|
-
return i["data-type"] =
|
|
245
|
+
(!a["data-product_price_control_currency_symbol"] || a["data-product_price_control_currency_symbol"].trim() === "") && (a["data-product_price_control_currency_symbol"] = "USD");
|
|
246
|
+
const i = { ...this.getDefaultConfigBlockAttributes(), ...a };
|
|
247
|
+
return i["data-type"] = o, i["data-source"] = o, i["data-product_image_link"] = V(o, c), i["data-product_button_link"] = N(o, c), i;
|
|
229
248
|
}
|
|
230
249
|
/**
|
|
231
250
|
* Returns default esd-config-block attributes based on the old template structure
|
|
@@ -254,7 +273,7 @@ class N {
|
|
|
254
273
|
"data-product_price_control_color": "#060606",
|
|
255
274
|
"data-product_price_control_curency": "0",
|
|
256
275
|
"data-product_price_currency_location": "0",
|
|
257
|
-
"data-
|
|
276
|
+
"data-product_price_control_currency_symbol": "USD",
|
|
258
277
|
"data-product_price_control_formated": "1",
|
|
259
278
|
"data-product_price_control_nodup": "1",
|
|
260
279
|
"data-product_price_control_single_price": "false",
|
|
@@ -280,18 +299,22 @@ class N {
|
|
|
280
299
|
* - Cart Items: ins_apr_total_product_kind, ins_apr_price_N, ins_apr_originalprice_N
|
|
281
300
|
* - Browsed Items: browsed_item_total_product_kind, browsed_item_price_N, browsed_item_originalprice_N
|
|
282
301
|
* - Purchased Items: purchased_item_total_product_kind, purchased_item_price_N, purchased_item_originalprice_N
|
|
302
|
+
*
|
|
303
|
+
* IMPORTANT: Preserves the esd-custom-display-conditions attribute on <body> which
|
|
304
|
+
* contains display condition Jinja scripts that should NOT be removed.
|
|
283
305
|
*/
|
|
284
306
|
removeJinjaConditionals(t) {
|
|
285
|
-
|
|
307
|
+
const o = "__ESD_DISPLAY_CONDITIONS_PLACEHOLDER__", c = t.match(/esd-custom-display-conditions="[^"]*"/);
|
|
308
|
+
let n = c ? t.replace(c[0], o) : t;
|
|
309
|
+
return n = n.replace(
|
|
286
310
|
/\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_total_product_kind\s*(>|>)\s*\d+\s*%\}/g,
|
|
287
311
|
""
|
|
288
|
-
)
|
|
289
|
-
return r = r.replace(
|
|
312
|
+
), n = n.replace(
|
|
290
313
|
/\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_price_\d+\s*(!=|!=)\s*\1_originalprice_\d+\s*%\}/g,
|
|
291
314
|
""
|
|
292
|
-
),
|
|
315
|
+
), n = n.replace(/\{%\s*endif\s*%\}/g, ""), c && (n = n.replace(o, c[0])), n = n.replace(/\n\s*\n\s*\n/g, `
|
|
293
316
|
|
|
294
|
-
`),
|
|
317
|
+
`), n;
|
|
295
318
|
}
|
|
296
319
|
/**
|
|
297
320
|
* Replaces template variables with default values from productPairs
|
|
@@ -303,32 +326,32 @@ class N {
|
|
|
303
326
|
* - {{purchased_item_formattedprice_5}} → '1,490.49' (PURCHASED_ITEMS)
|
|
304
327
|
*/
|
|
305
328
|
replaceTemplateVariables(t) {
|
|
306
|
-
const { PAIRS_FOR_EXTENSION:
|
|
329
|
+
const { PAIRS_FOR_EXTENSION: o } = K;
|
|
307
330
|
return t.replace(/{{([^}]+)}}/g, (c, n) => {
|
|
308
|
-
const
|
|
309
|
-
if (!
|
|
331
|
+
const a = n.match(/^(ins_apr|browsed_item|purchased_item)_([a-z_]+)_(\d+)$/);
|
|
332
|
+
if (!a)
|
|
310
333
|
return c;
|
|
311
|
-
const [,
|
|
312
|
-
if (!
|
|
313
|
-
return console.warn(`Unknown variable prefix: ${
|
|
314
|
-
const
|
|
315
|
-
if (!
|
|
316
|
-
return console.warn(`Unknown variable suffix mapping for: ${
|
|
317
|
-
const { pairsKey:
|
|
318
|
-
if (!
|
|
319
|
-
return console.warn(`No data found for: ${
|
|
320
|
-
if (
|
|
321
|
-
const
|
|
322
|
-
return Array.isArray(m) && m[
|
|
334
|
+
const [, i, e, l] = a, _ = x[i];
|
|
335
|
+
if (!_)
|
|
336
|
+
return console.warn(`Unknown variable prefix: ${i}`), c;
|
|
337
|
+
const u = O[e];
|
|
338
|
+
if (!u)
|
|
339
|
+
return console.warn(`Unknown variable suffix mapping for: ${e}`), c;
|
|
340
|
+
const { pairsKey: p, defaultKey: d, isArray: S } = u, y = o[p][_];
|
|
341
|
+
if (!y)
|
|
342
|
+
return console.warn(`No data found for: ${p}.${_}`), c;
|
|
343
|
+
if (S) {
|
|
344
|
+
const f = parseInt(l) - 1, m = y[d];
|
|
345
|
+
return Array.isArray(m) && m[f] ? m[f] : (console.warn(`Array value not found: ${p}.${_}.${d}[${f}]`), c);
|
|
323
346
|
}
|
|
324
|
-
const
|
|
325
|
-
return
|
|
347
|
+
const I = y[d];
|
|
348
|
+
return I !== void 0 ? String(I) : (console.warn(`Default value not found: ${p}.${_}.${d}`), c);
|
|
326
349
|
});
|
|
327
350
|
}
|
|
328
351
|
}
|
|
329
|
-
function
|
|
330
|
-
return new
|
|
352
|
+
function Q(r) {
|
|
353
|
+
return new z().migrate(r);
|
|
331
354
|
}
|
|
332
355
|
export {
|
|
333
|
-
|
|
356
|
+
Q as migrateItemsBlock
|
|
334
357
|
};
|
|
@@ -1,24 +1,26 @@
|
|
|
1
1
|
var h = Object.defineProperty;
|
|
2
|
-
var T = (
|
|
3
|
-
var
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
|
|
2
|
+
var T = (d, e, t) => e in d ? h(d, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : d[e] = t;
|
|
3
|
+
var A = (d, e, t) => T(d, typeof e != "symbol" ? e + "" : e, t);
|
|
4
|
+
import { BLOCK_ID as S } from "../../extensions/Blocks/Recommendation/block.js";
|
|
5
|
+
import P, { prepareProductRows as q } from "../../extensions/Blocks/Recommendation/templates/grid/migration.js";
|
|
6
|
+
import { useTemplateStore as w } from "../../stores/template.js";
|
|
7
|
+
import { getDefaultProducts as B } from "../../extensions/Blocks/Recommendation/templates/utils.js";
|
|
8
|
+
class $ {
|
|
7
9
|
constructor() {
|
|
8
|
-
|
|
10
|
+
A(this, "parser");
|
|
9
11
|
this.parser = new DOMParser();
|
|
10
12
|
}
|
|
11
13
|
migrate(e) {
|
|
12
14
|
try {
|
|
13
15
|
const t = this.parser.parseFromString(e, "text/html"), s = t.querySelectorAll(
|
|
14
16
|
'td.ins-recommendation-v3-block-1, td.product-block[esd-handler-name*="EmailRecommendationV3"]'
|
|
15
|
-
);
|
|
16
|
-
return s.length === 0 ? e : (s.forEach((
|
|
17
|
-
const
|
|
18
|
-
`<table id="tempDoc"><tbody><tr>${
|
|
17
|
+
), o = w();
|
|
18
|
+
return o.migrations[S] = s.length, s.length === 0 ? e : (s.forEach((n) => {
|
|
19
|
+
const r = n.getAttribute("id"), i = this.extractBgColor(n), u = this.extractTitle(n), c = this.extractProductRows(n), l = P.replace("{-{-TITLE-}-}", u).replace("{-{-PRODUCT_ROWS-}-}", c), a = this.parser.parseFromString(
|
|
20
|
+
`<table id="tempDoc"><tbody><tr>${l}</tr></tbody></table>`,
|
|
19
21
|
"text/html"
|
|
20
22
|
).querySelector(".ins-recommendation-v3-block-v2");
|
|
21
|
-
a &&
|
|
23
|
+
a && n.parentNode && (r && a.setAttribute("id", r), i && a.setAttribute("bgcolor", i), n.parentNode.replaceChild(a, n));
|
|
22
24
|
}), t.documentElement.outerHTML);
|
|
23
25
|
} catch (t) {
|
|
24
26
|
return console.error("RecommendationMigrator failed:", t), e;
|
|
@@ -64,7 +66,7 @@ class w {
|
|
|
64
66
|
* @returns HTML string for the title block
|
|
65
67
|
*/
|
|
66
68
|
extractTitle(e) {
|
|
67
|
-
var
|
|
69
|
+
var g, a;
|
|
68
70
|
const t = e.querySelector(".ext-recommendation-title");
|
|
69
71
|
if (!t)
|
|
70
72
|
return this.buildTitleBlock({
|
|
@@ -76,7 +78,7 @@ class w {
|
|
|
76
78
|
});
|
|
77
79
|
const s = t.querySelector("p");
|
|
78
80
|
if (!s) {
|
|
79
|
-
const p = ((
|
|
81
|
+
const p = ((g = t.textContent) == null ? void 0 : g.trim()) || "You May Also Like!", b = t.getAttribute("align") || "center";
|
|
80
82
|
return this.buildTitleBlock({
|
|
81
83
|
text: p,
|
|
82
84
|
isBold: !0,
|
|
@@ -85,13 +87,13 @@ class w {
|
|
|
85
87
|
styles: "font-size: 28px; color: #333333;"
|
|
86
88
|
});
|
|
87
89
|
}
|
|
88
|
-
const o = ((
|
|
90
|
+
const o = ((a = s.textContent) == null ? void 0 : a.trim()) || "You May Also Like!", n = t.getAttribute("align") || s.getAttribute("align") || "center", r = s.getAttribute("style") || "", i = /font-weight\s*:\s*bold/i.test(r) || !!s.querySelector("b, strong"), u = /font-style\s*:\s*italic/i.test(r) || !!s.querySelector("i, em"), c = this.removeStyleProperties(r, ["font-weight", "font-style"]), l = this.convertInlineToBlock(c);
|
|
89
91
|
return this.buildTitleBlock({
|
|
90
92
|
text: o,
|
|
91
93
|
isBold: i,
|
|
92
94
|
isItalic: u,
|
|
93
|
-
align:
|
|
94
|
-
styles:
|
|
95
|
+
align: n,
|
|
96
|
+
styles: l
|
|
95
97
|
});
|
|
96
98
|
}
|
|
97
99
|
/**
|
|
@@ -103,8 +105,8 @@ class w {
|
|
|
103
105
|
const t = this.extractProductConfig(e);
|
|
104
106
|
if (!t)
|
|
105
107
|
return console.warn("[RecommendationMigrator] No product config found, using defaults"), this.generateProductRows(6, 3, {});
|
|
106
|
-
const { totalCount: s, productsPerRow: o } = t,
|
|
107
|
-
return this.generateProductRows(s, o,
|
|
108
|
+
const { totalCount: s, productsPerRow: o } = t, n = this.extractProductStyles(e);
|
|
109
|
+
return this.generateProductRows(s, o, n);
|
|
108
110
|
}
|
|
109
111
|
/**
|
|
110
112
|
* Extracts Stripo padding/margin utility classes from a class string
|
|
@@ -152,12 +154,12 @@ class w {
|
|
|
152
154
|
* @returns HTML string for product rows with applied styles
|
|
153
155
|
*/
|
|
154
156
|
generateProductRows(e, t, s) {
|
|
155
|
-
const o =
|
|
157
|
+
const o = B(), n = [];
|
|
156
158
|
for (let i = 0; i < e; i++) {
|
|
157
159
|
const u = o[i % o.length];
|
|
158
|
-
|
|
160
|
+
n.push({ ...u });
|
|
159
161
|
}
|
|
160
|
-
let r =
|
|
162
|
+
let r = q(n, t);
|
|
161
163
|
return r = this.applyExtractedStyles(r, s), r;
|
|
162
164
|
}
|
|
163
165
|
/**
|
|
@@ -171,30 +173,30 @@ class w {
|
|
|
171
173
|
return console.warn("[RecommendationMigrator] No product card found, using default styles"), t;
|
|
172
174
|
const o = this.extractCardBgColor(s);
|
|
173
175
|
o && (t.cardBgColor = o);
|
|
174
|
-
const
|
|
175
|
-
if (
|
|
176
|
-
const
|
|
177
|
-
t.imageWidth =
|
|
176
|
+
const n = s.querySelector(".ext-product-image");
|
|
177
|
+
if (n) {
|
|
178
|
+
const l = n.querySelector("img"), g = l == null ? void 0 : l.getAttribute("width"), a = n.getAttribute("style") || "", p = n.getAttribute("align") || "center", b = n.getAttribute("class") || "", m = this.extractStripoClasses(b);
|
|
179
|
+
t.imageWidth = g || "120", t.imageAlign = p, t.imageTdStyle = a, t.imageClasses = m;
|
|
178
180
|
}
|
|
179
181
|
const r = s.querySelector(".ext-product-name");
|
|
180
182
|
if (r) {
|
|
181
|
-
const
|
|
182
|
-
t.nameStyle =
|
|
183
|
+
const l = r.querySelector("p"), g = (l == null ? void 0 : l.getAttribute("style")) || "", a = r.getAttribute("align") || "center", p = r.getAttribute("style") || "", b = r.getAttribute("class") || "", m = this.extractStripoClasses(b);
|
|
184
|
+
t.nameStyle = g, t.nameAlign = a, t.nameTdStyle = p, t.nameClasses = m;
|
|
183
185
|
}
|
|
184
186
|
const i = s.querySelector(".ext-product-price");
|
|
185
187
|
if (i) {
|
|
186
|
-
const
|
|
187
|
-
t.priceStyle =
|
|
188
|
+
const l = i.querySelector("p"), g = (l == null ? void 0 : l.getAttribute("style")) || "", a = i.getAttribute("align") || "center", p = i.getAttribute("style") || "", b = i.getAttribute("class") || "", m = this.extractStripoClasses(b);
|
|
189
|
+
t.priceStyle = g, t.priceAlign = a, t.priceTdStyle = p, t.priceClasses = m;
|
|
188
190
|
}
|
|
189
191
|
const u = s.querySelector(".ext-product-original-price");
|
|
190
192
|
if (u) {
|
|
191
|
-
const
|
|
192
|
-
t.oldPriceStyle =
|
|
193
|
+
const l = u.querySelector("p"), g = (l == null ? void 0 : l.getAttribute("style")) || "", a = u.getAttribute("align") || "center", p = u.getAttribute("style") || "", b = u.getAttribute("class") || "", m = this.extractStripoClasses(b);
|
|
194
|
+
t.oldPriceStyle = g, t.oldPriceAlign = a, t.oldPriceTdStyle = p, t.oldPriceClasses = m;
|
|
193
195
|
}
|
|
194
196
|
const c = s.querySelector(".ext-product-button");
|
|
195
197
|
if (c) {
|
|
196
|
-
const
|
|
197
|
-
t.buttonBorderStyle =
|
|
198
|
+
const l = c.querySelector(".es-button-border"), g = c.querySelector("a.es-button"), a = (l == null ? void 0 : l.getAttribute("style")) || "", p = (g == null ? void 0 : g.getAttribute("style")) || "", b = c.getAttribute("align") || "center", m = c.getAttribute("style") || "", f = c.getAttribute("class") || "", C = this.extractStripoClasses(f), y = ((c == null ? void 0 : c.textContent) || "").trim();
|
|
199
|
+
t.buttonBorderStyle = a, t.buttonLinkStyle = p, t.buttonAlign = b, t.buttonTdStyle = m, t.buttonClasses = C, t.buttonText = y;
|
|
198
200
|
}
|
|
199
201
|
return t;
|
|
200
202
|
}
|
|
@@ -240,8 +242,8 @@ class w {
|
|
|
240
242
|
i && t.oldPriceStyle && i.setAttribute("style", t.oldPriceStyle);
|
|
241
243
|
}), (t.buttonBorderStyle || t.buttonLinkStyle || t.buttonAlign || t.buttonTdStyle || t.buttonClasses) && s.querySelectorAll(".product-button").forEach((r) => {
|
|
242
244
|
if (t.buttonAlign && r.setAttribute("align", t.buttonAlign), t.buttonTdStyle && r.setAttribute("style", t.buttonTdStyle), t.buttonClasses) {
|
|
243
|
-
const
|
|
244
|
-
r.setAttribute("class",
|
|
245
|
+
const l = `${r.getAttribute("class") || ""} ${t.buttonClasses}`.trim();
|
|
246
|
+
r.setAttribute("class", l);
|
|
245
247
|
}
|
|
246
248
|
const i = r.querySelector(".es-button-border");
|
|
247
249
|
i && t.buttonBorderStyle && i.setAttribute("style", t.buttonBorderStyle);
|
|
@@ -270,8 +272,8 @@ class w {
|
|
|
270
272
|
* Removes specified style properties from a style string
|
|
271
273
|
*/
|
|
272
274
|
removeStyleProperties(e, t) {
|
|
273
|
-
return e ? t.reduce((o,
|
|
274
|
-
const r = new RegExp(`${
|
|
275
|
+
return e ? t.reduce((o, n) => {
|
|
276
|
+
const r = new RegExp(`${n}\\s*:\\s*[^;]*;?`, "gi");
|
|
275
277
|
return o.replace(r, "");
|
|
276
278
|
}, e).replace(/;\s*;/g, ";").replace(/^;|;$/g, "").trim() : "";
|
|
277
279
|
}
|
|
@@ -285,9 +287,9 @@ class w {
|
|
|
285
287
|
return /display\s*:/i.test(t) || (t = t ? `${t}; display: block` : "display: block"), t.replace(/;\s*;/g, ";").replace(/^;|;$/g, "").replace(/"/g, "'").trim();
|
|
286
288
|
}
|
|
287
289
|
}
|
|
288
|
-
function
|
|
289
|
-
return new
|
|
290
|
+
function v(d) {
|
|
291
|
+
return new $().migrate(d);
|
|
290
292
|
}
|
|
291
293
|
export {
|
|
292
|
-
|
|
294
|
+
v as migrateRecommendation
|
|
293
295
|
};
|
package/dist/enums/defaults.js
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
-
const
|
|
1
|
+
const e = {
|
|
2
2
|
transactional: 2
|
|
3
|
-
}, o = 2,
|
|
3
|
+
}, o = 2, t = 13, s = {
|
|
4
|
+
SAVED_MODULES: "savedModules",
|
|
5
|
+
DEFAULT_MODULES: "defaultModules"
|
|
6
|
+
};
|
|
4
7
|
export {
|
|
5
8
|
o as EditorType,
|
|
6
|
-
|
|
7
|
-
|
|
9
|
+
t as MAX_DEFAULT_TEMPLATE_ID,
|
|
10
|
+
s as ModuleFolderDefaults,
|
|
11
|
+
e as TemplateTypes
|
|
8
12
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const s = {
|
|
2
|
-
RECOMMENDATION_API_URL: "
|
|
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" },
|