@useinsider/guido 2.1.0-beta.4bc6068 → 2.1.0-beta.4bfe3ad
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/FilterItem.vue.js +11 -13
- package/dist/components/organisms/extensions/recommendation/FilterItem.vue2.js +54 -23
- package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue.js +3 -3
- package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +37 -23
- package/dist/components/organisms/extensions/recommendation/Filters.vue.js +11 -11
- package/dist/components/organisms/extensions/recommendation/Filters.vue2.js +44 -34
- package/dist/composables/useBlocksConfig.js +26 -16
- package/dist/composables/useHtmlValidator.js +114 -104
- package/dist/composables/useRecommendation.js +54 -21
- package/dist/config/compiler/recommendationCompilerRules.js +45 -39
- package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
- package/dist/config/migrator/itemsBlockMigrator.js +101 -97
- package/dist/config/migrator/recommendationMigrator.js +2 -2
- 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/Recommendation/block.js +133 -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 +269 -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 +19 -3
- package/dist/extensions/Blocks/Recommendation/recommendation.css.js +13 -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 +301 -218
- 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 +12 -12
- 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/Recommendation/validation/filterSchema.js +29 -0
- 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/organisms/extensions/recommendation/FilterItem.vue.d.ts +1 -0
- package/dist/src/components/organisms/extensions/recommendation/Filters.vue.d.ts +15 -1
- package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
- 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/enums/defaults.d.ts +4 -0
- package/dist/src/extensions/Blocks/Recommendation/block.d.ts +67 -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 +84 -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 +154 -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/Recommendation/validation/filterSchema.d.ts +15 -0
- package/dist/src/extensions/ModulesTabIcons/extension.d.ts +2 -0
- package/dist/src/stores/config.d.ts +36 -0
- package/dist/static/styles/components/version-history.css.js +10 -2
- package/dist/static/styles/components/wide-panel.css.js +3 -2
- package/dist/static/styles/customEditorStyle.css.js +35 -11
- package/dist/static/templates/empty/index.html.js +74 -0
- package/dist/static/templates/empty/style.css.js +779 -0
- package/dist/utils/pairProductVariables.js +57 -56
- package/dist/utils/templatePreparation.js +15 -14
- package/package.json +1 -1
- 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/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,11 +1,11 @@
|
|
|
1
1
|
import o from "./FilterSelectionDrawer.vue2.js";
|
|
2
2
|
import n from "../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
-
var
|
|
3
|
+
var i = function() {
|
|
4
4
|
var e = this, r = e._self._c, t = e._self._setupProxy;
|
|
5
|
-
return r(t.WpDrawer, { attrs: { id: "recommendation-filter-drawer", "
|
|
5
|
+
return r(t.WpDrawer, { attrs: { id: "recommendation-filter-drawer", "description-status": "", "description-text": t.trans("email-editor.filter-description"), "footer-button-group-options": t.footerButtonGroupOptions, status: t.store.filterSelectionDrawerStatus, "title-text": t.trans("email-editor.add-filters") }, on: { cancelOrBackButtonEvent: t.cancelModal, onCloseEvent: t.cancelModal, primaryButtonEvent: t.applyFilter } }, [t.store.filterSelectionDrawerStatus ? r(t.Filters, { ref: "filtersRef", attrs: { submitted: t.submitted } }) : e._e()], 1);
|
|
6
6
|
}, s = [], a = /* @__PURE__ */ n(
|
|
7
7
|
o,
|
|
8
|
-
|
|
8
|
+
i,
|
|
9
9
|
s,
|
|
10
10
|
!1,
|
|
11
11
|
null,
|
|
@@ -1,37 +1,51 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
import { useTranslations as
|
|
4
|
-
import { useRecommendationExtensionStore as
|
|
5
|
-
import
|
|
6
|
-
|
|
1
|
+
import { defineComponent as d, ref as a, watch as y, computed as g, nextTick as v } from "vue";
|
|
2
|
+
import b from "../../../wrappers/WpDrawer.vue.js";
|
|
3
|
+
import { useTranslations as w } from "../../../../composables/useTranslations.js";
|
|
4
|
+
import { useRecommendationExtensionStore as F } from "../../../../extensions/Blocks/Recommendation/store/recommendation.js";
|
|
5
|
+
import { isFilterValid as _ } from "../../../../extensions/Blocks/Recommendation/validation/filterSchema.js";
|
|
6
|
+
import h from "./Filters.vue.js";
|
|
7
|
+
const I = /* @__PURE__ */ d({
|
|
7
8
|
__name: "FilterSelectionDrawer",
|
|
8
|
-
setup(
|
|
9
|
-
const
|
|
9
|
+
setup(S) {
|
|
10
|
+
const r = w(), e = F(), t = a(!1), o = a(!1), c = a();
|
|
11
|
+
y(() => e.filterSelectionDrawerStatus, (n) => {
|
|
12
|
+
n && (o.value = !1);
|
|
13
|
+
});
|
|
14
|
+
const f = g(() => ({
|
|
10
15
|
primaryButton: {
|
|
11
16
|
styling: "solid",
|
|
12
17
|
type: "primary",
|
|
13
|
-
labelText:
|
|
14
|
-
|
|
18
|
+
labelText: r(
|
|
19
|
+
t.value ? "unsubscription-preference.selecting-type" : "products.select-and-continue"
|
|
15
20
|
),
|
|
16
|
-
loadingStatus:
|
|
17
|
-
disabledStatus: !1
|
|
21
|
+
loadingStatus: t.value
|
|
18
22
|
},
|
|
19
23
|
cancelOrBackButton: {
|
|
20
24
|
styling: "ghost",
|
|
21
25
|
type: "secondary",
|
|
22
|
-
labelText:
|
|
23
|
-
disabledStatus:
|
|
26
|
+
labelText: r("products.cancel"),
|
|
27
|
+
disabledStatus: t.value
|
|
24
28
|
}
|
|
25
|
-
}))
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
|
|
29
|
+
}));
|
|
30
|
+
return { __sfc: !0, trans: r, store: e, isApplying: t, submitted: o, filtersRef: c, footerButtonGroupOptions: f, cancelModal: () => {
|
|
31
|
+
e.cancelFilterDrawer();
|
|
32
|
+
}, applyFilter: async () => {
|
|
33
|
+
var u;
|
|
34
|
+
o.value = !0;
|
|
35
|
+
const { filters: n } = e.recommendationConfigs, i = n.find((l) => !_(l));
|
|
36
|
+
if (i) {
|
|
37
|
+
(u = c.value) == null || u.switchToGroup(i.filterGroup), await v();
|
|
38
|
+
const { filterGroup: l, filterNumber: p } = i, m = `[data-filter-group="${l}"][data-filter-number="${p}"]`, s = document.querySelector(m);
|
|
39
|
+
s == null || s.scrollIntoView({ behavior: "smooth", block: "center" });
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
t.value = !0, e.patchCurrentBlockConfig(
|
|
43
|
+
{ filters: e.recommendationConfigs.filters },
|
|
44
|
+
{ triggerRefetch: !0 }
|
|
45
|
+
), e.closeFilterDrawer(), t.value = !1;
|
|
46
|
+
}, WpDrawer: b, Filters: h };
|
|
33
47
|
}
|
|
34
48
|
});
|
|
35
49
|
export {
|
|
36
|
-
|
|
50
|
+
I as default
|
|
37
51
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import s from "./Filters.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
return e("div", { staticClass: "d-f f-d-c gap-16" }, [e("div", { staticClass: "d-f a-i-c j-c-s-b gap-16" }, [e(t.InSegments, { staticClass: "f-g-1 w-1", attrs: { id: "guido__filter-group-segments", "segment-list": t.filterGroupList, selected: t.selectedFilterGroup, "with-icon": !1 }, on: { click: t.
|
|
7
|
-
return e(t.FilterItem, { key:
|
|
8
|
-
}), 1), e("div", { staticClass: "d-f a-i-c j-c-c mt-3" }, [e(t.InButtonV2, { staticClass: "w-11-s", attrs: { id: "filter-group--add-filter-button", "left-icon": "line-plus-netural", type: "subtle-primary", "label-text": t.trans("smart-recommender.add-filter-condition") }, on: { click: t.handleAddFilter } })], 1)]);
|
|
9
|
-
}, d = [], n = /* @__PURE__ */
|
|
3
|
+
import o from "../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var a = function() {
|
|
5
|
+
var r = this, e = r._self._c, t = r._self._setupProxy;
|
|
6
|
+
return e("div", { staticClass: "d-f f-d-c gap-16" }, [e("div", { staticClass: "d-f a-i-c j-c-s-b gap-16" }, [e(t.InSegments, { staticClass: "f-g-1 w-1", attrs: { id: "guido__filter-group-segments", "segment-list": t.filterGroupList, selected: t.selectedFilterGroup, "with-icon": !1 }, on: { click: t.switchToGroup } }), e(t.InButtonV2, { staticClass: "w-20-s f-g-1", attrs: { id: "guido__add-filter-group-button", "left-icon": "line-plus-netural", type: "secondary", "disabled-status": t.isMaxFilterGroupCount, "label-text": t.trans("smart-recommender.add-filter-group"), "tooltip-options": t.getTooltipOptions("add-filter-group-tooltip"), "tooltip-text": t.isMaxFilterGroupCount ? t.trans("email-editor.add-filter-group-tooltip") : "" }, on: { click: t.handleAddFilterGroup } })], 1), e("div", { staticClass: "d-f a-i-c j-c-s-b gap-16" }, [e("div", { staticClass: "d-f a-i-c" }, [t.selectedFilterGroup > 1 ? e(t.LogicAdapter, { staticClass: "mr-2", attrs: { logic: t.outerGroupOperator }, on: { change: t.handleOuterGroupOperatorChange } }) : r._e(), e("p", [r._v(" " + r._s(t.trans("email-editor.filter-group")) + " " + r._s(t.selectedFilterGroup) + " ")])], 1), t.hasRemoveFilterButton ? e(t.InButtonV2, { attrs: { id: "guido__delete-filter-group-button", "left-icon": "line-delete", styling: "text", type: "danger", "label-text-status": !1 }, on: { click: t.handleDeleteFilterGroup } }) : r._e()], 1), e("div", { staticClass: "d-f a-i-c j-c-s-b f-d-c" }, r._l(t.selectedFilterGroupFilters, function(l, i) {
|
|
7
|
+
return e(t.FilterItem, { key: i, attrs: { filter: l, "has-logic-adapter": t.hasLogicAdapter && i !== t.selectedFilterGroupFilters.length - 1, index: i, submitted: r.submitted }, on: { "delete-filter": t.handleDeleteFilter } });
|
|
8
|
+
}), 1), e("div", { staticClass: "d-f a-i-c j-c-c mt-3" }, [e(t.InButtonV2, { staticClass: "w-11-s", attrs: { id: "filter-group--add-filter-button", "left-icon": "line-plus-netural", type: "subtle-primary", "disabled-status": t.isMaxFilterPerGroupCount, "label-text": t.trans("smart-recommender.add-filter-condition"), "tooltip-text": t.isMaxFilterPerGroupCount ? t.trans("email-editor.add-filter-tooltip") : "" }, on: { click: t.handleAddFilter } })], 1)]);
|
|
9
|
+
}, d = [], n = /* @__PURE__ */ o(
|
|
10
10
|
s,
|
|
11
|
-
|
|
11
|
+
a,
|
|
12
12
|
d,
|
|
13
13
|
!1,
|
|
14
14
|
null,
|
|
15
|
-
"
|
|
15
|
+
"c5dee797"
|
|
16
16
|
);
|
|
17
|
-
const
|
|
17
|
+
const g = n.exports;
|
|
18
18
|
export {
|
|
19
|
-
|
|
19
|
+
g as default
|
|
20
20
|
};
|
|
@@ -1,44 +1,54 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { useTranslations as
|
|
1
|
+
import { defineComponent as h, computed as l, ref as O, watch as v } from "vue";
|
|
2
|
+
import { useTranslations as f } from "../../../../composables/useTranslations.js";
|
|
3
3
|
import { useRecommendationExtensionStore as g } from "../../../../extensions/Blocks/Recommendation/store/recommendation.js";
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
4
|
+
import { getTooltipOptions as R } from "../../../../utils/tooltipUtils.js";
|
|
5
|
+
import { InButtonV2 as T, InSegments as U } from "@useinsider/design-system-vue";
|
|
6
|
+
import E from "./FilterItem.vue.js";
|
|
6
7
|
import A from "./LogicAdapter.vue.js";
|
|
7
|
-
const
|
|
8
|
+
const y = /* @__PURE__ */ h({
|
|
8
9
|
__name: "Filters",
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
props: {
|
|
11
|
+
submitted: { type: Boolean }
|
|
12
|
+
},
|
|
13
|
+
setup(C, { expose: a }) {
|
|
14
|
+
const i = f(), t = g(), u = l(() => t.getUniqueFilterGroups.map((e) => ({
|
|
15
|
+
text: e.toString(),
|
|
16
|
+
value: e
|
|
17
|
+
}))), r = O(1);
|
|
18
|
+
v(u, (e) => {
|
|
19
|
+
if (!e.length)
|
|
20
|
+
return;
|
|
21
|
+
e.some((G) => G.value === r.value) || (r.value = e[0].value);
|
|
22
|
+
});
|
|
23
|
+
const s = (e) => {
|
|
14
24
|
r.value = e;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
};
|
|
26
|
+
a({ switchToGroup: s });
|
|
27
|
+
const p = () => {
|
|
28
|
+
const e = t.getUniqueFilterGroups, o = e.length > 0 ? Math.max(...e) + 1 : 1;
|
|
29
|
+
t.addFilterGroup(o), r.value = o;
|
|
30
|
+
}, c = l(() => u.value.length >= 3), n = l(() => t.getSelectedFilterGroup(r.value)), d = l(() => n.value.length >= 10), F = l(() => n.value.length > 1), _ = l(() => u.value.length > 1), m = l(() => {
|
|
31
|
+
var o;
|
|
32
|
+
return ((o = n.value[0]) == null ? void 0 : o.outerGroupOperator) || "*";
|
|
33
|
+
});
|
|
34
|
+
return { __sfc: !0, MAX_FILTER_GROUP_COUNT: 3, MAX_FILTER_PER_GROUP_COUNT: 10, trans: i, store: t, filterGroupList: u, selectedFilterGroup: r, switchToGroup: s, handleAddFilterGroup: p, isMaxFilterGroupCount: c, selectedFilterGroupFilters: n, isMaxFilterPerGroupCount: d, hasLogicAdapter: F, hasRemoveFilterButton: _, outerGroupOperator: m, handleOuterGroupOperatorChange: (e) => {
|
|
35
|
+
n.value.forEach((o) => {
|
|
36
|
+
t.updateFilter({ ...o, outerGroupOperator: e });
|
|
37
|
+
});
|
|
38
|
+
}, handleAddFilter: () => {
|
|
39
|
+
t.addFilter(
|
|
40
|
+
t.createDefaultFilter(
|
|
41
|
+
r.value,
|
|
42
|
+
n.value.length + 1
|
|
43
|
+
)
|
|
44
|
+
);
|
|
35
45
|
}, handleDeleteFilter: (e) => {
|
|
36
|
-
|
|
46
|
+
t.deleteFilter(e);
|
|
37
47
|
}, handleDeleteFilterGroup: () => {
|
|
38
|
-
|
|
39
|
-
}, InSegments:
|
|
48
|
+
u.value.length <= 1 || t.deleteFilterGroup(r.value);
|
|
49
|
+
}, getTooltipOptions: R, InSegments: U, InButtonV2: T, FilterItem: E, LogicAdapter: A };
|
|
40
50
|
}
|
|
41
51
|
});
|
|
42
52
|
export {
|
|
43
|
-
|
|
53
|
+
y as default
|
|
44
54
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import r from "../extensions/ModulesTabIcons/extension.js";
|
|
1
2
|
import { useConfigStore as l } from "../stores/config.js";
|
|
2
|
-
const
|
|
3
|
+
const a = {
|
|
3
4
|
"amp-accordion": "ampAccordionEnabled",
|
|
4
5
|
"amp-carousel": "ampCarouselEnabled",
|
|
5
6
|
"amp-form-controls": "ampFormControlsEnabled",
|
|
@@ -13,7 +14,7 @@ const r = {
|
|
|
13
14
|
"text-block": "textEnabled",
|
|
14
15
|
"timer-block": "timerEnabled",
|
|
15
16
|
"video-block": "videoEnabled"
|
|
16
|
-
},
|
|
17
|
+
}, s = {
|
|
17
18
|
"dynamic-content": () => import("../extensions/DynamicContent/extension.js"),
|
|
18
19
|
"checkbox-block": () => import("../extensions/Blocks/Checkbox/extension.js"),
|
|
19
20
|
"radio-button-block": () => import("../extensions/Blocks/RadioButton/extension.js"),
|
|
@@ -21,31 +22,40 @@ const r = {
|
|
|
21
22
|
"unsubscribe-block": () => import("../extensions/Blocks/Unsubscribe/extension.js"),
|
|
22
23
|
"coupon-block": () => import("../extensions/Blocks/CouponBlock/extension.js"),
|
|
23
24
|
"items-block": () => import("../extensions/Blocks/Items/extension.js")
|
|
24
|
-
},
|
|
25
|
+
}, i = (n) => {
|
|
25
26
|
if (!n || !n.length)
|
|
26
27
|
return {};
|
|
27
|
-
const
|
|
28
|
+
const t = {};
|
|
28
29
|
return n.forEach((o) => {
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
}),
|
|
32
|
-
},
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
return t
|
|
36
|
-
|
|
37
|
-
|
|
30
|
+
const e = a[o];
|
|
31
|
+
e && (t[e] = !1);
|
|
32
|
+
}), t;
|
|
33
|
+
}, b = () => [r], m = async (n) => {
|
|
34
|
+
const t = b();
|
|
35
|
+
if (!n || !n.length)
|
|
36
|
+
return t;
|
|
37
|
+
const o = await Promise.all(
|
|
38
|
+
n.map(async (e) => {
|
|
39
|
+
const c = s[e];
|
|
40
|
+
return c ? (await c()).default : null;
|
|
41
|
+
})
|
|
42
|
+
);
|
|
43
|
+
return [
|
|
44
|
+
...t,
|
|
45
|
+
...o.filter((e) => e !== null)
|
|
46
|
+
];
|
|
47
|
+
}, E = () => {
|
|
38
48
|
const n = l();
|
|
39
49
|
return {
|
|
40
50
|
getStripoBlocksConfig: async () => {
|
|
41
51
|
const o = n.blocks;
|
|
42
52
|
return {
|
|
43
|
-
baseBlocks:
|
|
44
|
-
extensions: await
|
|
53
|
+
baseBlocks: i(o == null ? void 0 : o.excludeDefaults),
|
|
54
|
+
extensions: await m(o == null ? void 0 : o.includeCustoms)
|
|
45
55
|
};
|
|
46
56
|
}
|
|
47
57
|
};
|
|
48
58
|
};
|
|
49
59
|
export {
|
|
50
|
-
|
|
60
|
+
E as useBlocksConfig
|
|
51
61
|
};
|
|
@@ -1,77 +1,84 @@
|
|
|
1
|
-
import { useConfig as
|
|
2
|
-
import { TemplateTypes as
|
|
3
|
-
import { DISPLAY_CONDITIONS_REGEX as
|
|
4
|
-
import { ToasterTypeOptions as
|
|
5
|
-
import { itemsBlockDynamicVariables as
|
|
6
|
-
import { useRecommendationStore as
|
|
7
|
-
import { base64EncodeWithSpecialChars as
|
|
8
|
-
import { useHttp as
|
|
9
|
-
import { useToaster as
|
|
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
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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:
|
|
17
|
-
), { status: n, message:
|
|
18
|
-
return n ||
|
|
19
|
-
type:
|
|
20
|
-
message: n === void 0 ?
|
|
21
|
-
}),
|
|
22
|
-
type:
|
|
23
|
-
message:
|
|
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
|
-
},
|
|
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 && !
|
|
29
|
-
const
|
|
30
|
-
if (
|
|
31
|
-
const [
|
|
32
|
-
|
|
33
|
-
type:
|
|
34
|
-
message:
|
|
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
|
-
},
|
|
39
|
-
const n = t ? await
|
|
40
|
-
return
|
|
41
|
-
},
|
|
42
|
-
type:
|
|
43
|
-
message:
|
|
44
|
-
}), !1),
|
|
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 &&
|
|
47
|
-
type:
|
|
48
|
-
message:
|
|
49
|
-
}), s < t &&
|
|
50
|
-
type:
|
|
51
|
-
message:
|
|
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
|
-
},
|
|
60
|
+
}, x = (e) => {
|
|
54
61
|
const s = e.match(/{{\s*(\w+\s+((\w+\|\w+)|(\w+)))\s*}}/gm) === null;
|
|
55
|
-
return s ||
|
|
56
|
-
type:
|
|
57
|
-
message:
|
|
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 && !
|
|
62
|
-
const n = new Set(s.map((
|
|
63
|
-
if (t.forEach((
|
|
64
|
-
const
|
|
65
|
-
(!n.has(
|
|
66
|
-
}),
|
|
67
|
-
const
|
|
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
|
-
${
|
|
76
|
+
${o.map((m) => `<li>${m}</li>`).join("")}
|
|
70
77
|
</ul>
|
|
71
78
|
`;
|
|
72
|
-
return
|
|
73
|
-
type:
|
|
74
|
-
message:
|
|
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((
|
|
83
|
-
const
|
|
84
|
-
(!
|
|
85
|
-
type:
|
|
86
|
-
message:
|
|
87
|
-
}), n = !1),
|
|
88
|
-
|
|
89
|
-
type:
|
|
90
|
-
message:
|
|
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
|
|
93
|
-
|
|
94
|
-
S(
|
|
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
|
|
99
|
-
|
|
100
|
-
type:
|
|
101
|
-
message:
|
|
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
|
-
},
|
|
112
|
+
}, W = (e) => {
|
|
106
113
|
const s = (e.match(/{% /gm) || []).length, t = (e.match(/ %}/gm) || []).length, n = s === t;
|
|
107
|
-
return n ||
|
|
108
|
-
type:
|
|
109
|
-
message:
|
|
114
|
+
return n || i({
|
|
115
|
+
type: c.Warning,
|
|
116
|
+
message: r("custom-conditions.no-space-after-braces")
|
|
110
117
|
}), n;
|
|
111
|
-
},
|
|
112
|
-
type:
|
|
113
|
-
message:
|
|
114
|
-
}), !1) : !0,
|
|
115
|
-
type:
|
|
116
|
-
message:
|
|
117
|
-
}), !1) : !0,
|
|
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 : (
|
|
120
|
-
type:
|
|
121
|
-
message:
|
|
126
|
+
return e.match(s) === null ? !0 : (i({
|
|
127
|
+
type: c.Alert,
|
|
128
|
+
message: r("newsletter.invalid-image-type")
|
|
122
129
|
}), !1);
|
|
123
|
-
},
|
|
130
|
+
}, R = (e) => {
|
|
124
131
|
const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".checkbox-block-v2");
|
|
125
|
-
return Array.from(n).find((
|
|
126
|
-
var
|
|
127
|
-
return !((
|
|
128
|
-
}) ? (
|
|
129
|
-
type:
|
|
130
|
-
message:
|
|
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
|
-
},
|
|
139
|
+
}, D = (e) => {
|
|
133
140
|
const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".radio-button-v2");
|
|
134
|
-
return Array.from(n).find((
|
|
135
|
-
var
|
|
136
|
-
return !((
|
|
137
|
-
}) ? (
|
|
138
|
-
type:
|
|
139
|
-
message:
|
|
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 = [
|
|
144
|
-
|
|
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
|
-
|
|
158
|
+
ce as useHtmlValidator
|
|
149
159
|
};
|