@useinsider/guido 1.0.2-beta.4dd4c2c → 1.0.2-beta.4e8474b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/README.md +43 -1
  2. package/dist/@types/events.d.ts +6 -0
  3. package/dist/@types/generic.d.ts +5 -0
  4. package/dist/components/Guido.vue.d.ts +3 -0
  5. package/dist/components/Guido.vue.js +10 -10
  6. package/dist/components/Guido.vue2.js +80 -63
  7. package/dist/components/organisms/LoadingWrapper.vue.js +1 -1
  8. package/dist/components/organisms/email-preview/amp/AmpToggle.vue.js +3 -2
  9. package/dist/components/organisms/email-preview/amp/AmpToggle.vue2.js +14 -15
  10. package/dist/components/organisms/header/HeaderWrapper.vue.d.ts +3 -1
  11. package/dist/components/organisms/header/HeaderWrapper.vue.js +6 -6
  12. package/dist/components/organisms/header/HeaderWrapper.vue2.js +15 -9
  13. package/dist/components/organisms/header/RightSlot.vue.d.ts +3 -1
  14. package/dist/components/organisms/header/RightSlot.vue.js +5 -3
  15. package/dist/components/organisms/header/RightSlot.vue2.js +25 -27
  16. package/dist/components/organisms/header/ViewOptions.vue.js +11 -11
  17. package/dist/components/organisms/header/ViewOptions.vue2.js +5 -5
  18. package/dist/components/organisms/header/version-history/ViewOptions.vue.js +11 -11
  19. package/dist/components/organisms/header/version-history/ViewOptions.vue2.js +5 -5
  20. package/dist/components/organisms/onboarding/AMPOnboarding.vue.js +13 -13
  21. package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +21 -23
  22. package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +14 -14
  23. package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +26 -28
  24. package/dist/components/organisms/onboarding/NewVersionPopup.vue.js +1 -1
  25. package/dist/components/organisms/onboarding/OnboardingWrapper.vue.js +11 -9
  26. package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +37 -14
  27. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +13 -13
  28. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +38 -28
  29. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue.js +14 -14
  30. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +21 -23
  31. package/dist/components/wrappers/WpDrawer.vue.d.ts +1 -1
  32. package/dist/components/wrappers/WpModal.vue.d.ts +1 -1
  33. package/dist/composables/useCustomInterfaceAppearance.js +22 -18
  34. package/dist/composables/useHtmlCompiler.js +17 -9
  35. package/dist/composables/useHtmlValidator.d.ts +3 -0
  36. package/dist/composables/useHtmlValidator.js +120 -0
  37. package/dist/composables/usePartner.d.ts +1 -0
  38. package/dist/composables/usePartner.js +16 -9
  39. package/dist/composables/usePreviewMode.js +14 -15
  40. package/dist/composables/useRecommendation.d.ts +19 -0
  41. package/dist/composables/useRecommendation.js +27 -0
  42. package/dist/composables/useSave.d.ts +4 -0
  43. package/dist/composables/useSave.js +15 -0
  44. package/dist/composables/useStripo.js +32 -31
  45. package/dist/composables/useStripoEventHandler.js +8 -8
  46. package/dist/composables/useToaster.js +17 -17
  47. package/dist/config/compiler/outlookCompilerRules.d.ts +2 -0
  48. package/dist/config/compiler/outlookCompilerRules.js +36 -0
  49. package/dist/config/compiler/recommendationCompilerRules.d.ts +2 -0
  50. package/dist/config/compiler/recommendationCompilerRules.js +83 -0
  51. package/dist/config/compiler/socialCompilerRules.d.ts +2 -0
  52. package/dist/config/compiler/socialCompilerRules.js +21 -0
  53. package/dist/config/compiler/unsubscribeCompilerRules.d.ts +2 -0
  54. package/dist/config/compiler/unsubscribeCompilerRules.js +64 -0
  55. package/dist/enums/defaults.d.ts +6 -1
  56. package/dist/enums/defaults.js +47 -10
  57. package/dist/enums/html-validator.d.ts +6 -0
  58. package/dist/enums/html-validator.js +7 -0
  59. package/dist/enums/recommendation.d.ts +54 -0
  60. package/dist/enums/recommendation.js +56 -0
  61. package/dist/enums/unsubscribe.d.ts +15 -0
  62. package/dist/enums/unsubscribe.js +17 -0
  63. package/dist/guido.css +1 -1
  64. package/dist/mock/api/validator.d.ts +2 -0
  65. package/dist/services/onboardingApi.d.ts +4 -0
  66. package/dist/services/onboardingApi.js +23 -0
  67. package/dist/static/styles/components/alert-message.css.js +32 -2
  68. package/dist/static/styles/components/button.css.js +32 -2
  69. package/dist/static/styles/components/notification.css.js +55 -0
  70. package/dist/static/styles/components/popup.css.js +68 -0
  71. package/dist/static/styles/components/wide-panel.css.js +13 -0
  72. package/dist/static/styles/customEditorStyle.css.js +24 -0
  73. package/dist/static/styles/variables.css.js +10 -0
  74. package/dist/stores/dynamic-content.d.ts +12 -0
  75. package/dist/stores/dynamic-content.js +7 -6
  76. package/dist/stores/onboarding.d.ts +98 -1028
  77. package/dist/stores/onboarding.js +54 -67
  78. package/dist/stores/preview.js +6 -14
  79. package/dist/stores/recommendation.d.ts +10 -0
  80. package/dist/stores/recommendation.js +9 -0
  81. package/dist/stores/unsubscribe.d.ts +8 -0
  82. package/dist/stores/unsubscribe.js +9 -0
  83. package/dist/utils/genericUtil.js +9 -6
  84. package/dist/utils/templatePreparation.js +21 -14
  85. package/package.json +4 -2
  86. package/dist/composables/useOnboardingApi.d.ts +0 -4
  87. package/dist/composables/useOnboardingApi.js +0 -23
@@ -1,39 +1,37 @@
1
- import { defineComponent as g, computed as i, watch as m } from "vue";
2
- import { useTranslations as p } from "../../../composables/useTranslations.js";
3
- import { useOnboardingStore as f } from "../../../stores/onboarding.js";
4
- import { InOnboard as b } from "@useinsider/design-system-vue";
5
- const O = /* @__PURE__ */ g({
1
+ import { defineComponent as c, computed as e, watch as g } from "vue";
2
+ import { useTranslations as b } from "../../../composables/useTranslations.js";
3
+ import { useOnboardingStore as u } from "../../../stores/onboarding.js";
4
+ import { InOnboard as l } from "@useinsider/design-system-vue";
5
+ const C = /* @__PURE__ */ c({
6
6
  __name: "VersionHistoryOnboarding",
7
- setup(v) {
8
- const r = p(), t = f(), s = i(() => [
7
+ setup(p) {
8
+ const t = b(), n = u(), r = e(() => [
9
9
  {
10
10
  classes: "guido-version-history-onboarding",
11
11
  left: "409px",
12
12
  top: "192px",
13
13
  position: "Left Top",
14
- title: r("email-editor.onboarding-version-history-title"),
15
- description: r("email-editor.onboarding-version-history-description"),
14
+ title: t("email-editor.onboarding-version-history-title"),
15
+ description: t("email-editor.onboarding-version-history-description"),
16
16
  imageSource: "",
17
17
  backButtonClick: () => {
18
18
  },
19
19
  nextButtonType: "text",
20
- nextButtonText: r("roi-statistics.onboard-modal-finish"),
21
- nextButtonClick: () => void t.close("versionHistoryOnboarding")
20
+ nextButtonText: t("action-builder.ok"),
21
+ nextButtonClick: () => void n.close("versionHistoryOnboarding")
22
22
  }
23
- ]), c = i(() => t.versionHistoryOnboarding.config.length > 0), a = i(() => t.versionHistoryOnboarding.isActive), d = i(() => t.versionHistoryOnboarding.config), e = i(() => t.versionHistoryCurrentCard), u = () => {
24
- var o, n;
25
- (n = (o = e.value) == null ? void 0 : o.nextButtonClick) == null || n.call(o);
26
- }, l = () => {
27
- var o, n;
28
- (n = (o = e.value) == null ? void 0 : o.backButtonClick) == null || n.call(o);
23
+ ]), s = e(() => n.onboardings.versionHistoryOnboarding.config.length > 0 && n.onboardings.versionHistoryOnboarding.isActive), a = () => {
24
+ var o, i;
25
+ (i = (o = n.getVersionHistoryCurrentCard) == null ? void 0 : o.nextButtonClick) == null || i.call(o);
26
+ }, d = () => {
27
+ var o, i;
28
+ (i = (o = n.getVersionHistoryCurrentCard) == null ? void 0 : o.backButtonClick) == null || i.call(o);
29
29
  };
30
- return m(a, (o) => {
31
- o && setTimeout(() => {
32
- t.setConfig("versionHistoryOnboarding", s.value);
33
- }, 500);
34
- }, { immediate: !0 }), { __sfc: !0, trans: r, store: t, onboardingCardsConfig: s, isVisible: c, status: a, config: d, currentCard: e, handleNext: u, handleBack: l, InOnboard: b };
30
+ return g(() => n.onboardings.versionHistoryOnboarding.isActive, (o) => {
31
+ o && n.setConfig("versionHistoryOnboarding", r.value);
32
+ }, { immediate: !0 }), { __sfc: !0, trans: t, onboardingStore: n, onboardingCardsConfig: r, isVisible: s, handleNext: a, handleBack: d, InOnboard: l };
35
33
  }
36
34
  });
37
35
  export {
38
- O as default
36
+ C as default
39
37
  };
@@ -31,9 +31,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
31
31
  descriptionStatus: boolean;
32
32
  descriptionText: string;
33
33
  }>>>, {
34
+ className: string;
34
35
  size: string;
35
36
  closeOnOutsideClick: boolean;
36
- className: string;
37
37
  descriptionStatus: boolean;
38
38
  descriptionText: string;
39
39
  }>;
@@ -34,9 +34,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
34
34
  }>>>, {
35
35
  description: string;
36
36
  size: "small" | "medium" | "large";
37
+ closeOnOutsideClick: boolean;
37
38
  footerButtonOptions: FooterButtonGroup;
38
39
  closeButtonStatus: boolean;
39
- closeOnOutsideClick: boolean;
40
40
  footerStatus: boolean;
41
41
  }>;
42
42
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -1,32 +1,34 @@
1
1
  import S from "../static/styles/base.css.js";
2
- import e from "../static/styles/components/alert-message.css.js";
3
- import m from "../static/styles/components/amp-block.css.js";
2
+ import m from "../static/styles/components/alert-message.css.js";
3
+ import e from "../static/styles/components/amp-block.css.js";
4
4
  import i from "../static/styles/components/base-input.css.js";
5
5
  import p from "../static/styles/components/button-group.css.js";
6
6
  import n from "../static/styles/components/button.css.js";
7
- import s from "../static/styles/components/combobox.css.js";
8
- import C from "../static/styles/components/counter.css.js";
7
+ import C from "../static/styles/components/combobox.css.js";
8
+ import s from "../static/styles/components/counter.css.js";
9
9
  import f from "../static/styles/components/dropdown-menu.css.js";
10
10
  import a from "../static/styles/components/loader.css.js";
11
11
  import u from "../static/styles/components/narrow-panel.css.js";
12
- import c from "../static/styles/components/switcher.css.js";
13
- import d from "../static/styles/components/tabs.css.js";
14
- import l from "../static/styles/components/tools.css.js";
15
- import h from "../static/styles/components/version-history.css.js";
16
- import w from "../static/styles/components/wide-panel.css.js";
17
- import y from "../static/styles/variables.css.js";
18
- const B = [
19
- y,
12
+ import c from "../static/styles/components/notification.css.js";
13
+ import d from "../static/styles/components/popup.css.js";
14
+ import l from "../static/styles/components/switcher.css.js";
15
+ import h from "../static/styles/components/tabs.css.js";
16
+ import w from "../static/styles/components/tools.css.js";
17
+ import y from "../static/styles/components/version-history.css.js";
18
+ import B from "../static/styles/components/wide-panel.css.js";
19
+ import b from "../static/styles/variables.css.js";
20
+ const A = [
21
+ b,
20
22
  // Must be on top
21
23
  S,
22
24
  // Must be on top
23
- e,
24
25
  m,
26
+ e,
25
27
  i,
26
28
  p,
27
29
  n,
28
- s,
29
30
  C,
31
+ s,
30
32
  f,
31
33
  a,
32
34
  u,
@@ -34,12 +36,14 @@ const B = [
34
36
  d,
35
37
  l,
36
38
  h,
37
- w
39
+ w,
40
+ y,
41
+ B
38
42
  ].join(`
39
43
 
40
- `), R = () => ({ importCss: () => {
44
+ `), F = () => ({ importCss: () => {
41
45
  const o = new CSSStyleSheet();
42
- o.replaceSync(B);
46
+ o.replaceSync(A);
43
47
  const r = document.querySelector("ui-editor");
44
48
  if (!r)
45
49
  return;
@@ -47,5 +51,5 @@ const B = [
47
51
  t && (t.adoptedStyleSheets = [o]);
48
52
  } });
49
53
  export {
50
- R as useCustomInterfaceAppearance
54
+ F as useCustomInterfaceAppearance
51
55
  };
@@ -1,17 +1,25 @@
1
- import { defaultHtmlCompilerRules as r } from "../config/compiler/htmlCompilerRules.js";
2
- import { createHtmlCompiler as p } from "../utils/htmlCompiler.js";
3
- import { useConfig as s } from "./useConfig.js";
4
- const R = () => {
5
- const { config: e } = s(), l = e.htmlCompilerRules || [], t = [
6
- ...!!e.ignoreDefaultHtmlCompilerRules ? [] : r,
1
+ import { defaultHtmlCompilerRules as t } from "../config/compiler/htmlCompilerRules.js";
2
+ import { outlookCompilerRules as p } from "../config/compiler/outlookCompilerRules.js";
3
+ import { recommendationCompilerRules as s } from "../config/compiler/recommendationCompilerRules.js";
4
+ import { socialCompilerRules as u } from "../config/compiler/socialCompilerRules.js";
5
+ import { unsubscribeCompilerRules as n } from "../config/compiler/unsubscribeCompilerRules.js";
6
+ import { createHtmlCompiler as c } from "../utils/htmlCompiler.js";
7
+ import { useConfig as f } from "./useConfig.js";
8
+ const h = () => {
9
+ const { config: e } = f(), l = e.htmlCompilerRules || [], m = [
10
+ ...!!e.ignoreDefaultHtmlCompilerRules ? [] : t,
11
+ ...s,
12
+ ...n,
13
+ ...p,
14
+ ...u,
7
15
  ...l.map((o, i) => ({
8
16
  ...o,
9
17
  priority: o.priority + 1e3 + i
10
18
  // Ensure additional rules run after default rules
11
19
  }))
12
- ], m = p(t);
13
- return { compileHtml: (o) => m.compile(o) };
20
+ ], r = c(m);
21
+ return { compileHtml: (o) => r.compile(o) };
14
22
  };
15
23
  export {
16
- R as useHtmlCompiler
24
+ h as useHtmlCompiler
17
25
  };
@@ -0,0 +1,3 @@
1
+ export declare const useHtmlValidator: () => {
2
+ validateHtml: (html: string, customFields: string[], isOnSaveValidation?: boolean) => Promise<boolean>;
3
+ };
@@ -0,0 +1,120 @@
1
+ import { useConfig as V } from "./useConfig.js";
2
+ import { TemplateTypes as H } from "../enums/defaults.js";
3
+ import { DISPLAY_CONDITIONS_REGEX as O, DISPLAY_CONDITIONS_EXCEPTIONS_REGEX as B, CampaignCouldNotBeSavedKey as _, CanNotMakeAnyChangesForRunningKey as R } from "../enums/html-validator.js";
4
+ import { ToasterTypeOptions as r } from "../enums/toaster.js";
5
+ import { useRecommendationStore as D } from "../stores/recommendation.js";
6
+ import { base64EncodeWithSpecialChars as P } from "../utils/base64.js";
7
+ import { useHttp as X } from "./useHttp.js";
8
+ import { useToaster as j } from "./useToaster.js";
9
+ import { useTranslations as z } from "./useTranslations.js";
10
+ const tt = () => {
11
+ var d;
12
+ const { showToaster: a } = j(), { post: y } = X(), { config: C } = V(), i = z(), m = D(), f = ((d = C.partner) == null ? void 0 : d.messageType) === H.transactional, h = async (t) => {
13
+ const e = await y(
14
+ "/newsletter/template-library/check-template-html-body",
15
+ { html: P(t) }
16
+ ), { status: n, message: c } = e.data;
17
+ return n || a({
18
+ type: r.Alert,
19
+ message: n === void 0 ? c : i("newsletter.invalid-url-link-for-toaster")
20
+ }), i(_), c === i(R) && a({
21
+ type: r.Alert,
22
+ message: i("newsletter.already-in-progress")
23
+ }), n;
24
+ }, v = (t) => !["if", "endif", "else", "elif", "now"].includes(t.toLowerCase()), w = (t) => ["if", "endif"].includes(t.toLowerCase()), S = (t, s) => {
25
+ const e = t.match(/({%(.*?)%})/g);
26
+ let n = !0;
27
+ return e !== null && !f && e.forEach((c) => {
28
+ const o = c.slice(2, -2).trim().match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);
29
+ if (o && o.length > 0) {
30
+ const [l] = o;
31
+ v(l) && !s.includes(l) && (a({
32
+ type: r.Warning,
33
+ message: i("custom-fields.invalid-custom-fields")
34
+ }), n = !1);
35
+ }
36
+ }), n;
37
+ }, E = async (t, s, e) => {
38
+ const n = e ? await h(t) : !0;
39
+ return S(t, s) && n;
40
+ }, T = (t) => t.length > 0 ? !0 : (a({
41
+ type: r.Warning,
42
+ message: i("newsletter.html-content-is-empty")
43
+ }), !1), I = (t) => {
44
+ const s = (t.match(/{/gm) || []).length, e = (t.match(/}/gm) || []).length;
45
+ return s > e && a({
46
+ type: r.Warning,
47
+ message: i("custom-fields.missing-closing-braces")
48
+ }), s < e && a({
49
+ type: r.Warning,
50
+ message: i("custom-fields.missing-opening-braces")
51
+ }), s === e;
52
+ }, A = (t) => {
53
+ const s = t.match(/{{\s*(\w+\s+((\w+\|\w+)|(\w+)))\s*}}/gm) === null;
54
+ return s || a({
55
+ type: r.Warning,
56
+ message: i("custom-fields.invalid-custom-fields")
57
+ }), s;
58
+ }, W = (t, s) => {
59
+ const e = t.match(/{{([a-zA-Z0-9_\s]*)}}/gm);
60
+ if (e && !f) {
61
+ const n = s.map((o) => o.toLowerCase()), c = e.some((o) => {
62
+ const l = o.replace("{{", "").replace("}}", "").trim().toLowerCase();
63
+ return !n.includes(l) || l === "";
64
+ });
65
+ return c && a({
66
+ type: r.Warning,
67
+ message: i("custom-fields.invalid-custom-fields")
68
+ }), !c;
69
+ }
70
+ return !0;
71
+ }, x = (t) => {
72
+ const s = t.match(/{%(.*?)%}/g), e = [];
73
+ let n = !0;
74
+ if (s && s.forEach((c) => {
75
+ const o = c.match(O), l = c.match(B), L = (o == null ? void 0 : o.join("")) || "";
76
+ (!o || c !== L) && !l && (a({
77
+ type: r.Alert,
78
+ message: i("newsletter.display-conditions-invalid-syntax")
79
+ }), n = !1), o && o.forEach((u) => {
80
+ u.trim() === "=" && (a({
81
+ type: r.Alert,
82
+ message: i("custom-conditions.wrong-equality-operators")
83
+ }), n = !1);
84
+ const g = u.match(/^[a-zA-Z]*$/g);
85
+ g && g.forEach((p) => {
86
+ w(p) && e.push(p);
87
+ });
88
+ });
89
+ }), e.length) {
90
+ const c = e.filter((l) => l === "if"), o = e.filter((l) => l === "endif");
91
+ c.length !== o.length && (a({
92
+ type: r.Alert,
93
+ message: i("custom-conditions.missing-if-endif-tag")
94
+ }), n = !1);
95
+ }
96
+ return n;
97
+ }, b = (t) => {
98
+ const s = (t.match(/{% /gm) || []).length, e = (t.match(/ %}/gm) || []).length, n = s === e;
99
+ return n || a({
100
+ type: r.Warning,
101
+ message: i("custom-conditions.no-space-after-braces")
102
+ }), n;
103
+ }, N = (t) => (t.match(/({%(.*?)%})/g) || []).filter((e) => e.includes("if")).map((e) => (e.match(/{{.*}}/gm) || []).length).reduce((e, n) => e + n, 0) > 0 ? (a({
104
+ type: r.Warning,
105
+ message: i("custom-conditions.no-braces-inside-if-tag")
106
+ }), !1) : !0, k = () => m.recommendationConfigs && Object.values(m.recommendationConfigs).find((s) => s.filters.find((e) => e.value === "")) !== void 0 ? (a({
107
+ type: r.Alert,
108
+ message: i("newsletter.fill-all-necessary-fields")
109
+ }), !1) : !0, F = (t) => {
110
+ const s = /src="[^"]*\.(svg|pst)"/gm;
111
+ return t.match(s) === null ? !0 : (a({
112
+ type: r.Alert,
113
+ message: i("newsletter.invalid-image-type")
114
+ }), !1);
115
+ };
116
+ return { validateHtml: async (t, s, e = !1) => await E(t, s, e) && T(t) && I(t) && A(t) && W(t, s) && x(t) && b(t) && N(t) && k() && F(t) };
117
+ };
118
+ export {
119
+ tt as useHtmlValidator
120
+ };
@@ -1,4 +1,5 @@
1
1
  export declare const usePartner: () => {
2
2
  getPartnerName: () => string;
3
3
  getProductType: () => number;
4
+ isTestPartner: () => boolean;
4
5
  };
@@ -1,11 +1,18 @@
1
- import { DefaultProductType as e, ProductIds as o } from "../enums/defaults.js";
2
- const c = () => ({
3
- getPartnerName: () => window.location.hostname.split(".")[0] || "",
4
- getProductType: () => {
5
- const t = window.location.pathname.split("/").filter(Boolean)[0] || e;
6
- return o[t] || 0;
7
- }
8
- });
1
+ import { TEST_PARTNER_LIST as r, DefaultProductType as o, ProductIds as n } from "../enums/defaults.js";
2
+ const i = () => {
3
+ const e = () => window.location.hostname.split(".")[0] || "";
4
+ return {
5
+ getPartnerName: e,
6
+ getProductType: () => {
7
+ const t = window.location.pathname.split("/").filter(Boolean)[0] || o;
8
+ return n[t] || 0;
9
+ },
10
+ isTestPartner: () => {
11
+ const t = e();
12
+ return r.includes(t);
13
+ }
14
+ };
15
+ };
9
16
  export {
10
- c as usePartner
17
+ i as usePartner
11
18
  };
@@ -1,27 +1,26 @@
1
- import { useEditorStore as p } from "../stores/editor.js";
2
- import { useOnboardingStore as m } from "../stores/onboarding.js";
1
+ import { useEditorStore as n } from "../stores/editor.js";
3
2
  import { usePreviewStore as l } from "../stores/preview.js";
4
- import { useActionsApi as c } from "./useActionsApi.js";
5
- import { useCodeEditorApi as u } from "./useCodeEditorApi.js";
3
+ import { useActionsApi as m } from "./useActionsApi.js";
4
+ import { useCodeEditorApi as p } from "./useCodeEditorApi.js";
6
5
  const E = () => {
7
- const e = p(), o = l(), t = m(), { closeCodeEditor: a } = u(), { getPreviewData: s } = c(), i = () => {
8
- t.isActive("ampOnboarding") && t.close("ampOnboarding"), e.isPreviewModeOpen = !1, o.$reset();
6
+ const o = n(), e = l(), { closeCodeEditor: a } = p(), { getPreviewData: s } = m(), r = () => {
7
+ o.isPreviewModeOpen = !1, e.$reset();
9
8
  };
10
9
  return {
11
- closePreviewMode: i,
10
+ closePreviewMode: r,
12
11
  openPreviewMode: () => {
13
- e.isCodeEditorOpen && a(), e.isPreviewModeOpen = !0;
12
+ o.isCodeEditorOpen && a(), o.isPreviewModeOpen = !0;
14
13
  },
15
14
  loadPreviewData: async () => {
16
- if (!(e.loadingStatus || o.isLoaded)) {
17
- e.loadingStatus = !0;
15
+ if (!(o.loadingStatus || e.isLoaded)) {
16
+ o.loadingStatus = !0;
18
17
  try {
19
- const { html: r, ampHtml: d, ampErrors: n } = await s();
20
- o.templateHtml = r || "", o.updateAMPData({ ampHtml: d || "", ampErrors: n || [] }), o.isLoaded = !0;
21
- } catch (r) {
22
- console.error("Failed to load preview data:", r), i();
18
+ const { html: t, ampHtml: i, ampErrors: d } = await s();
19
+ e.templateHtml = t || "", e.ampHtml = i || "", e.ampErrors = d || [], e.setEmailFormat(i ? "AMP" : "html"), e.isLoaded = !0;
20
+ } catch (t) {
21
+ console.error("Failed to load preview data:", t), r();
23
22
  } finally {
24
- e.loadingStatus = !1;
23
+ o.loadingStatus = !1;
25
24
  }
26
25
  }
27
26
  }
@@ -0,0 +1,19 @@
1
+ type CardWidthParams = {
2
+ mobileLeftPadding: number;
3
+ mobileRightPadding: number;
4
+ cardsInRow: number;
5
+ unresponsive: boolean;
6
+ };
7
+ interface CampaignData extends CardWidthParams {
8
+ textTrimming: boolean;
9
+ orientation: string;
10
+ priceBeforeTextValue: string;
11
+ priceAfterTextValue: string;
12
+ discountBeforeTextValue: string;
13
+ discountAfterTextValue: string;
14
+ }
15
+ export declare const useRecommendation: () => {
16
+ calculateCardWidth: ({ mobileLeftPadding, mobileRightPadding, cardsInRow, unresponsive, }: CardWidthParams) => number;
17
+ getRecommendationCampaignData: (id: string) => CampaignData;
18
+ };
19
+ export {};
@@ -0,0 +1,27 @@
1
+ import { MinDeviceViewport as r, DefaultPadding as c } from "../enums/recommendation.js";
2
+ const m = () => ({
3
+ calculateCardWidth: ({
4
+ mobileLeftPadding: e,
5
+ mobileRightPadding: a,
6
+ cardsInRow: n,
7
+ unresponsive: i
8
+ }) => {
9
+ const t = i ? n : 1, o = e + a + (t - 1) * c;
10
+ return (r - o) / t;
11
+ },
12
+ getRecommendationCampaignData: (e) => (console.debug(e), {
13
+ textTrimming: !1,
14
+ orientation: "vertical",
15
+ mobileLeftPadding: 0,
16
+ mobileRightPadding: 0,
17
+ cardsInRow: 2,
18
+ unresponsive: !1,
19
+ priceBeforeTextValue: "",
20
+ priceAfterTextValue: "",
21
+ discountBeforeTextValue: "",
22
+ discountAfterTextValue: ""
23
+ })
24
+ });
25
+ export {
26
+ m as useRecommendation
27
+ };
@@ -0,0 +1,4 @@
1
+ import { SavedTemplateDetails } from '@@/Types/stripo';
2
+ export declare const useSave: () => {
3
+ save: (isSilent?: boolean) => Promise<SavedTemplateDetails | undefined>;
4
+ };
@@ -0,0 +1,15 @@
1
+ import { useSaveStart as i, useSaveComplete as l } from "./useGuidoActions.js";
2
+ import { useTemplatePreparation as m } from "../utils/templatePreparation.js";
3
+ import { useHtmlValidator as n } from "./useHtmlValidator.js";
4
+ const f = () => {
5
+ const e = i(), a = l(), { validateHtml: s } = n();
6
+ return { save: async (o = !1) => {
7
+ e();
8
+ const { prepareTemplateDetails: r } = m(), t = await r();
9
+ if (await s(t.compiledHtml, [], !0))
10
+ return o || a(t), t;
11
+ } };
12
+ };
13
+ export {
14
+ f as useSave
15
+ };
@@ -1,21 +1,22 @@
1
1
  import { useActionsApi as f } from "./useActionsApi.js";
2
2
  import { useCustomInterfaceAppearance as S } from "./useCustomInterfaceAppearance.js";
3
- import { useStripoEventHandler as E } from "./useStripoEventHandler.js";
4
- import { useToaster as C } from "./useToaster.js";
3
+ import { useStripoEventHandler as C } from "./useStripoEventHandler.js";
4
+ import { useToaster as E } from "./useToaster.js";
5
5
  import { displayConditions as y } from "../enums/displayConditions.js";
6
6
  import h from "../extensions/DynamicContent/extension.js";
7
7
  import { useStripoApi as w } from "../services/stripoApi.js";
8
- import { useEditorStore as b } from "../stores/editor.js";
9
- import { dynamicContentToMergeTags as V } from "../utils/genericUtil.js";
10
- const D = (d) => {
11
- const { handleError: a } = C(), { getToken: c, getCustomFonts: u } = w(), { handleEvent: l } = E(), p = (r, i = []) => {
12
- const o = b(), { html: e, css: s, forceRecreate: g } = r;
8
+ import b from "../static/styles/customEditorStyle.css.js";
9
+ import { useEditorStore as V } from "../stores/editor.js";
10
+ import { dynamicContentToMergeTags as _ } from "../utils/genericUtil.js";
11
+ const R = (s) => {
12
+ const { handleError: d } = E(), { getToken: c, getCustomFonts: u } = w(), { handleEvent: l } = C(), p = (r, i = []) => {
13
+ const e = V(), { html: o, css: a, forceRecreate: g } = r;
13
14
  window.UIEditor.initEditor(
14
15
  document.querySelector("#guido-editor"),
15
16
  {
16
- metadata: d,
17
- html: e,
18
- css: s,
17
+ metadata: s,
18
+ html: o,
19
+ css: a,
19
20
  forceRecreate: g,
20
21
  locale: "en",
21
22
  undoButtonSelector: "#guido__undo-button",
@@ -26,15 +27,13 @@ const D = (d) => {
26
27
  customAppearanceMergetags: !0,
27
28
  customAppearanceMergetagsBorderColor: "#f1f3fe",
28
29
  customAppearanceMergetagsBackgroundColor: "#f1f3fe",
29
- customViewStyles: `
30
- .esd-x, .esd-merge-tag {color: #0a2ecc !important; box-shadow: none !important;}
31
- .esd-merge-tag {border: 1px solid #b5c1f1; border-radius: 4px !important;}
32
- `,
30
+ customViewStyles: b,
33
31
  conditionsEnabled: !0,
34
32
  customConditionsEnabled: !0,
35
33
  conditionCategories: y,
36
34
  enableXSSSecurity: !0,
37
35
  messageSettingsEnabled: !1,
36
+ selectBlockAfterDropFromSettingsPanel: !0,
38
37
  editorFonts: {
39
38
  showDefaultStandardFonts: !0,
40
39
  showDefaultNotStandardFonts: !0,
@@ -42,7 +41,7 @@ const D = (d) => {
42
41
  },
43
42
  mergeTags: [
44
43
  {
45
- entries: V(d.preselectedDynamicContentList)
44
+ entries: _(s.preselectedDynamicContentList)
46
45
  }
47
46
  ],
48
47
  async onTokenRefreshRequest(t) {
@@ -50,46 +49,48 @@ const D = (d) => {
50
49
  const n = await c();
51
50
  t(n);
52
51
  } catch (n) {
53
- a(n, "Failed to refresh token");
52
+ d(n, "Failed to refresh token");
54
53
  }
55
54
  },
56
55
  onTemplateLoaded() {
57
56
  try {
58
57
  const { importCss: t } = S(), { activateCustomViewStyles: n } = f();
59
- t(), n(), o.isStripoInitialized = !0, o.loadingStatus = !1;
58
+ t(), n(), s.onReady(), e.isStripoInitialized = !0, e.loadingStatus = !1, setTimeout(() => {
59
+ e.hasChanges = !1;
60
+ }, 1e3);
60
61
  } catch (t) {
61
- a(t, "Failed to load custom interface appearance");
62
+ d(t, "Failed to load custom interface appearance");
62
63
  }
63
64
  },
64
65
  onCodeEditorVisibilityChanged(t) {
65
- o.isCodeEditorOpen = t;
66
+ e.isCodeEditorOpen = t;
66
67
  },
67
68
  onEditorVisualModeChanged(t) {
68
- o.editorVisualMode = t.toLowerCase();
69
+ e.editorVisualMode = t.toLowerCase();
69
70
  },
70
71
  onVersionHistoryVisibilityChanged(t) {
71
- o.isVersionHistoryOpen = t;
72
+ e.isVersionHistoryOpen = t;
72
73
  },
73
74
  onDataChanged() {
74
- o.hasChanges = !0;
75
+ e.hasChanges = !0;
75
76
  },
76
77
  onEvent: l,
77
- ignoreClickOutsideSelectors: ["#guido-dynamic-content-modal"],
78
+ ignoreClickOutsideSelectors: ["#guido-dynamic-content-modal", ".in-on-board-wrapper"],
78
79
  extensions: [h]
79
80
  }
80
81
  );
81
- }, m = (r) => new Promise((i, o) => {
82
+ }, m = (r) => new Promise((i, e) => {
82
83
  if (document.getElementById("UiEditorScript")) {
83
84
  r(), i();
84
85
  return;
85
86
  }
86
- const e = document.createElement("script");
87
- e.id = "UiEditorScript", e.type = "module", e.src = "https://plugins.stripo.email/resources/uieditor/latest/UIEditor.js", e.onload = () => {
87
+ const o = document.createElement("script");
88
+ o.id = "UiEditorScript", o.type = "module", o.src = "https://plugins.stripo.email/resources/uieditor/latest/UIEditor.js", o.onload = () => {
88
89
  r(), i();
89
- }, e.onerror = () => {
90
- const s = new Error("Failed to load Stripo UIEditor script");
91
- o(s);
92
- }, document.body.appendChild(e);
90
+ }, o.onerror = () => {
91
+ const a = new Error("Failed to load Stripo UIEditor script");
92
+ e(a);
93
+ }, document.body.appendChild(o);
93
94
  });
94
95
  return { initPlugin: async (r) => {
95
96
  await m(async () => {
@@ -99,5 +100,5 @@ const D = (d) => {
99
100
  } };
100
101
  };
101
102
  export {
102
- D as useStripo
103
+ R as useStripo
103
104
  };
@@ -1,20 +1,20 @@
1
- import { useOnboardingStore as r } from "../stores/onboarding.js";
2
- const d = () => {
3
- const o = {
1
+ import { useOnboardingStore as i } from "../stores/onboarding.js";
2
+ const c = () => {
3
+ const e = {
4
4
  block_dropped: ({ blockName: t }) => {
5
5
  if (t === "BLOCK_TEXT") {
6
- const n = r();
7
- if (!n.shouldShowOnboarding("textBlockOnboarding") || n.isActive("textBlockOnboarding"))
6
+ const n = i(), o = !n.shouldShowOnboarding("textBlockOnboarding"), r = n.isActive("textBlockOnboarding");
7
+ if (o || r)
8
8
  return;
9
9
  n.start("textBlockOnboarding");
10
10
  }
11
11
  }
12
12
  };
13
13
  return { handleEvent: async (t, n) => {
14
- const e = o[t];
15
- e && await e(n);
14
+ const o = e[t];
15
+ o && await o(n);
16
16
  } };
17
17
  };
18
18
  export {
19
- d as useStripoEventHandler
19
+ c as useStripoEventHandler
20
20
  };