@useinsider/guido 1.0.2-beta.042c129 → 1.0.2-beta.05f3233

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 (135) hide show
  1. package/README.md +1 -1
  2. package/dist/@types/generic.d.ts +4 -0
  3. package/dist/components/Guido.vue.js +5 -5
  4. package/dist/components/Guido.vue2.js +51 -50
  5. package/dist/components/organisms/email-preview/amp/AmpToggle.vue.js +3 -2
  6. package/dist/components/organisms/header/LeftSlot.vue.js +10 -10
  7. package/dist/components/organisms/header/LeftSlot.vue2.js +23 -10
  8. package/dist/composables/useCustomInterfaceAppearance.js +22 -18
  9. package/dist/composables/useHtmlValidator.d.ts +2 -1
  10. package/dist/composables/useHtmlValidator.js +114 -95
  11. package/dist/composables/useSave.js +6 -6
  12. package/dist/composables/useStripo.js +25 -24
  13. package/dist/config/migrator/checkboxMigrator.d.ts +1 -0
  14. package/dist/config/migrator/checkboxMigrator.js +83 -0
  15. package/dist/config/migrator/index.d.ts +1 -0
  16. package/dist/config/migrator/index.js +5 -0
  17. package/dist/extensions/Blocks/Checkbox/block.d.ts +10 -0
  18. package/dist/extensions/Blocks/Checkbox/block.js +39 -0
  19. package/dist/extensions/Blocks/Checkbox/control.d.ts +22 -0
  20. package/dist/extensions/Blocks/Checkbox/control.js +104 -0
  21. package/dist/extensions/Blocks/Checkbox/extension.d.ts +2 -0
  22. package/dist/extensions/Blocks/Checkbox/extension.js +20 -0
  23. package/dist/extensions/Blocks/Checkbox/settingsPanel.d.ts +4 -0
  24. package/dist/extensions/Blocks/Checkbox/settingsPanel.js +38 -0
  25. package/dist/extensions/Blocks/Checkbox/template.d.ts +6 -0
  26. package/dist/extensions/Blocks/Checkbox/template.js +75 -0
  27. package/dist/extensions/Blocks/_Boilerplate/block.d.ts +10 -0
  28. package/dist/extensions/Blocks/_Boilerplate/control.d.ts +17 -0
  29. package/dist/extensions/Blocks/_Boilerplate/extension.d.ts +2 -0
  30. package/dist/extensions/Blocks/_Boilerplate/settingsPanel.d.ts +4 -0
  31. package/dist/extensions/Blocks/_Boilerplate/template.d.ts +6 -0
  32. package/dist/extensions/DynamicContent/dynamic-content.js +41 -27
  33. package/dist/extensions/DynamicContent/extension.js +18 -6
  34. package/dist/guido.css +1 -1
  35. package/dist/mock/api/unsubscribe.d.ts +2 -0
  36. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/Extension.js +72 -48
  37. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/ExtensionBuilder.js +74 -49
  38. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/Block.js +120 -38
  39. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/AiAssistantValueType.js +5 -11
  40. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockCompositionType.js +5 -11
  41. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockName.js +12 -0
  42. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockType.js +5 -11
  43. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BuiltInControlTypes.js +116 -101
  44. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/ContextActionType.js +5 -11
  45. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/EditorStatePropertyType.js +5 -11
  46. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/PanelPosition.js +5 -11
  47. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/Popover.js +12 -0
  48. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/PreviewDeviceMode.js +5 -11
  49. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/SettingsTab.js +5 -11
  50. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/UIElementType.js +5 -11
  51. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/UIElementsAttributes.js +22 -43
  52. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/Control.js +21 -17
  53. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/SettingsPanelRegistry.js +8 -15
  54. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/SettingsPanelTab.js +30 -29
  55. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/modifications/ModificationDescription.js +19 -23
  56. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/ui-elements/UIElement.js +37 -19
  57. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/ui-elements/UIElementTagRegistry.js +2 -15
  58. package/dist/static/styles/components/alert-message.css.js +32 -2
  59. package/dist/static/styles/components/button.css.js +32 -2
  60. package/dist/static/styles/components/notification.css.js +55 -0
  61. package/dist/static/styles/components/popup.css.js +68 -0
  62. package/dist/static/styles/components/wide-panel.css.js +5 -1
  63. package/dist/static/styles/customEditorStyle.css.js +6 -0
  64. package/dist/static/styles/variables.css.js +10 -0
  65. package/dist/stores/dynamic-content.d.ts +12 -0
  66. package/dist/stores/dynamic-content.js +7 -6
  67. package/dist/utils/genericUtil.js +9 -6
  68. package/package.json +2 -2
  69. package/dist/_virtual/AddCustomFont.js +0 -4
  70. package/dist/_virtual/AiAssistantValueType.js +0 -4
  71. package/dist/_virtual/BackgroundColorBuiltInControl.js +0 -4
  72. package/dist/_virtual/BackgroundImageBuiltInControl.js +0 -4
  73. package/dist/_virtual/Block.js +0 -4
  74. package/dist/_virtual/BlockAttributes.js +0 -4
  75. package/dist/_virtual/BlockCompositionType.js +0 -4
  76. package/dist/_virtual/BlockPaddingsBuiltInControl.js +0 -4
  77. package/dist/_virtual/BlockRenderer.js +0 -4
  78. package/dist/_virtual/BlockType.js +0 -4
  79. package/dist/_virtual/BlocksPanel.js +0 -4
  80. package/dist/_virtual/BuiltInControl.js +0 -4
  81. package/dist/_virtual/BuiltInControlTypes.js +0 -4
  82. package/dist/_virtual/ButtonBorderBuiltInControl.js +0 -4
  83. package/dist/_virtual/ButtonColorBuiltInControl.js +0 -4
  84. package/dist/_virtual/ButtonFontColorBuiltInControl.js +0 -4
  85. package/dist/_virtual/ButtonInternalIndentsBuiltInControl.js +0 -4
  86. package/dist/_virtual/ButtonTextBuiltInControl.js +0 -4
  87. package/dist/_virtual/ContextAction.js +0 -4
  88. package/dist/_virtual/ContextActionType.js +0 -4
  89. package/dist/_virtual/Control.js +0 -4
  90. package/dist/_virtual/EditorStatePropertyType.js +0 -4
  91. package/dist/_virtual/Extension.js +0 -4
  92. package/dist/_virtual/ExtensionBuilder.js +0 -4
  93. package/dist/_virtual/FontFamilyBuiltInControl.js +0 -4
  94. package/dist/_virtual/LinkColorBuiltInControl.js +0 -4
  95. package/dist/_virtual/ModificationDescription.js +0 -4
  96. package/dist/_virtual/PanelPosition.js +0 -4
  97. package/dist/_virtual/PreviewDeviceMode.js +0 -4
  98. package/dist/_virtual/SettingsPanelRegistry.js +0 -4
  99. package/dist/_virtual/SettingsPanelTab.js +0 -4
  100. package/dist/_virtual/SettingsTab.js +0 -4
  101. package/dist/_virtual/StructureBorderBuiltInControl.js +0 -4
  102. package/dist/_virtual/StructurePaddingsBuiltInControl.js +0 -4
  103. package/dist/_virtual/TextColorBuiltInControl.js +0 -4
  104. package/dist/_virtual/TextLineSpacingBuiltInControl.js +0 -4
  105. package/dist/_virtual/TextSizeBuiltInControl.js +0 -4
  106. package/dist/_virtual/TextStyleBuiltInControl.js +0 -4
  107. package/dist/_virtual/UIElement.js +0 -4
  108. package/dist/_virtual/UIElementTagRegistry.js +0 -4
  109. package/dist/_virtual/UIElementType.js +0 -4
  110. package/dist/_virtual/UIElementsAttributes.js +0 -4
  111. package/dist/_virtual/index.js +0 -5
  112. package/dist/_virtual/index2.js +0 -4
  113. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/BlockRenderer.js +0 -18
  114. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/BlocksPanel.js +0 -32
  115. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/blocks/ContextAction.js +0 -18
  116. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/AddCustomFont.js +0 -8
  117. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/constants/BlockAttributes.js +0 -34
  118. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BackgroundColorBuiltInControl.js +0 -43
  119. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BackgroundImageBuiltInControl.js +0 -46
  120. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BlockPaddingsBuiltInControl.js +0 -44
  121. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/BuiltInControl.js +0 -22
  122. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonBorderBuiltInControl.js +0 -46
  123. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonColorBuiltInControl.js +0 -46
  124. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonFontColorBuiltInControl.js +0 -45
  125. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonInternalIndentsBuiltInControl.js +0 -45
  126. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/ButtonTextBuiltInControl.js +0 -45
  127. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/FontFamilyBuiltInControl.js +0 -43
  128. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/LinkColorBuiltInControl.js +0 -45
  129. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/StructureBorderBuiltInControl.js +0 -46
  130. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/StructurePaddingsBuiltInControl.js +0 -44
  131. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextColorBuiltInControl.js +0 -43
  132. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextLineSpacingBuiltInControl.js +0 -43
  133. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextSizeBuiltInControl.js +0 -45
  134. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/controls/TextStyleBuiltInControl.js +0 -43
  135. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/index.js +0 -266
package/README.md CHANGED
@@ -643,6 +643,6 @@ ISC License
643
643
  ## 🎯 TODO:
644
644
  - CSS part should be optimized with variables & `sass-loader`.
645
645
  - Master Version Generator should be fixed.
646
- - Playwright integration
646
+ - Playwright integrationBoilerplate/control.ts
647
647
  - Commitlint & Precommit Hooks integration
648
648
  - Get Pre-built display conditions from API
@@ -22,6 +22,10 @@ export type DynamicContent = {
22
22
  value: string;
23
23
  text: string;
24
24
  fallback?: string;
25
+ format?: {
26
+ key: string;
27
+ value: string;
28
+ };
25
29
  };
26
30
  export interface EmailHeader {
27
31
  senderName: string;
@@ -1,16 +1,16 @@
1
- import a from "./Guido.vue2.js";
1
+ import o from "./Guido.vue2.js";
2
2
  /* empty css */
3
3
  import i from "../_virtual/_plugin-vue2_normalizer.js";
4
4
  var t = function() {
5
- var o = this, r = o._self._c, e = o._self._setupProxy;
6
- return r("div", { staticClass: "guido-editor__wrapper", class: { "guido-editor__no-header": e.noHeader } }, [r(e.HeaderWrapper, { ref: "headerWrapperRef" }), e.editorStore.isPreviewModeOpen ? r(e.PreviewContainer) : o._e(), r("div", { directives: [{ name: "show", rawName: "v-show", value: !e.previewStore.isLoaded, expression: "!previewStore.isLoaded" }], staticClass: "guido-editor__container", class: { "guido-editor__no-header": e.noHeader }, attrs: { id: "guido-editor" } }), r(e.Toaster), r(e.SaveAsTemplateDrawer), e.isTestPartner() ? o._e() : r(e.OnboardingWrapper), r(e.LoadingWrapper)], 1);
5
+ var a = this, r = a._self._c, e = a._self._setupProxy;
6
+ return r("div", { staticClass: "guido-editor__wrapper", class: { "guido-editor__no-header": e.noHeader } }, [r(e.HeaderWrapper, { ref: "headerWrapperRef" }), e.editorStore.isPreviewModeOpen ? r(e.PreviewContainer) : a._e(), r("div", { directives: [{ name: "show", rawName: "v-show", value: !e.previewStore.isLoaded, expression: "!previewStore.isLoaded" }], staticClass: "guido-editor__container", class: { "guido-editor__no-header": e.noHeader }, attrs: { id: "guido-editor" } }), r(e.Toaster), r(e.SaveAsTemplateDrawer), e.isTestPartner() ? a._e() : r(e.OnboardingWrapper), r(e.LoadingWrapper)], 1);
7
7
  }, s = [], d = /* @__PURE__ */ i(
8
- a,
8
+ o,
9
9
  t,
10
10
  s,
11
11
  !1,
12
12
  null,
13
- "cc1f9260"
13
+ "aca05338"
14
14
  );
15
15
  const v = d.exports;
16
16
  export {
@@ -1,18 +1,19 @@
1
- import { defineComponent as N, defineAsyncComponent as E, ref as H, computed as G, watch as R, onMounted as U, onUnmounted as x } from "vue";
2
- import { provideGuidoActions as F } from "../composables/useGuidoActions.js";
3
- import { usePartner as M } from "../composables/usePartner.js";
4
- import { useStripo as z } from "../composables/useStripo.js";
5
- import { DefaultUsername as B, DefaultMessageType as K, DefaultGuidoConfig as O } from "../enums/defaults.js";
6
- import j from "./organisms/base/Toaster.vue.js";
7
- import q from "./organisms/header/HeaderWrapper.vue.js";
8
- import J from "./organisms/LoadingWrapper.vue.js";
9
- import Q from "./organisms/save-as-template/SaveAsTemplateDrawer.vue.js";
10
- import { useStripoApi as V } from "../services/stripoApi.js";
11
- import { useDynamicContentStore as X } from "../stores/dynamic-content.js";
12
- import { useEditorStore as Y } from "../stores/editor.js";
13
- import { usePreviewStore as Z } from "../stores/preview.js";
14
- import $ from "../node_modules/lodash-es/merge.js";
15
- const ge = /* @__PURE__ */ N({
1
+ import { defineComponent as H, defineAsyncComponent as E, ref as R, computed as G, watch as U, onMounted as x, onUnmounted as F } from "vue";
2
+ import { provideGuidoActions as M } from "../composables/useGuidoActions.js";
3
+ import { usePartner as z } from "../composables/usePartner.js";
4
+ import { useStripo as B } from "../composables/useStripo.js";
5
+ import { migrate as P } from "../config/migrator/index.js";
6
+ import { DefaultUsername as K, DefaultMessageType as O, DefaultGuidoConfig as j } from "../enums/defaults.js";
7
+ import q from "./organisms/base/Toaster.vue.js";
8
+ import J from "./organisms/header/HeaderWrapper.vue.js";
9
+ import Q from "./organisms/LoadingWrapper.vue.js";
10
+ import V from "./organisms/save-as-template/SaveAsTemplateDrawer.vue.js";
11
+ import { useStripoApi as X } from "../services/stripoApi.js";
12
+ import { useDynamicContentStore as Y } from "../stores/dynamic-content.js";
13
+ import { useEditorStore as Z } from "../stores/editor.js";
14
+ import { usePreviewStore as $ } from "../stores/preview.js";
15
+ import ee from "../node_modules/lodash-es/merge.js";
16
+ const ye = /* @__PURE__ */ H({
16
17
  __name: "Guido",
17
18
  props: {
18
19
  templateId: null,
@@ -27,45 +28,45 @@ const ge = /* @__PURE__ */ N({
27
28
  guidoConfig: null
28
29
  },
29
30
  emits: ["dynamic-content:open", "back", "save:start", "save:complete", "on-change", "ready"],
30
- setup(P, { expose: I, emit: o }) {
31
- const n = P, L = E(
31
+ setup(I, { expose: L, emit: o }) {
32
+ const r = I, _ = E(
32
33
  () => import("./organisms/email-preview/PreviewContainer.vue.js")
33
- ), _ = E(
34
+ ), W = E(
34
35
  () => import("./organisms/onboarding/OnboardingWrapper.vue.js")
35
- ), c = H(), r = X(), d = Y(), W = Z(), t = G(() => d.hasChanges), a = n.preselectedDynamicContentList || [], { getPartnerName: m, getProductType: l, isTestPartner: k } = M(), u = () => {
36
+ ), d = R(), a = Y(), m = Z(), k = $(), t = G(() => m.hasChanges), i = r.preselectedDynamicContentList || [], { getPartnerName: l, getProductType: u, isTestPartner: A } = z(), p = () => {
36
37
  var e;
37
- return (e = c.value) == null ? void 0 : e.handleSave(!0);
38
+ return (e = d.value) == null ? void 0 : e.handleSave(!0);
38
39
  }, {
39
- templateId: p,
40
- userId: g,
41
- guidoConfig: f,
42
- html: y = "",
40
+ templateId: g,
41
+ userId: f,
42
+ guidoConfig: y,
43
+ html: n = "",
43
44
  css: v = "",
44
- partnerName: i = m(),
45
- productType: s = l(),
46
- messageType: C = K,
47
- username: h = B
48
- } = n;
49
- window.GuidoConfig = $(O, f), window.GuidoConfig.partner = {
50
- partnerName: i,
51
- productType: s,
45
+ partnerName: s = l(),
46
+ productType: c = u(),
47
+ messageType: C = O,
48
+ username: h = K
49
+ } = r;
50
+ window.GuidoConfig = ee(j, y), window.GuidoConfig.partner = {
51
+ partnerName: s,
52
+ productType: c,
52
53
  messageType: C
53
54
  };
54
- const { initPlugin: w } = z({
55
- emailId: p,
56
- userId: g,
55
+ const { initPlugin: w } = B({
56
+ emailId: g,
57
+ userId: f,
57
58
  username: h,
58
- partnerName: i,
59
- productType: s,
60
- preselectedDynamicContentList: a,
59
+ partnerName: s,
60
+ productType: c,
61
+ preselectedDynamicContentList: i,
61
62
  onReady: () => {
62
63
  console.debug("guido:ready"), o("ready");
63
64
  }
64
- }), { getDefaultTemplate: S } = V(), A = G(() => {
65
+ }), { getDefaultTemplate: S } = X(), N = G(() => {
65
66
  var e;
66
67
  return !((e = window.GuidoConfig) != null && e.useHeader);
67
68
  });
68
- F({
69
+ M({
69
70
  onBack: () => {
70
71
  console.debug("guido:back"), o("back");
71
72
  },
@@ -77,22 +78,22 @@ const ge = /* @__PURE__ */ N({
77
78
  }
78
79
  });
79
80
  const b = (e) => {
80
- console.debug("dynamic-content:close", e), r.setSelectedDynamicContent(e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
81
+ console.debug("dynamic-content:close", e), a.setSelectedDynamicContent(e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
81
82
  }, D = () => {
82
83
  console.debug("dynamic-content:close", "Without Data"), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: { text: "", value: "" } }));
83
84
  };
84
- return R(() => t.value, () => {
85
+ return U(() => t.value, () => {
85
86
  o("on-change", t.value);
86
- }), U(async () => {
87
+ }), x(async () => {
87
88
  console.debug("Guido says happy coding 🎉"), console.debug("🚗 Ka-Chow");
88
89
  try {
89
90
  let e = {
90
- html: y,
91
+ html: n && P(n),
91
92
  css: v,
92
93
  forceRecreate: !0
93
94
  // TODO: It should be false for old templates. We will communicate with Stripo
94
95
  };
95
- e.html || (e = await S()), await w(e), r.selectedDynamicContentList = a;
96
+ e.html || (e = await S(), e.html = P(e.html)), await w(e), a.selectedDynamicContentList = i;
96
97
  } catch (e) {
97
98
  console.error("Failed to initialize Stripo editor:", e);
98
99
  }
@@ -100,22 +101,22 @@ const ge = /* @__PURE__ */ N({
100
101
  const T = e;
101
102
  console.debug("dynamic-content:open", T.detail), o("dynamic-content:open", T.detail);
102
103
  });
103
- }), x(() => {
104
+ }), F(() => {
104
105
  try {
105
106
  window.UIEditor.removeEditor();
106
107
  } catch {
107
108
  console.debug("Failed to remove Stripo editor: No editor found");
108
109
  }
109
- }), I({
110
+ }), L({
110
111
  dynamicContent: {
111
112
  insert: b,
112
113
  close: D
113
114
  },
114
115
  hasChanges: t,
115
- saveSilent: u
116
- }), { __sfc: !0, PreviewContainer: L, OnboardingWrapper: _, headerWrapperRef: c, dynamicContentStore: r, props: n, editorStore: d, previewStore: W, hasChanges: t, preselectedDynamicContentList: a, getPartnerName: m, getProductType: l, isTestPartner: k, saveSilent: u, templateId: p, userId: g, guidoConfig: f, html: y, css: v, partnerName: i, productType: s, messageType: C, username: h, emit: o, initPlugin: w, getDefaultTemplate: S, noHeader: A, insertDynamicContent: b, closeDynamicContent: D, Toaster: j, HeaderWrapper: q, LoadingWrapper: J, SaveAsTemplateDrawer: Q };
116
+ saveSilent: p
117
+ }), { __sfc: !0, PreviewContainer: _, OnboardingWrapper: W, headerWrapperRef: d, dynamicContentStore: a, props: r, editorStore: m, previewStore: k, hasChanges: t, preselectedDynamicContentList: i, getPartnerName: l, getProductType: u, isTestPartner: A, saveSilent: p, templateId: g, userId: f, guidoConfig: y, html: n, css: v, partnerName: s, productType: c, messageType: C, username: h, emit: o, initPlugin: w, getDefaultTemplate: S, noHeader: N, insertDynamicContent: b, closeDynamicContent: D, Toaster: q, HeaderWrapper: J, LoadingWrapper: Q, SaveAsTemplateDrawer: V };
117
118
  }
118
119
  });
119
120
  export {
120
- ge as default
121
+ ye as default
121
122
  };
@@ -1,8 +1,9 @@
1
1
  import o from "./AmpToggle.vue2.js";
2
+ /* empty css */
2
3
  import n from "../../../../_virtual/_plugin-vue2_normalizer.js";
3
4
  var s = function() {
4
5
  var r = this, t = r._self._c, e = r._self._setupProxy;
5
- return t("div", [t("div", { staticClass: "d-f a-i-c ml-3" }, [t(e.InSegments, { attrs: { id: "guido__amp-toggle", "segment-list": e.segmentList, selected: e.previewStore.emailFormat }, on: { click: e.handleFormatChange } }), e.previewStore.showAMPErrorButton ? t(e.InButtonV2, { staticClass: "ml-2 d-f a-i-c b-c-11 b-c-h-11 t-c-4 t-c-h-4 i-c-4 bor-w-1 bor-s-s bor-c-11 bor-r-2", attrs: { id: "guido__amp-error-button", "left-icon": "line-error-box", type: "danger", "label-text-status": !1 }, on: { click: function(c) {
6
+ return t("div", [t("div", { staticClass: "d-f a-i-c ml-3" }, [t(e.InSegments, { attrs: { id: "guido__amp-toggle", "segment-list": e.segmentList, selected: e.previewStore.emailFormat }, on: { click: e.handleFormatChange } }), e.previewStore.showAMPErrorButton ? t(e.InButtonV2, { staticClass: "ml-2 d-f a-i-c b-c-11 b-c-h-11 t-c-4 t-c-h-4 i-c-4 bor-w-1 bor-s-s bor-c-11 bor-r-2", attrs: { id: "guido__amp-error-button", "left-icon": "line-error-box", type: "danger", "label-text-status": !1 }, on: { click: function(l) {
6
7
  return e.previewStore.openErrorModal();
7
8
  } } }) : r._e()], 1)]);
8
9
  }, a = [], i = /* @__PURE__ */ n(
@@ -11,7 +12,7 @@ var s = function() {
11
12
  a,
12
13
  !1,
13
14
  null,
14
- null
15
+ "b5997368"
15
16
  );
16
17
  const d = i.exports;
17
18
  export {
@@ -1,18 +1,18 @@
1
- import o from "./LeftSlot.vue2.js";
1
+ import s from "./LeftSlot.vue2.js";
2
2
  /* empty css */
3
3
  import r from "../../../_virtual/_plugin-vue2_normalizer.js";
4
- var a = function() {
5
- var e = this, s = e._self._c, t = e._self._setupProxy;
6
- return s("div", { staticClass: "d-f a-i-c" }, [s(t.InButtonV2, { staticClass: "p-2", attrs: { id: "guido__back-button", "label-text": "Back", "left-icon": "line-arrow-left", styling: "text", type: "secondary" }, on: { click: t.handleBack } }), t.editorStore.isVersionHistoryOpen ? s(t.RestoreButton, { staticClass: "ml-3" }) : e._e()], 1);
7
- }, n = [], i = /* @__PURE__ */ r(
8
- o,
9
- a,
4
+ var n = function() {
5
+ var e = this, o = e._self._c, t = e._self._setupProxy;
6
+ return o("div", { staticClass: "d-f a-i-c" }, [o(t.InButtonV2, { staticClass: "p-2", attrs: { id: "guido__back-button", "left-icon": "line-arrow-left", styling: "text", type: "secondary", "label-text": t.backButtonLabel }, on: { click: t.handleBackClick } }), t.editorStore.isVersionHistoryOpen ? o(t.RestoreButton, { staticClass: "ml-3" }) : e._e()], 1);
7
+ }, a = [], i = /* @__PURE__ */ r(
8
+ s,
10
9
  n,
10
+ a,
11
11
  !1,
12
12
  null,
13
- "a18ac2d3"
13
+ "2c168944"
14
14
  );
15
- const d = i.exports;
15
+ const p = i.exports;
16
16
  export {
17
- d as default
17
+ p as default
18
18
  };
@@ -1,15 +1,28 @@
1
- import { defineComponent as r } from "vue";
2
- import { useBack as e } from "../../../composables/useGuidoActions.js";
3
- import { useEditorStore as m } from "../../../stores/editor.js";
4
- import { InButtonV2 as n } from "@useinsider/design-system-vue";
5
- import s from "./version-history/RestoreButton.vue.js";
6
- const c = /* @__PURE__ */ r({
1
+ import { defineComponent as s, computed as c } from "vue";
2
+ import { useBack as m } from "../../../composables/useGuidoActions.js";
3
+ import { usePreviewMode as a } from "../../../composables/usePreviewMode.js";
4
+ import { useTranslations as p } from "../../../composables/useTranslations.js";
5
+ import { useVersionHistoryApi as u } from "../../../composables/useVersionHistoryApi.js";
6
+ import { useEditorStore as d } from "../../../stores/editor.js";
7
+ import { InButtonV2 as f } from "@useinsider/design-system-vue";
8
+ import l from "./version-history/RestoreButton.vue.js";
9
+ const O = /* @__PURE__ */ s({
7
10
  __name: "LeftSlot",
8
- setup(f) {
9
- const o = m(), t = e();
10
- return { __sfc: !0, editorStore: o, handleBack: t, InButtonV2: n, RestoreButton: s };
11
+ setup(k) {
12
+ const o = d(), r = m(), { closeVersionHistory: t } = u(), { closePreviewMode: i } = a(), e = p(), n = c(() => o.isVersionHistoryOpen || o.isPreviewModeOpen ? e("email-editor.back-to-editor") : e("email-editor.back-to-design"));
13
+ return { __sfc: !0, editorStore: o, handleBack: r, closeVersionHistory: t, closePreviewMode: i, trans: e, backButtonLabel: n, handleBackClick: () => {
14
+ if (o.isVersionHistoryOpen) {
15
+ t();
16
+ return;
17
+ }
18
+ if (o.isPreviewModeOpen) {
19
+ i();
20
+ return;
21
+ }
22
+ r();
23
+ }, InButtonV2: f, RestoreButton: l };
11
24
  }
12
25
  });
13
26
  export {
14
- c as default
27
+ O as default
15
28
  };
@@ -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,3 +1,4 @@
1
+ import type { DynamicContent } from '@@/Types/generic';
1
2
  export declare const useHtmlValidator: () => {
2
- validateHtml: (html: string, customFields: string[], isOnSaveValidation?: boolean) => Promise<boolean>;
3
+ validateHtml: (html: string, customFields: DynamicContent[], isOnSaveValidation?: boolean) => Promise<boolean>;
3
4
  };
@@ -1,120 +1,139 @@
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 = () => {
1
+ import { useConfig as H } from "./useConfig.js";
2
+ import { TemplateTypes as V } from "../enums/defaults.js";
3
+ import { DISPLAY_CONDITIONS_REGEX as B, DISPLAY_CONDITIONS_EXCEPTIONS_REGEX as _, CampaignCouldNotBeSavedKey as D, CanNotMakeAnyChangesForRunningKey as P } from "../enums/html-validator.js";
4
+ import { ToasterTypeOptions as l } from "../enums/toaster.js";
5
+ import { useRecommendationStore as R } from "../stores/recommendation.js";
6
+ import { base64EncodeWithSpecialChars as $ } from "../utils/base64.js";
7
+ import { useHttp as j } from "./useHttp.js";
8
+ import { useToaster as G } from "./useToaster.js";
9
+ import { useTranslations as X } from "./useTranslations.js";
10
+ const te = () => {
11
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(
12
+ const { showToaster: c } = G(), { post: y } = j(), { config: h } = H(), o = X(), m = R(), u = ((d = h.partner) == null ? void 0 : d.messageType) === V.transactional, C = async (e) => {
13
+ const t = await y(
14
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")
15
+ { html: $(e) }
16
+ ), { status: n, message: a } = t.data;
17
+ return n || c({
18
+ type: l.Alert,
19
+ message: n === void 0 ? a : o("newsletter.invalid-url-link-for-toaster")
20
+ }), o(D), a === o(P) && c({
21
+ type: l.Alert,
22
+ message: o("newsletter.already-in-progress")
23
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);
24
+ }, v = (e) => !["if", "endif", "else", "elif", "now"].includes(e.toLowerCase()), w = (e) => ["if", "endif"].includes(e.toLowerCase()), S = (e, s) => {
25
+ const t = e.match(/({%(.*?)%})/g);
26
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")
27
+ return t !== null && !u && t.forEach((a) => {
28
+ const i = a.slice(2, -2).trim().match(/(".*?"|[^"\s]+)(?=\s*|\s*$)/g);
29
+ if (i && i.length > 0) {
30
+ const [r] = i;
31
+ v(r) && !s.includes(r) && (c({
32
+ type: l.Warning,
33
+ message: o("custom-fields.invalid-custom-fields")
34
34
  }), n = !1);
35
35
  }
36
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")
37
+ }, b = async (e, s, t) => {
38
+ const n = t ? await C(e) : !0;
39
+ return S(e, s) && n;
40
+ }, E = (e) => e.length > 0 ? !0 : (c({
41
+ type: l.Warning,
42
+ message: o("newsletter.html-content-is-empty")
43
+ }), !1), A = (e) => {
44
+ const s = (e.match(/{/gm) || []).length, t = (e.match(/}/gm) || []).length;
45
+ return s > t && c({
46
+ type: l.Warning,
47
+ message: o("custom-fields.missing-closing-braces")
48
+ }), s < t && c({
49
+ type: l.Warning,
50
+ message: o("custom-fields.missing-opening-braces")
51
+ }), s === t;
52
+ }, x = (e) => {
53
+ const s = e.match(/{{\s*(\w+\s+((\w+\|\w+)|(\w+)))\s*}}/gm) === null;
54
+ return s || c({
55
+ type: l.Warning,
56
+ message: o("custom-fields.invalid-custom-fields")
57
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;
58
+ }, T = (e, s) => {
59
+ const t = e.match(/{{([a-zA-Z0-9_\s]*)}}/gm);
60
+ if (t && !u) {
61
+ const n = new Set(s.map((i) => i.toLowerCase())), a = [];
62
+ if (t.forEach((i) => {
63
+ const r = i.slice(2, -2).trim().toLowerCase();
64
+ (!n.has(r) || r === "") && a.push(r);
65
+ }), a.length > 0) {
66
+ const i = `
67
+ <ul>
68
+ ${a.map((r) => `<li>${r}</li>`).join("")}
69
+ </ul>
70
+ `;
71
+ return c({
72
+ type: l.Alert,
73
+ message: o("custom-fields.invalid-custom-fields") + i
74
+ }), !1;
75
+ }
69
76
  }
70
77
  return !0;
71
- }, x = (t) => {
72
- const s = t.match(/{%(.*?)%}/g), e = [];
78
+ }, k = (e) => {
79
+ const s = e.match(/{%(.*?)%}/g), t = [];
73
80
  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")
81
+ if (s && s.forEach((a) => {
82
+ const i = a.match(B), r = a.match(_), O = (i == null ? void 0 : i.join("")) || "";
83
+ (!i || a !== O) && !r && (c({
84
+ type: l.Alert,
85
+ message: o("newsletter.display-conditions-invalid-syntax")
86
+ }), n = !1), i && i.forEach((f) => {
87
+ f.trim() === "=" && (c({
88
+ type: l.Alert,
89
+ message: o("custom-conditions.wrong-equality-operators")
83
90
  }), n = !1);
84
- const g = u.match(/^[a-zA-Z]*$/g);
91
+ const g = f.match(/^[a-zA-Z]*$/g);
85
92
  g && g.forEach((p) => {
86
- w(p) && e.push(p);
93
+ w(p) && t.push(p);
87
94
  });
88
95
  });
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")
96
+ }), t.length) {
97
+ const a = t.filter((r) => r === "if"), i = t.filter((r) => r === "endif");
98
+ a.length !== i.length && (c({
99
+ type: l.Alert,
100
+ message: o("custom-conditions.missing-if-endif-tag")
94
101
  }), n = !1);
95
102
  }
96
103
  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")
104
+ }, F = (e) => {
105
+ const s = (e.match(/{% /gm) || []).length, t = (e.match(/ %}/gm) || []).length, n = s === t;
106
+ return n || c({
107
+ type: l.Warning,
108
+ message: o("custom-conditions.no-space-after-braces")
102
109
  }), 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
+ }, I = (e) => (e.match(/({%(.*?)%})/g) || []).filter((t) => t.includes("if")).map((t) => (t.match(/{{.*}}/gm) || []).length).reduce((t, n) => t + n, 0) > 0 ? (c({
111
+ type: l.Warning,
112
+ message: o("custom-conditions.no-braces-inside-if-tag")
113
+ }), !1) : !0, W = () => m.recommendationConfigs && Object.values(m.recommendationConfigs).find((s) => s.filters.find((t) => t.value === "")) !== void 0 ? (c({
114
+ type: l.Alert,
115
+ message: o("newsletter.fill-all-necessary-fields")
116
+ }), !1) : !0, L = (e) => {
110
117
  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")
118
+ return e.match(s) === null ? !0 : (c({
119
+ type: l.Alert,
120
+ message: o("newsletter.invalid-image-type")
114
121
  }), !1);
122
+ }, N = (e) => {
123
+ const n = new DOMParser().parseFromString(e, "text/html").querySelectorAll(".checkbox-block-v2");
124
+ return Array.from(n).find((i) => {
125
+ var r;
126
+ return !((r = i.id) != null && r.trim());
127
+ }) ? (c({
128
+ type: l.Alert,
129
+ message: o("unsubscribe-templates.select-checkbox-groups")
130
+ }), !1) : !0;
115
131
  };
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) };
132
+ return { validateHtml: async (e, s, t = !1) => {
133
+ const n = s.map((i) => i.value);
134
+ return await b(e, n, t) && E(e) && A(e) && x(e) && T(e, n) && k(e) && F(e) && I(e) && W() && L(e) && N(e);
135
+ } };
117
136
  };
118
137
  export {
119
- tt as useHtmlValidator
138
+ te as useHtmlValidator
120
139
  };