@useinsider/guido 2.1.0-beta.587ec44 → 2.1.0-beta.5a66e58
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 +1 -3
- package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +15 -14
- package/dist/composables/useHtmlValidator.js +114 -104
- package/dist/composables/useRecommendation.js +54 -21
- package/dist/composables/useSave.js +12 -16
- package/dist/composables/useStripo.js +54 -58
- package/dist/composables/useStripoEventHandler.js +12 -27
- package/dist/config/compiler/recommendationCompilerRules.js +45 -39
- package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
- package/dist/config/migrator/recommendationMigrator.js +2 -2
- package/dist/enums/extensions/recommendationBlock.js +1 -1
- package/dist/enums/recommendation.js +16 -15
- package/dist/enums/unsubscribe.js +21 -25
- 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 +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 +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 +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/controlFactories.js +125 -93
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +242 -186
- package/dist/services/recommendationApi.js +11 -8
- package/dist/services/stripoApi.js +12 -48
- package/dist/services/templateLibraryApi.js +16 -13
- package/dist/src/@types/events.d.ts +2 -38
- package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
- package/dist/src/composables/useRecommendation.d.ts +1 -0
- package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
- package/dist/src/enums/unsubscribe.d.ts +0 -3
- 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 +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/services/stripoApi.d.ts +0 -5
- package/dist/src/stores/editor.d.ts +0 -23
- package/dist/static/styles/customEditorStyle.css.js +35 -11
- package/dist/stores/editor.js +1 -2
- package/dist/utils/pairProductVariables.js +57 -56
- package/dist/utils/templatePreparation.js +15 -14
- package/package.json +1 -1
- package/dist/composables/useSyncModuleExtractor.js +0 -45
- 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/composables/useSyncModuleExtractor.d.ts +0 -4
- 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
- package/dist/src/mock/api/settings.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://www.youtube.com/shorts/Y0RwBeMezL4" target="_blank" rel="noopener noreferrer">
|
|
3
|
-
<img width="180"
|
|
4
|
-
src="https://web-image.useinsider.com/guido/defaultImageLibrary/iUH0liTK0d2YDsVB5LDN1770169173.jpg"
|
|
5
|
-
alt="Guido logo">
|
|
3
|
+
<img width="180" src="./public/guido.png" alt="Guido logo">
|
|
6
4
|
</a>
|
|
7
5
|
</p>
|
|
8
6
|
|
|
@@ -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
|
|
4
|
-
import { useRecommendationExtensionStore as
|
|
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
|
|
6
|
+
const v = /* @__PURE__ */ n({
|
|
7
7
|
__name: "FilterSelectionDrawer",
|
|
8
|
-
setup(
|
|
9
|
-
const
|
|
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:
|
|
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:
|
|
22
|
+
labelText: r("products.cancel"),
|
|
23
23
|
disabledStatus: e.value
|
|
24
24
|
}
|
|
25
|
-
})),
|
|
26
|
-
|
|
25
|
+
})), o = () => {
|
|
26
|
+
t.closeFilterDrawer();
|
|
27
27
|
};
|
|
28
|
-
return { __sfc: !0, trans:
|
|
29
|
-
e.value = !0,
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
37
|
+
v as default
|
|
37
38
|
};
|
|
@@ -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
|
};
|
|
@@ -1,27 +1,60 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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:
|
|
5
|
-
mobileRightPadding:
|
|
6
|
-
cardsInRow:
|
|
7
|
-
unresponsive:
|
|
8
|
+
mobileLeftPadding: i,
|
|
9
|
+
mobileRightPadding: n,
|
|
10
|
+
cardsInRow: o,
|
|
11
|
+
unresponsive: a
|
|
8
12
|
}) => {
|
|
9
|
-
const
|
|
10
|
-
return (
|
|
13
|
+
const r = a ? o : 1, e = i + n + (r - 1) * b;
|
|
14
|
+
return (R - e) / r;
|
|
11
15
|
},
|
|
12
|
-
getRecommendationCampaignData: (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
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
|
-
|
|
59
|
+
N as useRecommendation
|
|
27
60
|
};
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
import { useConfig as
|
|
2
|
-
import { useSaveStart as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const o = p(), s = f(), { validateHtml: i } = V(), { callbacks: a } = d(), { extractSyncModuleData: r } = v(), { setSyncModuleUnsubscriptionPages: n } = S();
|
|
9
|
-
return { save: async (l = !1) => {
|
|
1
|
+
import { useConfig as l } from "./useConfig.js";
|
|
2
|
+
import { useSaveStart as m, useSaveComplete as c } from "./useGuidoActions.js";
|
|
3
|
+
import { useTemplatePreparation as d } from "../utils/templatePreparation.js";
|
|
4
|
+
import { useHtmlValidator as p } from "./useHtmlValidator.js";
|
|
5
|
+
const w = () => {
|
|
6
|
+
const i = m(), s = c(), { validateHtml: o } = p(), { callbacks: a } = l();
|
|
7
|
+
return { save: async (r = !1) => {
|
|
10
8
|
var e;
|
|
11
|
-
|
|
12
|
-
const { prepareTemplateDetails:
|
|
13
|
-
if (
|
|
14
|
-
return;
|
|
15
|
-
const { unsubscribePayload: m, stripoModules: u } = r(t.rawHtml);
|
|
16
|
-
return await n(m), t.modules = u, l || s(t), t;
|
|
9
|
+
i();
|
|
10
|
+
const { prepareTemplateDetails: n } = d(), t = await n();
|
|
11
|
+
if (await o(t.compiledHtml, t.dynamicContentList, !0) && !((e = a.value) != null && e.externalValidation && !await a.value.externalValidation(t)))
|
|
12
|
+
return r || s(t), t;
|
|
17
13
|
} };
|
|
18
14
|
};
|
|
19
15
|
export {
|
|
20
|
-
|
|
16
|
+
w as useSave
|
|
21
17
|
};
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { useActionsApi as
|
|
2
|
-
import { useBlocksConfig as
|
|
3
|
-
import { useConfig as
|
|
4
|
-
import { useCustomInterfaceAppearance as
|
|
5
|
-
import { useStripoEventHandler as
|
|
6
|
-
import { useToaster as
|
|
7
|
-
import { displayConditions as
|
|
8
|
-
import { useStripoApi as
|
|
9
|
-
import
|
|
10
|
-
import { useEditorStore as
|
|
11
|
-
import { dynamicContentToMergeTags as
|
|
12
|
-
import
|
|
13
|
-
const
|
|
14
|
-
const { features: l, template:
|
|
15
|
-
var g, f
|
|
16
|
-
const
|
|
1
|
+
import { useActionsApi as _ } from "./useActionsApi.js";
|
|
2
|
+
import { useBlocksConfig as B } from "./useBlocksConfig.js";
|
|
3
|
+
import { useConfig as v } from "./useConfig.js";
|
|
4
|
+
import { useCustomInterfaceAppearance as A } from "./useCustomInterfaceAppearance.js";
|
|
5
|
+
import { useStripoEventHandler as F } from "./useStripoEventHandler.js";
|
|
6
|
+
import { useToaster as D } from "./useToaster.js";
|
|
7
|
+
import { displayConditions as I } from "../enums/displayConditions.js";
|
|
8
|
+
import { useStripoApi as M } from "../services/stripoApi.js";
|
|
9
|
+
import U from "../static/styles/customEditorStyle.css.js";
|
|
10
|
+
import { useEditorStore as P } from "../stores/editor.js";
|
|
11
|
+
import { dynamicContentToMergeTags as R } from "../utils/genericUtil.js";
|
|
12
|
+
import H from "../package.json.js";
|
|
13
|
+
const W = (c) => {
|
|
14
|
+
const { features: l, template: y } = v(), { handleError: u } = D(), { getToken: C, getCustomFonts: S } = M(), { handleEvent: E } = F(), { getStripoBlocksConfig: h } = B(), w = async (i, n = []) => {
|
|
15
|
+
var m, g, f;
|
|
16
|
+
const o = P(), { html: r, css: p } = i, { baseBlocks: s, extensions: t } = await h(), a = ((m = l.value) == null ? void 0 : m.displayConditions) ?? !0, k = ((g = l.value) == null ? void 0 : g.modulesDisabled) ?? !1, T = ((f = y.value) == null ? void 0 : f.forceRecreate) ?? !1;
|
|
17
17
|
window.UIEditor.initEditor(
|
|
18
18
|
document.querySelector("#guido-editor"),
|
|
19
19
|
{
|
|
20
20
|
metadata: c,
|
|
21
|
-
html:
|
|
22
|
-
css:
|
|
23
|
-
forceRecreate:
|
|
21
|
+
html: r,
|
|
22
|
+
css: p,
|
|
23
|
+
forceRecreate: T,
|
|
24
24
|
locale: "en",
|
|
25
25
|
undoButtonSelector: "#guido__undo-button",
|
|
26
26
|
redoButtonSelector: "#guido__redo-button",
|
|
@@ -30,20 +30,19 @@ const Z = (c) => {
|
|
|
30
30
|
customAppearanceMergetags: !0,
|
|
31
31
|
customAppearanceMergetagsBorderColor: "#f1f3fe",
|
|
32
32
|
customAppearanceMergetagsBackgroundColor: "#f1f3fe",
|
|
33
|
-
customViewStyles:
|
|
34
|
-
conditionsEnabled:
|
|
35
|
-
customConditionsEnabled:
|
|
36
|
-
conditionCategories:
|
|
33
|
+
customViewStyles: U,
|
|
34
|
+
conditionsEnabled: a,
|
|
35
|
+
customConditionsEnabled: a,
|
|
36
|
+
conditionCategories: I,
|
|
37
37
|
enableXSSSecurity: !0,
|
|
38
|
-
modulesDisabled:
|
|
39
|
-
syncModulesEnabled: r,
|
|
38
|
+
modulesDisabled: k,
|
|
40
39
|
messageSettingsEnabled: !0,
|
|
41
40
|
displayGmailAnnotations: !0,
|
|
42
41
|
displayHiddenPreheader: !1,
|
|
43
42
|
displayTitle: !1,
|
|
44
43
|
displayUTM: !1,
|
|
45
44
|
selectElementAfterDrop: !0,
|
|
46
|
-
...
|
|
45
|
+
...s ? { baseBlocks: s } : {},
|
|
47
46
|
editorFonts: {
|
|
48
47
|
showDefaultStandardFonts: !0,
|
|
49
48
|
showDefaultNotStandardFonts: !0,
|
|
@@ -51,71 +50,68 @@ const Z = (c) => {
|
|
|
51
50
|
},
|
|
52
51
|
mergeTags: [
|
|
53
52
|
{
|
|
54
|
-
entries:
|
|
53
|
+
entries: R(c.preselectedDynamicContentList)
|
|
55
54
|
}
|
|
56
55
|
],
|
|
57
|
-
async onTokenRefreshRequest(
|
|
56
|
+
async onTokenRefreshRequest(e) {
|
|
58
57
|
try {
|
|
59
|
-
const
|
|
60
|
-
|
|
61
|
-
} catch (
|
|
62
|
-
u(
|
|
58
|
+
const d = await C();
|
|
59
|
+
e(d);
|
|
60
|
+
} catch (d) {
|
|
61
|
+
u(d, "Failed to refresh token");
|
|
63
62
|
}
|
|
64
63
|
},
|
|
65
64
|
onTemplateLoaded() {
|
|
66
65
|
try {
|
|
67
|
-
const { importCss:
|
|
68
|
-
|
|
69
|
-
|
|
66
|
+
const { importCss: e } = A(), { activateCustomViewStyles: d, updateTimerInClonedTemplate: V } = _();
|
|
67
|
+
e(), d(), V(), c.onReady(), o.isStripoInitialized = !0, o.loadingStatus = !1, setTimeout(() => {
|
|
68
|
+
o.hasChanges = !1;
|
|
70
69
|
}, 1e3);
|
|
71
|
-
} catch (
|
|
72
|
-
u(
|
|
70
|
+
} catch (e) {
|
|
71
|
+
u(e, "Failed to load custom interface appearance");
|
|
73
72
|
}
|
|
74
73
|
},
|
|
75
|
-
onCodeEditorVisibilityChanged(
|
|
76
|
-
|
|
74
|
+
onCodeEditorVisibilityChanged(e) {
|
|
75
|
+
o.isCodeEditorOpen = e;
|
|
77
76
|
},
|
|
78
|
-
onEditorVisualModeChanged(
|
|
79
|
-
|
|
77
|
+
onEditorVisualModeChanged(e) {
|
|
78
|
+
o.editorVisualMode = e.toLowerCase();
|
|
80
79
|
},
|
|
81
|
-
onVersionHistoryVisibilityChanged(
|
|
82
|
-
|
|
80
|
+
onVersionHistoryVisibilityChanged(e) {
|
|
81
|
+
o.isVersionHistoryOpen = e;
|
|
83
82
|
},
|
|
84
83
|
onDataChanged() {
|
|
85
|
-
|
|
84
|
+
o.hasChanges = !0;
|
|
86
85
|
},
|
|
87
|
-
onEvent:
|
|
86
|
+
onEvent: E,
|
|
88
87
|
ignoreClickOutsideSelectors: [
|
|
89
88
|
"#guido-dynamic-content-modal",
|
|
90
89
|
".in-on-board-wrapper",
|
|
91
90
|
".in-drawer__container"
|
|
92
91
|
],
|
|
93
|
-
extensions:
|
|
92
|
+
extensions: t
|
|
94
93
|
}
|
|
95
94
|
);
|
|
96
|
-
},
|
|
97
|
-
var
|
|
95
|
+
}, b = (i) => new Promise((n, o) => {
|
|
96
|
+
var a;
|
|
98
97
|
if (document.getElementById("UiEditorScript")) {
|
|
99
98
|
i(), n();
|
|
100
99
|
return;
|
|
101
100
|
}
|
|
102
|
-
const
|
|
103
|
-
t.id = "UiEditorScript", t.type = "module", t.src =
|
|
101
|
+
const r = H.guido, s = `https://email-static.useinsider.com/guido/${(a = r == null ? void 0 : r.stripo) == null ? void 0 : a.version}/UIEditor.js`, t = document.createElement("script");
|
|
102
|
+
t.id = "UiEditorScript", t.type = "module", t.src = s, t.onload = () => {
|
|
104
103
|
i(), n();
|
|
105
104
|
}, t.onerror = () => {
|
|
106
|
-
|
|
105
|
+
o(new Error(`Failed to load Stripo UIEditor script from S3: ${s}`));
|
|
107
106
|
}, document.body.appendChild(t);
|
|
108
107
|
});
|
|
109
108
|
return { initPlugin: async (i) => {
|
|
110
|
-
await
|
|
111
|
-
const n = S()
|
|
112
|
-
|
|
113
|
-
w()
|
|
114
|
-
]);
|
|
115
|
-
n.syncModulesEnabled = e, await T(i, r, e);
|
|
109
|
+
await b(async () => {
|
|
110
|
+
const n = await S();
|
|
111
|
+
await w(i, n);
|
|
116
112
|
});
|
|
117
113
|
} };
|
|
118
114
|
};
|
|
119
115
|
export {
|
|
120
|
-
|
|
116
|
+
W as useStripo
|
|
121
117
|
};
|