@useinsider/guido 1.0.3-beta.d74964e → 1.0.3-beta.d929d15

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 (28) hide show
  1. package/README.md +3 -137
  2. package/dist/components/Guido.vue.js +3 -3
  3. package/dist/components/Guido.vue2.js +75 -79
  4. package/dist/components/organisms/header/LeftSlot.vue.js +1 -1
  5. package/dist/components/organisms/header/LeftSlot.vue2.js +15 -16
  6. package/dist/components/organisms/header/RightSlot.vue.js +11 -11
  7. package/dist/composables/useStripo.js +50 -39
  8. package/dist/enums/defaults.js +9 -15
  9. package/dist/extensions/Blocks/Checkbox/extension.js +2 -2
  10. package/dist/extensions/Blocks/CouponBlock/extension.js +2 -2
  11. package/dist/extensions/Blocks/Recommendation/extension.js +4 -4
  12. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +4 -4
  13. package/dist/extensions/DynamicContent/dynamic-content-modal.js +17 -23
  14. package/dist/extensions/DynamicContent/dynamic-content.js +31 -151
  15. package/dist/guido.css +1 -1
  16. package/dist/services/stripoApi.js +1 -1
  17. package/dist/src/@types/generic.d.ts +6 -35
  18. package/dist/src/components/Guido.vue.d.ts +2 -2
  19. package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
  20. package/dist/src/extensions/DynamicContent/dynamic-content-modal.d.ts +2 -9
  21. package/dist/src/extensions/DynamicContent/dynamic-content.d.ts +2 -56
  22. package/dist/src/stores/config.d.ts +1 -7
  23. package/dist/src/stores/dynamic-content.d.ts +2 -2
  24. package/dist/static/styles/components/narrow-panel.css.js +0 -10
  25. package/dist/stores/dynamic-content.js +1 -1
  26. package/package.json +1 -1
  27. package/dist/composables/useBlocksConfig.js +0 -49
  28. package/dist/src/composables/useBlocksConfig.d.ts +0 -11
package/README.md CHANGED
@@ -82,12 +82,10 @@ export default {
82
82
  translationsPath: 'window.trans.en',
83
83
  htmlCompilerRules: [],
84
84
  ignoreDefaultHtmlCompilerRules: false,
85
- backButtonLabel?: "Back to Design",
86
85
  features: {
87
86
  dynamicContent: true,
88
87
  saveAsTemplate: true,
89
- versionHistory: true,
90
- testMessage: true
88
+ versionHistory: true
91
89
  }
92
90
  },
93
91
  dynamicContentModalVisible: false
@@ -196,11 +194,6 @@ interface GuidoConfig {
196
194
  dynamicContent: boolean;
197
195
  saveAsTemplate: boolean;
198
196
  versionHistory: boolean;
199
- testMessage: boolean;
200
- };
201
- blocks?: {
202
- excludeDefaults?: GuidoBlockType[];
203
- includeCustoms?: GuidoCustomBlockType[];
204
197
  };
205
198
  }
206
199
  ```
@@ -215,9 +208,6 @@ interface GuidoConfig {
215
208
  | `features.dynamicContent` | `boolean` | `true` | Enable dynamic content insertion feature |
216
209
  | `features.saveAsTemplate` | `boolean` | `true` | Enable save as template feature |
217
210
  | `features.versionHistory` | `boolean` | `true` | Enable version history feature |
218
- | `blocks` | `BlocksConfig` | `{ excludeDefaults: [], includeCustoms: [] }` | Block configuration for excluding default blocks and including custom blocks. See [Blocks Configuration](#-blocks-configuration) section below |
219
- | `blocks.excludeDefaults` | `GuidoBlockType[]` | `[]` | Array of default Stripo blocks to exclude from the editor |
220
- | `blocks.includeCustoms` | `GuidoCustomBlockType[]` | `[]` | Array of custom blocks to include in the editor |
221
211
 
222
212
  ```typescript
223
213
  interface DynamicContent {
@@ -234,128 +224,6 @@ interface DynamicContent {
234
224
  | `text` | `string` | '' | Visible value of the dynamic content |
235
225
  | `fallback?` | `string` | '' | Fallback value of the dynamic content. Optional |
236
226
 
237
- ## 🧱 Blocks Configuration
238
-
239
- Guido allows you to customize which blocks are available in the editor. You can exclude default Stripo blocks and selectively include custom blocks to create tailored editing experiences for different product types.
240
-
241
- ### Block Types
242
-
243
- #### Default Blocks (GuidoBlockType)
244
-
245
- These are the standard Stripo email editor blocks that can be excluded:
246
-
247
- ```typescript
248
- type GuidoBlockType =
249
- | 'amp-accordion' // AMP accordion component
250
- | 'amp-carousel' // AMP image carousel
251
- | 'amp-form-controls' // AMP form elements
252
- | 'banner-block' // Banner/hero section
253
- | 'button-block' // Call-to-action buttons
254
- | 'html-block' // Custom HTML
255
- | 'image-block' // Image elements
256
- | 'menu-block' // Navigation menu
257
- | 'social-block' // Social media links
258
- | 'spacer-block' // Vertical spacing
259
- | 'text-block' // Text content
260
- | 'timer-block' // Countdown timer
261
- | 'video-block' // Video embeds
262
- ```
263
-
264
- #### Custom Blocks (GuidoCustomBlockType)
265
-
266
- These are custom blocks that can be selectively included:
267
-
268
- ```typescript
269
- type GuidoCustomBlockType =
270
- | 'dynamic-content' // Dynamic content merge tags
271
- | 'checkbox-block' // Checkbox form input
272
- | 'radio-button-block' // Radio button form input
273
- | 'recommendation-block' // Product recommendations
274
- | 'unsubscribe-block' // Unsubscribe link
275
- | 'coupon-block' // Coupon/promo code
276
- | 'items-block' // Cart items display
277
- ```
278
-
279
- ### Configuration Examples
280
-
281
- #### Example 1: Exclude Specific Default Blocks
282
-
283
- Disable button, image, and video blocks while keeping all custom blocks:
284
-
285
- ```typescript
286
- const guidoConfig = {
287
- translationsPath: 'window.trans.en',
288
- features: {
289
- dynamicContent: true,
290
- saveAsTemplate: true,
291
- versionHistory: true,
292
- testMessage: true
293
- },
294
- blocks: {
295
- excludeDefaults: ['button-block', 'image-block', 'video-block']
296
- }
297
- };
298
- ```
299
-
300
- **Result:**
301
- - Button, Image, Video blocks disabled
302
- - All other default blocks enabled
303
- - All custom blocks are disabled.
304
-
305
- #### Example 2: Include Only Specific Custom Blocks
306
-
307
- Enable only coupon and recommendation blocks:
308
-
309
- ```typescript
310
- const guidoConfig = {
311
- translationsPath: 'window.trans.en',
312
- features: {
313
- dynamicContent: true,
314
- saveAsTemplate: true,
315
- versionHistory: true,
316
- testMessage: true
317
- },
318
- blocks: {
319
- includeCustoms: ['coupon-block', 'recommendation-block']
320
- }
321
- };
322
- ```
323
-
324
- **Result:**
325
- - All default blocks enabled
326
- - Only Coupon and Recommendation extensions enabled.
327
- - Other custom blocks are disabled
328
-
329
- ### Default Behavior
330
-
331
- When `blocks` is not provided or is `undefined`:
332
-
333
- ```typescript
334
- const guidoConfig = {
335
- translationsPath: 'window.trans.en',
336
- features: {
337
- dynamicContent: true,
338
- saveAsTemplate: true,
339
- versionHistory: true,
340
- testMessage: true
341
- },
342
- // No blocks config
343
- };
344
- ```
345
-
346
- **Result:**
347
- - All 13 default Stripo blocks enabled
348
- - All custom blocks are disabled.
349
-
350
- ### Block Configuration Interface
351
-
352
- ```typescript
353
- interface BlocksConfig {
354
- excludeDefaults?: GuidoBlockType[];
355
- includeCustoms?: GuidoCustomBlockType[];
356
- }
357
- ```
358
-
359
227
  ### TypeScript Types
360
228
 
361
229
  The library exports the following TypeScript types:
@@ -450,8 +318,7 @@ const guidoConfig = {
450
318
  features: {
451
319
  dynamicContent: true,
452
320
  saveAsTemplate: true,
453
- versionHistory: false, // Disable version history
454
- testMessage: true
321
+ versionHistory: false // Disable version history
455
322
  },
456
323
  htmlCompilerRules: [
457
324
  {
@@ -484,8 +351,7 @@ const guidoConfig = {
484
351
  features: {
485
352
  dynamicContent: true,
486
353
  saveAsTemplate: true,
487
- versionHistory: true,
488
- testMessage: true
354
+ versionHistory: true
489
355
  },
490
356
  ignoreDefaultHtmlCompilerRules: true, // Skip all default rules
491
357
  htmlCompilerRules: [
@@ -12,9 +12,9 @@ var t = function() {
12
12
  n,
13
13
  !1,
14
14
  null,
15
- "b22f3777"
15
+ "3c910a93"
16
16
  );
17
- const u = s.exports;
17
+ const v = s.exports;
18
18
  export {
19
- u as default
19
+ v as default
20
20
  };
@@ -1,23 +1,23 @@
1
- import { defineComponent as z, defineAsyncComponent as W, ref as B, computed as _, watch as K, onMounted as O, onUnmounted as j } from "vue";
2
- import { provideGuidoActions as q } from "../composables/useGuidoActions.js";
3
- import { usePartner as J } from "../composables/usePartner.js";
4
- import { useStripo as Q } from "../composables/useStripo.js";
5
- import { migrate as L } from "../config/migrator/index.js";
6
- import { DefaultUsername as V, DefaultMessageType as X, DefaultGuidoConfig as Y } from "../enums/defaults.js";
7
- import Z from "./organisms/base/Toaster.vue.js";
8
- import $ from "./organisms/extensions/recommendation/FilterSelectionDrawer.vue.js";
9
- import ee from "./organisms/header/HeaderWrapper.vue.js";
10
- import te from "./organisms/LoadingWrapper.vue.js";
11
- import oe from "./organisms/save-as-template/SaveAsTemplateDrawer.vue.js";
12
- import ne from "./organisms/unsubscribe/UnsubscribeWrapper.vue.js";
13
- import { useStripoApi as re } from "../services/stripoApi.js";
14
- import { useConfigStore as ie } from "../stores/config.js";
15
- import { useDynamicContentStore as ae } from "../stores/dynamic-content.js";
16
- import { useEditorStore as se } from "../stores/editor.js";
17
- import { usePreviewStore as ce } from "../stores/preview.js";
18
- import { useUnsubscribeStore as me } from "../stores/unsubscribe.js";
19
- import de from "../node_modules/lodash-es/merge.js";
20
- const We = /* @__PURE__ */ z({
1
+ import { defineComponent as R, defineAsyncComponent as I, ref as x, computed as U, watch as M, onMounted as z, onUnmounted as B } from "vue";
2
+ import { provideGuidoActions as K } from "../composables/useGuidoActions.js";
3
+ import { usePartner as O } from "../composables/usePartner.js";
4
+ import { useStripo as j } from "../composables/useStripo.js";
5
+ import { migrate as W } from "../config/migrator/index.js";
6
+ import { DefaultUsername as q, DefaultMessageType as J, DefaultGuidoConfig as Q } from "../enums/defaults.js";
7
+ import V from "./organisms/base/Toaster.vue.js";
8
+ import X from "./organisms/extensions/recommendation/FilterSelectionDrawer.vue.js";
9
+ import Y from "./organisms/header/HeaderWrapper.vue.js";
10
+ import Z from "./organisms/LoadingWrapper.vue.js";
11
+ import $ from "./organisms/save-as-template/SaveAsTemplateDrawer.vue.js";
12
+ import ee from "./organisms/unsubscribe/UnsubscribeWrapper.vue.js";
13
+ import { useStripoApi as oe } from "../services/stripoApi.js";
14
+ import { useConfigStore as te } from "../stores/config.js";
15
+ import { useDynamicContentStore as ne } from "../stores/dynamic-content.js";
16
+ import { useEditorStore as re } from "../stores/editor.js";
17
+ import { usePreviewStore as ae } from "../stores/preview.js";
18
+ import { useUnsubscribeStore as ie } from "../stores/unsubscribe.js";
19
+ import se from "../node_modules/lodash-es/merge.js";
20
+ const Ge = /* @__PURE__ */ R({
21
21
  __name: "Guido",
22
22
  props: {
23
23
  templateId: null,
@@ -32,101 +32,97 @@ const We = /* @__PURE__ */ z({
32
32
  templateConfig: null
33
33
  },
34
34
  emits: ["dynamic-content:open", "back", "save:start", "save:complete", "on-change", "ready", "onboarding:finished"],
35
- setup(k, { expose: A, emit: n }) {
36
- const f = k, N = W(
35
+ setup(_, { expose: L, emit: t }) {
36
+ const u = _, k = I(
37
37
  () => import("./organisms/email-preview/PreviewContainer.vue.js")
38
- ), F = W(
38
+ ), A = I(
39
39
  () => import("./organisms/onboarding/OnboardingWrapper.vue.js")
40
- ), g = B(), a = ae(), y = me(), v = ie(), s = se(), H = ce(), r = _(() => s.hasChanges), { getPartnerName: b, getProductType: C, isTestPartner: R } = J(), h = () => {
40
+ ), l = x(), a = ne(), p = ie(), g = te(), i = re(), N = ae(), n = U(() => i.hasChanges), { getPartnerName: f, getProductType: y, isTestPartner: F } = O(), v = () => {
41
41
  var e;
42
- return (e = g.value) == null ? void 0 : e.handleSave(!0);
42
+ return (e = l.value) == null ? void 0 : e.handleSave(!0);
43
43
  }, {
44
- templateId: c,
45
- userId: S,
46
- guidoConfig: w,
44
+ templateId: s,
45
+ userId: b,
46
+ guidoConfig: C,
47
47
  templateConfig: o,
48
- html: i = "",
49
- css: D = "",
50
- partnerName: m = b(),
51
- productType: d = C(),
52
- messageType: E = X,
53
- username: T = V
54
- } = f, u = (o == null ? void 0 : o.preselectedDynamicContentList) || [];
55
- s.templateId = c, window.GuidoConfig = de(Y, w), window.GuidoConfig.partner = {
56
- partnerName: m,
48
+ html: r = "",
49
+ css: h = "",
50
+ partnerName: c = f(),
51
+ productType: d = y(),
52
+ messageType: S = J,
53
+ username: w = q
54
+ } = u, m = (o == null ? void 0 : o.preselectedDynamicContentList) || [];
55
+ i.templateId = s, window.GuidoConfig = se(Q, C), window.GuidoConfig.partner = {
56
+ partnerName: c,
57
57
  productType: d,
58
- messageType: E
59
- }, v.templateConfig = o;
60
- const { initPlugin: P } = Q({
61
- emailId: c,
62
- userId: S,
63
- username: T,
64
- partnerName: m,
58
+ messageType: S
59
+ }, g.templateConfig = o;
60
+ const { initPlugin: D } = j({
61
+ emailId: s,
62
+ userId: b,
63
+ username: w,
64
+ partnerName: c,
65
65
  productType: d,
66
- preselectedDynamicContentList: u,
66
+ preselectedDynamicContentList: m,
67
67
  onReady: () => {
68
- console.debug("guido:ready"), n("ready");
68
+ console.debug("guido:ready"), t("ready");
69
69
  }
70
- }), { getDefaultTemplate: G } = re(), x = _(() => {
70
+ }), { getDefaultTemplate: T } = oe(), H = U(() => {
71
71
  var e;
72
72
  return !((e = window.GuidoConfig) != null && e.useHeader);
73
73
  });
74
- q({
74
+ K({
75
75
  onBack: () => {
76
- console.debug("guido:back"), n("back");
76
+ console.debug("guido:back"), t("back");
77
77
  },
78
78
  onSaveStart: () => {
79
- console.debug("guido:save:start"), n("save:start");
79
+ console.debug("guido:save:start"), t("save:start");
80
80
  },
81
81
  onSaveComplete: (e) => {
82
- console.debug("guido:save:complete", e), n("save:complete", e);
82
+ console.debug("guido:save:complete", e), t("save:complete", e);
83
83
  }
84
84
  });
85
- const I = (e) => {
86
- a.setSelectedDynamicContent(e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
87
- }, U = () => {
85
+ const E = (e) => {
86
+ console.debug("dynamic-content:close", e), a.setSelectedDynamicContent(e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
87
+ }, P = () => {
88
88
  console.debug("dynamic-content:close", "Without Data"), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: { text: "", value: "" } }));
89
89
  };
90
- return K(() => r.value, () => {
91
- n("on-change", r.value);
92
- }), O(async () => {
90
+ return M(() => n.value, () => {
91
+ t("on-change", n.value);
92
+ }), z(async () => {
93
93
  console.debug("Guido says happy coding 🎉"), console.debug("🚗 Ka-Chow");
94
94
  try {
95
- y.selectedUnsubscribePages = (o == null ? void 0 : o.selectedUnsubscribePages) || [];
96
- let t = {
97
- html: i && await L(i),
98
- css: D,
95
+ p.selectedUnsubscribePages = (o == null ? void 0 : o.selectedUnsubscribePages) || [];
96
+ let e = {
97
+ html: r && await W(r),
98
+ css: h,
99
99
  forceRecreate: !0
100
100
  // TODO: It should be false for old templates. We will communicate with Stripo
101
101
  };
102
- t.html || (t = await G(), t.html = await L(t.html)), await P(t), a.selectedDynamicContentList = u;
103
- } catch (t) {
104
- console.error("Failed to initialize Stripo editor:", t);
102
+ e.html || (e = await T(), e.html = await W(e.html)), await D(e), a.selectedDynamicContentList = m;
103
+ } catch (e) {
104
+ console.error("Failed to initialize Stripo editor:", e);
105
105
  }
106
- const e = (t) => {
107
- const l = t, { attribute: p, position: M } = l.detail;
108
- return { attribute: p, position: M };
109
- };
110
- document.addEventListener("dynamic-content:open", (t) => {
111
- const { attribute: l, position: p } = e(t);
112
- n("dynamic-content:open", l, p);
106
+ document.addEventListener("dynamic-content:open", (e) => {
107
+ const G = e;
108
+ console.debug("dynamic-content:open", G.detail), t("dynamic-content:open", G.detail);
113
109
  });
114
- }), j(() => {
110
+ }), B(() => {
115
111
  try {
116
112
  window.UIEditor.removeEditor();
117
113
  } catch {
118
114
  console.debug("Failed to remove Stripo editor: No editor found");
119
115
  }
120
- }), A({
116
+ }), L({
121
117
  dynamicContent: {
122
- insert: I,
123
- close: U
118
+ insert: E,
119
+ close: P
124
120
  },
125
- hasChanges: r,
126
- saveSilent: h
127
- }), { __sfc: !0, PreviewContainer: N, OnboardingWrapper: F, headerWrapperRef: g, dynamicContentStore: a, unsubscribeStore: y, props: f, configStore: v, editorStore: s, previewStore: H, hasChanges: r, getPartnerName: b, getProductType: C, isTestPartner: R, saveSilent: h, templateId: c, userId: S, guidoConfig: w, templateConfig: o, html: i, css: D, partnerName: m, productType: d, messageType: E, username: T, preselectedDynamicContentList: u, emit: n, initPlugin: P, getDefaultTemplate: G, noHeader: x, insertDynamicContent: I, closeDynamicContent: U, Toaster: Z, FilterSelectionDrawer: $, HeaderWrapper: ee, LoadingWrapper: te, SaveAsTemplateDrawer: oe, UnsubscribeWrapper: ne };
121
+ hasChanges: n,
122
+ saveSilent: v
123
+ }), { __sfc: !0, PreviewContainer: k, OnboardingWrapper: A, headerWrapperRef: l, dynamicContentStore: a, unsubscribeStore: p, props: u, configStore: g, editorStore: i, previewStore: N, hasChanges: n, getPartnerName: f, getProductType: y, isTestPartner: F, saveSilent: v, templateId: s, userId: b, guidoConfig: C, templateConfig: o, html: r, css: h, partnerName: c, productType: d, messageType: S, username: w, preselectedDynamicContentList: m, emit: t, initPlugin: D, getDefaultTemplate: T, noHeader: H, insertDynamicContent: E, closeDynamicContent: P, Toaster: V, FilterSelectionDrawer: X, HeaderWrapper: Y, LoadingWrapper: Z, SaveAsTemplateDrawer: $, UnsubscribeWrapper: ee };
128
124
  }
129
125
  });
130
126
  export {
131
- We as default
127
+ Ge as default
132
128
  };
@@ -10,7 +10,7 @@ var n = function() {
10
10
  a,
11
11
  !1,
12
12
  null,
13
- "0502bceb"
13
+ "2c168944"
14
14
  );
15
15
  const p = i.exports;
16
16
  export {
@@ -1,29 +1,28 @@
1
- import { defineComponent as c, computed as a } from "vue";
2
- import { useConfig as m } from "../../../composables/useConfig.js";
3
- import { useBack as u } from "../../../composables/useGuidoActions.js";
4
- import { usePreviewMode as f } from "../../../composables/usePreviewMode.js";
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";
5
4
  import { useTranslations as p } from "../../../composables/useTranslations.js";
6
- import { useVersionHistoryApi as d } from "../../../composables/useVersionHistoryApi.js";
7
- import { useEditorStore as l } from "../../../stores/editor.js";
8
- import { InButtonV2 as k } from "@useinsider/design-system-vue";
9
- import B from "./version-history/RestoreButton.vue.js";
10
- const P = /* @__PURE__ */ c({
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({
11
10
  __name: "LeftSlot",
12
- setup(b) {
13
- const o = l(), r = u(), { closeVersionHistory: i } = d(), { closePreviewMode: n } = f(), e = p(), { config: t } = m(), s = a(() => o.isVersionHistoryOpen || o.isPreviewModeOpen ? e("email-editor.back-to-editor") : t.backButtonLabel ? t.backButtonLabel : e("email-editor.back-to-design"));
14
- return { __sfc: !0, editorStore: o, handleBack: r, closeVersionHistory: i, closePreviewMode: n, trans: e, config: t, backButtonLabel: s, handleBackClick: () => {
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: () => {
15
14
  if (o.isVersionHistoryOpen) {
16
- i();
15
+ t();
17
16
  return;
18
17
  }
19
18
  if (o.isPreviewModeOpen) {
20
- n();
19
+ i();
21
20
  return;
22
21
  }
23
22
  r();
24
- }, InButtonV2: k, RestoreButton: B };
23
+ }, InButtonV2: f, RestoreButton: l };
25
24
  }
26
25
  });
27
26
  export {
28
- P as default
27
+ O as default
29
28
  };
@@ -1,20 +1,20 @@
1
- import a from "./RightSlot.vue2.js";
2
- import l from "../../../_virtual/_plugin-vue2_normalizer.js";
3
- var r = function() {
4
- var o, i, n;
5
- var s = this, e = s._self._c, t = s._self._setupProxy;
6
- return e("div", { staticClass: "d-f" }, [(o = t.config.features) != null && o.versionHistory ? e(t.InButtonV2, { attrs: { id: "guido__history-button", "left-icon": "line-architect-version-history", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isVersionHistoryButtonDisabled, "label-text-status": !1, "selected-status": t.editorStore.isVersionHistoryOpen, "tooltip-options": t.getTooltipOptions("guido__history-button"), "tooltip-text": t.versionHistoryTooltipText }, on: { click: t.handleVersionHistory } }) : s._e(), e(t.InButtonV2, { attrs: { id: "guido__export-button", "left-icon": "line-export", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isExportButtonDisabled, "label-text-status": !1, "loading-status": t.isExporting, "tooltip-options": t.getTooltipOptions("guido__export-button"), "tooltip-text": t.trans("newsletter.export") }, on: { click: t.handleExport } }), (i = t.config.features) != null && i.saveAsTemplate ? e(t.InButtonV2, { attrs: { id: "guido__save-as-button", "left-icon": "line-newsletter-save-as-template", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isSaveAsButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__save-as-button"), "tooltip-text": t.trans("newsletter.save-templates") }, on: { click: t.handleSaveAs } }) : s._e(), (n = t.config.features) != null && n.testMessage ? e(t.InButtonV2, { attrs: { id: "guido__test-button", "left-icon": "line-architect-test-journey", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isTestButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__test-button"), "tooltip-text": t.trans("newsletter.test-email") } }) : s._e(), e(t.InButtonV2, { staticClass: "ml-3", attrs: { id: "guido__save-button", "label-text": "Save", "disabled-status": !t.isSaving && t.editorStore.isSaveButtonDisabled, "loading-status": t.isSaving }, on: { click: function(_) {
1
+ import n from "./RightSlot.vue2.js";
2
+ import a from "../../../_virtual/_plugin-vue2_normalizer.js";
3
+ var l = function() {
4
+ var s, i;
5
+ var o = this, e = o._self._c, t = o._self._setupProxy;
6
+ return e("div", { staticClass: "d-f" }, [(s = t.config.features) != null && s.versionHistory ? e(t.InButtonV2, { attrs: { id: "guido__history-button", "left-icon": "line-architect-version-history", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isVersionHistoryButtonDisabled, "label-text-status": !1, "selected-status": t.editorStore.isVersionHistoryOpen, "tooltip-options": t.getTooltipOptions("guido__history-button"), "tooltip-text": t.versionHistoryTooltipText }, on: { click: t.handleVersionHistory } }) : o._e(), e(t.InButtonV2, { attrs: { id: "guido__export-button", "left-icon": "line-export", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isExportButtonDisabled, "label-text-status": !1, "loading-status": t.isExporting, "tooltip-options": t.getTooltipOptions("guido__export-button"), "tooltip-text": t.trans("newsletter.export") }, on: { click: t.handleExport } }), (i = t.config.features) != null && i.saveAsTemplate ? e(t.InButtonV2, { attrs: { id: "guido__save-as-button", "left-icon": "line-newsletter-save-as-template", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isSaveAsButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__save-as-button"), "tooltip-text": t.trans("newsletter.save-templates") }, on: { click: t.handleSaveAs } }) : o._e(), e(t.InButtonV2, { attrs: { id: "guido__test-button", "left-icon": "line-architect-test-journey", styling: "ghost", type: "secondary", "disabled-status": t.editorStore.isTestButtonDisabled, "label-text-status": !1, "tooltip-options": t.getTooltipOptions("guido__test-button"), "tooltip-text": t.trans("newsletter.test-email") } }), e(t.InButtonV2, { staticClass: "ml-3", attrs: { id: "guido__save-button", "label-text": "Save", "disabled-status": !t.isSaving && t.editorStore.isSaveButtonDisabled, "loading-status": t.isSaving }, on: { click: function(p) {
7
7
  return t.handleSave(!1);
8
8
  } } })], 1);
9
- }, u = [], d = /* @__PURE__ */ l(
10
- a,
9
+ }, r = [], d = /* @__PURE__ */ a(
10
+ n,
11
+ l,
11
12
  r,
12
- u,
13
13
  !1,
14
14
  null,
15
15
  null
16
16
  );
17
- const f = d.exports;
17
+ const g = d.exports;
18
18
  export {
19
- f as default
19
+ g as default
20
20
  };
@@ -1,24 +1,29 @@
1
- import { useActionsApi as y } from "./useActionsApi.js";
2
- import { useBlocksConfig as E } from "./useBlocksConfig.js";
3
- import { useCustomInterfaceAppearance as w } from "./useCustomInterfaceAppearance.js";
4
- import { useStripoEventHandler as h } from "./useStripoEventHandler.js";
5
- import { useToaster as b } from "./useToaster.js";
6
- import { displayConditions as k } from "../enums/displayConditions.js";
1
+ import { useActionsApi as f } from "./useActionsApi.js";
2
+ import { useCustomInterfaceAppearance as E } from "./useCustomInterfaceAppearance.js";
3
+ import { useStripoEventHandler as S } from "./useStripoEventHandler.js";
4
+ import { useToaster as C } from "./useToaster.js";
5
+ import { displayConditions as y } from "../enums/displayConditions.js";
6
+ import h from "../extensions/Blocks/Checkbox/extension.js";
7
+ import w from "../extensions/Blocks/CouponBlock/extension.js";
8
+ import b from "../extensions/Blocks/RadioButton/extension.js";
9
+ import V from "../extensions/Blocks/Recommendation/extension.js";
10
+ import _ from "../extensions/Blocks/Unsubscribe/extension.js";
11
+ import k from "../extensions/DynamicContent/extension.js";
7
12
  import { useStripoApi as B } from "../services/stripoApi.js";
8
- import V from "../static/styles/customEditorStyle.css.js";
9
- import { useEditorStore as _ } from "../stores/editor.js";
10
- import { dynamicContentToMergeTags as F } from "../utils/genericUtil.js";
11
- import A from "../package.json.js";
12
- const L = (d) => {
13
- const { handleError: u } = b(), { getToken: p, getCustomFonts: m } = B(), { handleEvent: g } = h(), { getStripoBlocksConfig: f } = E(), S = async (r, i = []) => {
14
- const t = _(), { html: n, css: l, forceRecreate: a } = r, { baseBlocks: e, extensions: c } = await f();
13
+ import x from "../static/styles/customEditorStyle.css.js";
14
+ import { useEditorStore as F } from "../stores/editor.js";
15
+ import { dynamicContentToMergeTags as A } from "../utils/genericUtil.js";
16
+ import T from "../package.json.js";
17
+ const G = (a) => {
18
+ const { handleError: d } = C(), { getToken: u, getCustomFonts: m } = B(), { handleEvent: p } = S(), l = (r, i = []) => {
19
+ const t = F(), { html: n, css: c, forceRecreate: s } = r;
15
20
  window.UIEditor.initEditor(
16
21
  document.querySelector("#guido-editor"),
17
22
  {
18
- metadata: d,
23
+ metadata: a,
19
24
  html: n,
20
- css: l,
21
- forceRecreate: a,
25
+ css: c,
26
+ forceRecreate: s,
22
27
  locale: "en",
23
28
  undoButtonSelector: "#guido__undo-button",
24
29
  redoButtonSelector: "#guido__redo-button",
@@ -28,14 +33,13 @@ const L = (d) => {
28
33
  customAppearanceMergetags: !0,
29
34
  customAppearanceMergetagsBorderColor: "#f1f3fe",
30
35
  customAppearanceMergetagsBackgroundColor: "#f1f3fe",
31
- customViewStyles: V,
36
+ customViewStyles: x,
32
37
  conditionsEnabled: !0,
33
38
  customConditionsEnabled: !0,
34
- conditionCategories: k,
39
+ conditionCategories: y,
35
40
  enableXSSSecurity: !0,
36
41
  messageSettingsEnabled: !1,
37
42
  selectBlockAfterDropFromSettingsPanel: !0,
38
- ...e ? { baseBlocks: e } : {},
39
43
  editorFonts: {
40
44
  showDefaultStandardFonts: !0,
41
45
  showDefaultNotStandardFonts: !0,
@@ -43,25 +47,25 @@ const L = (d) => {
43
47
  },
44
48
  mergeTags: [
45
49
  {
46
- entries: F(d.preselectedDynamicContentList)
50
+ entries: A(a.preselectedDynamicContentList)
47
51
  }
48
52
  ],
49
53
  async onTokenRefreshRequest(o) {
50
54
  try {
51
- const s = await p();
52
- o(s);
53
- } catch (s) {
54
- u(s, "Failed to refresh token");
55
+ const e = await u();
56
+ o(e);
57
+ } catch (e) {
58
+ d(e, "Failed to refresh token");
55
59
  }
56
60
  },
57
61
  onTemplateLoaded() {
58
62
  try {
59
- const { importCss: o } = w(), { activateCustomViewStyles: s } = y();
60
- o(), s(), d.onReady(), t.isStripoInitialized = !0, t.loadingStatus = !1, setTimeout(() => {
63
+ const { importCss: o } = E(), { activateCustomViewStyles: e } = f();
64
+ o(), e(), a.onReady(), t.isStripoInitialized = !0, t.loadingStatus = !1, setTimeout(() => {
61
65
  t.hasChanges = !1;
62
66
  }, 1e3);
63
67
  } catch (o) {
64
- u(o, "Failed to load custom interface appearance");
68
+ d(o, "Failed to load custom interface appearance");
65
69
  }
66
70
  },
67
71
  onCodeEditorVisibilityChanged(o) {
@@ -76,35 +80,42 @@ const L = (d) => {
76
80
  onDataChanged() {
77
81
  t.hasChanges = !0;
78
82
  },
79
- onEvent: g,
83
+ onEvent: p,
80
84
  ignoreClickOutsideSelectors: [
81
85
  "#guido-dynamic-content-modal",
82
86
  ".in-on-board-wrapper",
83
87
  ".in-drawer__container"
84
88
  ],
85
- extensions: c
89
+ extensions: [
90
+ k,
91
+ h,
92
+ b,
93
+ V,
94
+ _,
95
+ w
96
+ ]
86
97
  }
87
98
  );
88
- }, C = (r) => new Promise((i, t) => {
89
- var c;
99
+ }, g = (r) => new Promise((i, t) => {
100
+ var e;
90
101
  if (document.getElementById("UiEditorScript")) {
91
102
  r(), i();
92
103
  return;
93
104
  }
94
- const n = A.guido, a = `https://email-static.useinsider.com/guido/${(c = n == null ? void 0 : n.stripo) == null ? void 0 : c.version}/UIEditor.js`, e = document.createElement("script");
95
- e.id = "UiEditorScript", e.type = "module", e.src = a, e.onload = () => {
105
+ const n = T.guido, s = `https://email-static.useinsider.com/guido/${(e = n == null ? void 0 : n.stripo) == null ? void 0 : e.version}/UIEditor.js`, o = document.createElement("script");
106
+ o.id = "UiEditorScript", o.type = "module", o.src = s, o.onload = () => {
96
107
  r(), i();
97
- }, e.onerror = () => {
98
- t(new Error(`Failed to load Stripo UIEditor script from S3: ${a}`));
99
- }, document.body.appendChild(e);
108
+ }, o.onerror = () => {
109
+ t(new Error(`Failed to load Stripo UIEditor script from S3: ${s}`));
110
+ }, document.body.appendChild(o);
100
111
  });
101
112
  return { initPlugin: async (r) => {
102
- await C(async () => {
113
+ await g(async () => {
103
114
  const i = await m();
104
- await S(r, i);
115
+ l(r, i);
105
116
  });
106
117
  } };
107
118
  };
108
119
  export {
109
- L as useStripo
120
+ G as useStripo
110
121
  };