@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.
- package/README.md +3 -137
- package/dist/components/Guido.vue.js +3 -3
- package/dist/components/Guido.vue2.js +75 -79
- package/dist/components/organisms/header/LeftSlot.vue.js +1 -1
- package/dist/components/organisms/header/LeftSlot.vue2.js +15 -16
- package/dist/components/organisms/header/RightSlot.vue.js +11 -11
- package/dist/composables/useStripo.js +50 -39
- package/dist/enums/defaults.js +9 -15
- package/dist/extensions/Blocks/Checkbox/extension.js +2 -2
- package/dist/extensions/Blocks/CouponBlock/extension.js +2 -2
- package/dist/extensions/Blocks/Recommendation/extension.js +4 -4
- package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +4 -4
- package/dist/extensions/DynamicContent/dynamic-content-modal.js +17 -23
- package/dist/extensions/DynamicContent/dynamic-content.js +31 -151
- package/dist/guido.css +1 -1
- package/dist/services/stripoApi.js +1 -1
- package/dist/src/@types/generic.d.ts +6 -35
- package/dist/src/components/Guido.vue.d.ts +2 -2
- package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
- package/dist/src/extensions/DynamicContent/dynamic-content-modal.d.ts +2 -9
- package/dist/src/extensions/DynamicContent/dynamic-content.d.ts +2 -56
- package/dist/src/stores/config.d.ts +1 -7
- package/dist/src/stores/dynamic-content.d.ts +2 -2
- package/dist/static/styles/components/narrow-panel.css.js +0 -10
- package/dist/stores/dynamic-content.js +1 -1
- package/package.json +1 -1
- package/dist/composables/useBlocksConfig.js +0 -49
- 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
|
|
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: [
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { provideGuidoActions as
|
|
3
|
-
import { usePartner as
|
|
4
|
-
import { useStripo as
|
|
5
|
-
import { migrate as
|
|
6
|
-
import { DefaultUsername as
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import { useStripoApi as
|
|
14
|
-
import { useConfigStore as
|
|
15
|
-
import { useDynamicContentStore as
|
|
16
|
-
import { useEditorStore as
|
|
17
|
-
import { usePreviewStore as
|
|
18
|
-
import { useUnsubscribeStore as
|
|
19
|
-
import
|
|
20
|
-
const
|
|
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(
|
|
36
|
-
const
|
|
35
|
+
setup(_, { expose: L, emit: t }) {
|
|
36
|
+
const u = _, k = I(
|
|
37
37
|
() => import("./organisms/email-preview/PreviewContainer.vue.js")
|
|
38
|
-
),
|
|
38
|
+
), A = I(
|
|
39
39
|
() => import("./organisms/onboarding/OnboardingWrapper.vue.js")
|
|
40
|
-
),
|
|
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 =
|
|
42
|
+
return (e = l.value) == null ? void 0 : e.handleSave(!0);
|
|
43
43
|
}, {
|
|
44
|
-
templateId:
|
|
45
|
-
userId:
|
|
46
|
-
guidoConfig:
|
|
44
|
+
templateId: s,
|
|
45
|
+
userId: b,
|
|
46
|
+
guidoConfig: C,
|
|
47
47
|
templateConfig: o,
|
|
48
|
-
html:
|
|
49
|
-
css:
|
|
50
|
-
partnerName:
|
|
51
|
-
productType: d =
|
|
52
|
-
messageType:
|
|
53
|
-
username:
|
|
54
|
-
} =
|
|
55
|
-
|
|
56
|
-
partnerName:
|
|
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:
|
|
59
|
-
},
|
|
60
|
-
const { initPlugin:
|
|
61
|
-
emailId:
|
|
62
|
-
userId:
|
|
63
|
-
username:
|
|
64
|
-
partnerName:
|
|
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:
|
|
66
|
+
preselectedDynamicContentList: m,
|
|
67
67
|
onReady: () => {
|
|
68
|
-
console.debug("guido:ready"),
|
|
68
|
+
console.debug("guido:ready"), t("ready");
|
|
69
69
|
}
|
|
70
|
-
}), { getDefaultTemplate:
|
|
70
|
+
}), { getDefaultTemplate: T } = oe(), H = U(() => {
|
|
71
71
|
var e;
|
|
72
72
|
return !((e = window.GuidoConfig) != null && e.useHeader);
|
|
73
73
|
});
|
|
74
|
-
|
|
74
|
+
K({
|
|
75
75
|
onBack: () => {
|
|
76
|
-
console.debug("guido:back"),
|
|
76
|
+
console.debug("guido:back"), t("back");
|
|
77
77
|
},
|
|
78
78
|
onSaveStart: () => {
|
|
79
|
-
console.debug("guido:save:start"),
|
|
79
|
+
console.debug("guido:save:start"), t("save:start");
|
|
80
80
|
},
|
|
81
81
|
onSaveComplete: (e) => {
|
|
82
|
-
console.debug("guido:save:complete", e),
|
|
82
|
+
console.debug("guido:save:complete", e), t("save:complete", e);
|
|
83
83
|
}
|
|
84
84
|
});
|
|
85
|
-
const
|
|
86
|
-
a.setSelectedDynamicContent(e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
|
|
87
|
-
},
|
|
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
|
|
91
|
-
|
|
92
|
-
}),
|
|
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
|
-
|
|
96
|
-
let
|
|
97
|
-
html:
|
|
98
|
-
css:
|
|
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
|
-
|
|
103
|
-
} catch (
|
|
104
|
-
console.error("Failed to initialize Stripo editor:",
|
|
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
|
-
|
|
107
|
-
const
|
|
108
|
-
|
|
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
|
-
}),
|
|
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
|
-
}),
|
|
116
|
+
}), L({
|
|
121
117
|
dynamicContent: {
|
|
122
|
-
insert:
|
|
123
|
-
close:
|
|
118
|
+
insert: E,
|
|
119
|
+
close: P
|
|
124
120
|
},
|
|
125
|
-
hasChanges:
|
|
126
|
-
saveSilent:
|
|
127
|
-
}), { __sfc: !0, PreviewContainer:
|
|
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
|
-
|
|
127
|
+
Ge as default
|
|
132
128
|
};
|
|
@@ -1,29 +1,28 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
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
|
|
7
|
-
import { useEditorStore as
|
|
8
|
-
import { InButtonV2 as
|
|
9
|
-
import
|
|
10
|
-
const
|
|
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(
|
|
13
|
-
const o =
|
|
14
|
-
return { __sfc: !0, editorStore: o, handleBack: r, closeVersionHistory:
|
|
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
|
-
|
|
15
|
+
t();
|
|
17
16
|
return;
|
|
18
17
|
}
|
|
19
18
|
if (o.isPreviewModeOpen) {
|
|
20
|
-
|
|
19
|
+
i();
|
|
21
20
|
return;
|
|
22
21
|
}
|
|
23
22
|
r();
|
|
24
|
-
}, InButtonV2:
|
|
23
|
+
}, InButtonV2: f, RestoreButton: l };
|
|
25
24
|
}
|
|
26
25
|
});
|
|
27
26
|
export {
|
|
28
|
-
|
|
27
|
+
O as default
|
|
29
28
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
var
|
|
4
|
-
var
|
|
5
|
-
var
|
|
6
|
-
return e("div", { staticClass: "d-f" }, [(
|
|
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
|
-
},
|
|
10
|
-
|
|
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
|
|
17
|
+
const g = d.exports;
|
|
18
18
|
export {
|
|
19
|
-
|
|
19
|
+
g as default
|
|
20
20
|
};
|
|
@@ -1,24 +1,29 @@
|
|
|
1
|
-
import { useActionsApi as
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import
|
|
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
|
|
9
|
-
import { useEditorStore as
|
|
10
|
-
import { dynamicContentToMergeTags as
|
|
11
|
-
import
|
|
12
|
-
const
|
|
13
|
-
const { handleError:
|
|
14
|
-
const t =
|
|
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:
|
|
23
|
+
metadata: a,
|
|
19
24
|
html: n,
|
|
20
|
-
css:
|
|
21
|
-
forceRecreate:
|
|
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:
|
|
36
|
+
customViewStyles: x,
|
|
32
37
|
conditionsEnabled: !0,
|
|
33
38
|
customConditionsEnabled: !0,
|
|
34
|
-
conditionCategories:
|
|
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:
|
|
50
|
+
entries: A(a.preselectedDynamicContentList)
|
|
47
51
|
}
|
|
48
52
|
],
|
|
49
53
|
async onTokenRefreshRequest(o) {
|
|
50
54
|
try {
|
|
51
|
-
const
|
|
52
|
-
o(
|
|
53
|
-
} catch (
|
|
54
|
-
|
|
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 } =
|
|
60
|
-
o(),
|
|
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
|
-
|
|
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:
|
|
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:
|
|
89
|
+
extensions: [
|
|
90
|
+
k,
|
|
91
|
+
h,
|
|
92
|
+
b,
|
|
93
|
+
V,
|
|
94
|
+
_,
|
|
95
|
+
w
|
|
96
|
+
]
|
|
86
97
|
}
|
|
87
98
|
);
|
|
88
|
-
},
|
|
89
|
-
var
|
|
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 =
|
|
95
|
-
|
|
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
|
-
},
|
|
98
|
-
t(new Error(`Failed to load Stripo UIEditor script from S3: ${
|
|
99
|
-
}, document.body.appendChild(
|
|
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
|
|
113
|
+
await g(async () => {
|
|
103
114
|
const i = await m();
|
|
104
|
-
|
|
115
|
+
l(r, i);
|
|
105
116
|
});
|
|
106
117
|
} };
|
|
107
118
|
};
|
|
108
119
|
export {
|
|
109
|
-
|
|
120
|
+
G as useStripo
|
|
110
121
|
};
|