@useinsider/guido 2.1.0-beta.37f9328 → 2.1.0-beta.3824227
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 +2 -41
- package/dist/components/Guido.vue.js +1 -1
- package/dist/components/Guido.vue2.js +66 -66
- package/dist/components/organisms/header/EditorActions.vue.js +10 -8
- package/dist/components/organisms/header/EditorActions.vue2.js +40 -30
- package/dist/components/organisms/header/MigrationConfirmModal.vue.js +17 -0
- package/dist/components/organisms/header/MigrationConfirmModal.vue2.js +39 -0
- package/dist/components/organisms/unsubscribe/UnsubscribePageSelection.vue.js +1 -1
- package/dist/components/organisms/unsubscribe/UnsubscribePageSelection.vue2.js +19 -19
- package/dist/composables/useSave.js +12 -16
- package/dist/composables/useStripo.js +62 -66
- package/dist/composables/useStripoEventHandler.js +12 -27
- package/dist/config/i18n/en/labels.json.js +8 -3
- package/dist/config/migrator/itemsBlockMigrator.js +136 -131
- package/dist/config/migrator/recommendationMigrator.js +58 -54
- package/dist/enums/block.js +4 -0
- package/dist/enums/unsubscribe.js +21 -25
- package/dist/extensions/Blocks/Items/block.js +30 -21
- package/dist/extensions/Blocks/Items/iconsRegistry.js +7 -6
- package/dist/extensions/Blocks/Items/items.css.js +48 -0
- package/dist/extensions/Blocks/Recommendation/block.js +22 -13
- package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +5 -4
- package/dist/extensions/Blocks/Recommendation/recommendation.css.js +48 -0
- package/dist/extensions/Blocks/Unsubscribe/block.js +29 -29
- package/dist/extensions/Blocks/Unsubscribe/control.js +12 -9
- package/dist/extensions/Blocks/Unsubscribe/elements/preview.js +13 -11
- package/dist/extensions/Blocks/Unsubscribe/styles.css.js +31 -1
- package/dist/extensions/Blocks/common-control.js +12 -4
- package/dist/guido.css +1 -1
- package/dist/services/stripoApi.js +19 -55
- package/dist/src/@types/config/schemas.d.ts +1 -1
- package/dist/src/@types/events.d.ts +2 -38
- package/dist/src/@types/extensions/block.d.ts +2 -0
- package/dist/src/components/Guido.vue.d.ts +2 -2
- package/dist/src/components/organisms/header/EditorActions.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/HeaderWrapper.vue.d.ts +1 -1
- package/dist/src/components/organisms/header/MigrationConfirmModal.vue.d.ts +6 -0
- package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
- package/dist/src/components/wrappers/WpModal.vue.d.ts +2 -2
- package/dist/src/composables/useGuidoActions.d.ts +1 -1
- package/dist/src/composables/useSave.d.ts +2 -2
- package/dist/src/composables/useStripo.d.ts +2 -2
- package/dist/src/enums/block.d.ts +4 -0
- package/dist/src/enums/unsubscribe.d.ts +0 -3
- package/dist/src/extensions/Blocks/Items/block.d.ts +3 -1
- package/dist/src/extensions/Blocks/Recommendation/block.d.ts +3 -1
- package/dist/src/extensions/Blocks/Unsubscribe/control.d.ts +1 -0
- package/dist/src/extensions/Blocks/common-control.d.ts +5 -0
- package/dist/src/services/stripoApi.d.ts +0 -5
- package/dist/src/stores/editor.d.ts +0 -23
- package/dist/src/stores/template.d.ts +29 -0
- package/dist/src/utils/migrationBannerHtml.d.ts +2 -0
- package/dist/src/utils/templatePreparation.d.ts +1 -1
- package/dist/static/assets/info.svg.js +5 -0
- package/dist/stores/editor.js +1 -2
- package/dist/stores/template.js +15 -0
- package/dist/stores/unsubscribe.js +37 -34
- package/dist/utils/migrationBannerHtml.js +21 -0
- package/dist/utils/templatePreparation.js +1 -1
- package/package.json +1 -1
- package/dist/composables/useSyncModuleExtractor.js +0 -45
- package/dist/src/composables/useSyncModuleExtractor.d.ts +0 -4
- package/dist/src/mock/api/settings.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://www.youtube.com/shorts/Y0RwBeMezL4" target="_blank" rel="noopener noreferrer">
|
|
3
|
-
<img width="180"
|
|
4
|
-
src="https://web-image.useinsider.com/guido/defaultImageLibrary/iUH0liTK0d2YDsVB5LDN1770169173.jpg"
|
|
5
|
-
alt="Guido logo">
|
|
3
|
+
<img width="180" src="./public/guido.png" alt="Guido logo">
|
|
6
4
|
</a>
|
|
7
5
|
</p>
|
|
8
6
|
|
|
@@ -174,48 +172,11 @@ const config: GuidoConfigInput = {
|
|
|
174
172
|
| `dynamic-content:open` | `DynamicContent \| null` | User wants to insert dynamic content |
|
|
175
173
|
| `back` | - | Back button clicked |
|
|
176
174
|
| `save:start` | - | Save process started |
|
|
177
|
-
| `save:complete` | `
|
|
175
|
+
| `save:complete` | `Template` | Save completed successfully |
|
|
178
176
|
| `on-change` | - | Template was modified |
|
|
179
177
|
| `test-email:click` | - | Test email button clicked |
|
|
180
178
|
| `onboarding-finished` | - | Onboarding popup dismissed |
|
|
181
179
|
|
|
182
|
-
### `save:complete` Payload
|
|
183
|
-
|
|
184
|
-
The `save:complete` event emits a `SavedTemplateDetails` object containing the compiled template data along with editor `metadata`:
|
|
185
|
-
|
|
186
|
-
```typescript
|
|
187
|
-
interface SavedTemplateDetails {
|
|
188
|
-
dynamicContentList: DynamicContent[];
|
|
189
|
-
compiledHtml: string;
|
|
190
|
-
rawHtml: string;
|
|
191
|
-
css: string;
|
|
192
|
-
ampHtml: string;
|
|
193
|
-
ampErrors: string[];
|
|
194
|
-
modules: number[];
|
|
195
|
-
recommendation: {
|
|
196
|
-
campaignUrls: Record<string, string>;
|
|
197
|
-
configs: Record<string, string>;
|
|
198
|
-
};
|
|
199
|
-
unsubscribe: {
|
|
200
|
-
status: boolean;
|
|
201
|
-
config: number[];
|
|
202
|
-
};
|
|
203
|
-
metadata: Metadata;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
interface Metadata {
|
|
207
|
-
emailId: string;
|
|
208
|
-
partnerName?: string;
|
|
209
|
-
productType?: number;
|
|
210
|
-
userId: string;
|
|
211
|
-
username?: string;
|
|
212
|
-
savedModulesFolderName?: string;
|
|
213
|
-
defaultModulesFolderName?: string;
|
|
214
|
-
}
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
> ⚠️ **Important:** The `metadata` object in the `save:complete` payload must be passed directly into your `templateConfig` / `stripoConfig` object while saving. This ensures the email-service receives the correct version of sync modules features
|
|
218
|
-
|
|
219
180
|
---
|
|
220
181
|
|
|
221
182
|
## Exposed Methods
|
|
@@ -1,64 +1,65 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { provideGuidoActions as
|
|
3
|
-
import { usePartner as
|
|
4
|
-
import { useStripo as
|
|
5
|
-
import { useTimerClone as
|
|
6
|
-
import { migrate as
|
|
7
|
-
import { ModuleFolderDefaults as
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
1
|
+
import { defineComponent as z, defineAsyncComponent as M, ref as K, computed as _, watch as V, onMounted as j, onUnmounted as q } from "vue";
|
|
2
|
+
import { provideGuidoActions as J } from "../composables/useGuidoActions.js";
|
|
3
|
+
import { usePartner as Q } from "../composables/usePartner.js";
|
|
4
|
+
import { useStripo as X } from "../composables/useStripo.js";
|
|
5
|
+
import { useTimerClone as Y } from "../composables/useTimerClone.js";
|
|
6
|
+
import { migrate as P } from "../config/migrator/index.js";
|
|
7
|
+
import { ModuleFolderDefaults as A } from "../enums/defaults.js";
|
|
8
|
+
import Z from "./organisms/base/Toaster.vue.js";
|
|
9
|
+
import $ from "./organisms/extensions/recommendation/FilterSelectionDrawer.vue.js";
|
|
10
|
+
import ee from "./organisms/header/HeaderWrapper.vue.js";
|
|
11
|
+
import oe from "./organisms/LoadingWrapper.vue.js";
|
|
12
|
+
import te from "./organisms/save-as-template/SaveAsTemplateDrawer.vue.js";
|
|
13
|
+
import ne from "./organisms/unsubscribe/UnsubscribeWrapper.vue.js";
|
|
14
14
|
import { useStripoApi as re } from "../services/stripoApi.js";
|
|
15
|
-
import { useConfigStore as
|
|
16
|
-
import { useDynamicContentStore as
|
|
17
|
-
import { useEditorStore as
|
|
18
|
-
import { usePreviewStore as
|
|
15
|
+
import { useConfigStore as se } from "../stores/config.js";
|
|
16
|
+
import { useDynamicContentStore as ce } from "../stores/dynamic-content.js";
|
|
17
|
+
import { useEditorStore as ae } from "../stores/editor.js";
|
|
18
|
+
import { usePreviewStore as ie } from "../stores/preview.js";
|
|
19
19
|
import { useUnsubscribeStore as de } from "../stores/unsubscribe.js";
|
|
20
|
-
const
|
|
20
|
+
const Le = /* @__PURE__ */ z({
|
|
21
21
|
__name: "Guido",
|
|
22
22
|
props: {
|
|
23
23
|
config: null
|
|
24
24
|
},
|
|
25
25
|
emits: ["dynamic-content:open", "back", "save:start", "save:complete", "on-change", "ready", "onboarding:finished", "test-email:click"],
|
|
26
|
-
setup(
|
|
27
|
-
const
|
|
26
|
+
setup(N, { expose: W, emit: t }) {
|
|
27
|
+
const u = N, I = M(
|
|
28
28
|
() => import("./organisms/email-preview/PreviewContainer.vue.js")
|
|
29
|
-
),
|
|
29
|
+
), O = M(
|
|
30
30
|
() => import("./organisms/onboarding/OnboardingWrapper.vue.js")
|
|
31
|
-
),
|
|
32
|
-
|
|
33
|
-
const
|
|
31
|
+
), p = K(), a = ce(), v = de(), r = se();
|
|
32
|
+
r.init(u.config);
|
|
33
|
+
const i = ae(), G = ie(), s = _(() => i.hasChanges), { isTestPartner: H } = Q(), y = () => {
|
|
34
34
|
var e;
|
|
35
|
-
return (e =
|
|
35
|
+
return (e = p.value) == null ? void 0 : e.handleSave(!0);
|
|
36
36
|
}, {
|
|
37
37
|
templateId: d,
|
|
38
|
-
userId:
|
|
39
|
-
partnerName:
|
|
40
|
-
|
|
38
|
+
userId: h,
|
|
39
|
+
partnerName: f,
|
|
40
|
+
productType: b,
|
|
41
|
+
username: S,
|
|
41
42
|
template: o,
|
|
42
43
|
editor: n
|
|
43
|
-
} =
|
|
44
|
-
|
|
45
|
-
const
|
|
44
|
+
} = r, c = (o == null ? void 0 : o.html) || "", g = (o == null ? void 0 : o.css) || "", m = (o == null ? void 0 : o.preselectedDynamicContent) || [], w = (n == null ? void 0 : n.savedModulesFolderName) || A.SAVED_MODULES, D = (n == null ? void 0 : n.defaultModulesFolderName) || A.DEFAULT_MODULES;
|
|
45
|
+
i.templateId = d;
|
|
46
|
+
const { initPlugin: E } = X({
|
|
46
47
|
emailId: d,
|
|
47
|
-
userId:
|
|
48
|
-
username:
|
|
49
|
-
partnerName:
|
|
48
|
+
userId: h,
|
|
49
|
+
username: S,
|
|
50
|
+
partnerName: f,
|
|
51
|
+
productType: b,
|
|
52
|
+
preselectedDynamicContentList: m,
|
|
50
53
|
savedModulesFolderName: w,
|
|
51
|
-
defaultModulesFolderName:
|
|
52
|
-
}, C = {
|
|
53
|
-
preselectedDynamicContentList: l,
|
|
54
|
+
defaultModulesFolderName: D,
|
|
54
55
|
onReady: () => {
|
|
55
56
|
console.debug("guido:ready"), t("ready");
|
|
56
57
|
}
|
|
57
|
-
}
|
|
58
|
+
}), { getDefaultTemplate: C } = re(), { cloneTimersOnSave: T, hasTimerBlocks: k } = Y(), x = _(() => {
|
|
58
59
|
var e;
|
|
59
|
-
return !((e =
|
|
60
|
+
return !((e = r.ui) != null && e.showHeader);
|
|
60
61
|
});
|
|
61
|
-
|
|
62
|
+
J({
|
|
62
63
|
onBack: () => {
|
|
63
64
|
console.debug("guido:back"), t("back");
|
|
64
65
|
},
|
|
@@ -66,56 +67,55 @@ const Me = /* @__PURE__ */ K({
|
|
|
66
67
|
console.debug("guido:save:start"), t("save:start");
|
|
67
68
|
},
|
|
68
69
|
onSaveComplete: (e) => {
|
|
69
|
-
|
|
70
|
-
console.debug("guido:save:complete", r), t("save:complete", r);
|
|
70
|
+
console.debug("guido:save:complete", e), t("save:complete", e);
|
|
71
71
|
},
|
|
72
72
|
onTestEmailClick: () => {
|
|
73
73
|
console.debug("guido:test-email:click"), t("test-email:click");
|
|
74
74
|
}
|
|
75
75
|
});
|
|
76
|
-
const
|
|
77
|
-
console.debug("dynamic-content:close", e),
|
|
78
|
-
},
|
|
76
|
+
const F = (e) => {
|
|
77
|
+
console.debug("dynamic-content:close", e), a.setSelectedDynamicContent(e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
|
|
78
|
+
}, U = () => {
|
|
79
79
|
console.debug("dynamic-content:close", "Without Data"), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: { text: "", value: "" } }));
|
|
80
80
|
};
|
|
81
|
-
|
|
82
|
-
t("on-change",
|
|
81
|
+
V(() => s.value, () => {
|
|
82
|
+
t("on-change", s.value);
|
|
83
83
|
});
|
|
84
|
-
const
|
|
85
|
-
const
|
|
86
|
-
console.debug("dynamic-content:open",
|
|
84
|
+
const l = (e) => {
|
|
85
|
+
const L = e, { attribute: B, position: R } = L.detail;
|
|
86
|
+
console.debug("dynamic-content:open", L.detail), t("dynamic-content:open", B, R);
|
|
87
87
|
};
|
|
88
|
-
return
|
|
88
|
+
return j(async () => {
|
|
89
89
|
console.debug("Guido says happy coding 🎉"), console.debug("🚗 Ka-Chow");
|
|
90
90
|
try {
|
|
91
|
-
|
|
91
|
+
v.selectedUnsubscribePages = (o == null ? void 0 : o.selectedUnsubscribePages) || [];
|
|
92
92
|
let e = {
|
|
93
|
-
html:
|
|
94
|
-
css:
|
|
93
|
+
html: c && await P(c),
|
|
94
|
+
css: g
|
|
95
95
|
};
|
|
96
|
-
e.html || (e = await
|
|
96
|
+
e.html || (e = await C(), e.html = await P(e.html)), k(e.html) && (e.html = await T(e.html)), await E(e), a.selectedDynamicContentList = m;
|
|
97
97
|
} catch (e) {
|
|
98
98
|
console.error("Failed to initialize Stripo editor:", e);
|
|
99
99
|
}
|
|
100
|
-
document.addEventListener("dynamic-content:open",
|
|
101
|
-
}),
|
|
102
|
-
document.removeEventListener("dynamic-content:open",
|
|
100
|
+
document.addEventListener("dynamic-content:open", l);
|
|
101
|
+
}), q(() => {
|
|
102
|
+
document.removeEventListener("dynamic-content:open", l);
|
|
103
103
|
try {
|
|
104
104
|
window.UIEditor.removeEditor();
|
|
105
105
|
} catch {
|
|
106
106
|
console.debug("Failed to remove Stripo editor: No editor found");
|
|
107
107
|
}
|
|
108
|
-
|
|
109
|
-
}),
|
|
108
|
+
r.reset();
|
|
109
|
+
}), W({
|
|
110
110
|
dynamicContent: {
|
|
111
|
-
insert:
|
|
112
|
-
close:
|
|
111
|
+
insert: F,
|
|
112
|
+
close: U
|
|
113
113
|
},
|
|
114
|
-
hasChanges:
|
|
115
|
-
saveSilent:
|
|
116
|
-
}), { __sfc: !0, PreviewContainer:
|
|
114
|
+
hasChanges: s,
|
|
115
|
+
saveSilent: y
|
|
116
|
+
}), { __sfc: !0, PreviewContainer: I, OnboardingWrapper: O, headerWrapperRef: p, dynamicContentStore: a, unsubscribeStore: v, props: u, configStore: r, editorStore: i, previewStore: G, hasChanges: s, isTestPartner: H, saveSilent: y, templateId: d, userId: h, partnerName: f, productType: b, username: S, templateConfig: o, editorConfig: n, html: c, css: g, preselectedDynamicContentList: m, savedModulesFolderName: w, defaultModulesFolderName: D, emit: t, initPlugin: E, getDefaultTemplate: C, cloneTimersOnSave: T, hasTimerBlocks: k, noHeader: x, insertDynamicContent: F, closeDynamicContent: U, handleDynamicContentOpen: l, Toaster: Z, FilterSelectionDrawer: $, HeaderWrapper: ee, LoadingWrapper: oe, SaveAsTemplateDrawer: te, UnsubscribeWrapper: ne };
|
|
117
117
|
}
|
|
118
118
|
});
|
|
119
119
|
export {
|
|
120
|
-
|
|
120
|
+
Le as default
|
|
121
121
|
};
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
import l from "./EditorActions.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
4
|
-
var
|
|
3
|
+
import d from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var u = function() {
|
|
5
5
|
var s, i, n, a;
|
|
6
|
-
var
|
|
7
|
-
return
|
|
6
|
+
var o = this, e = o._self._c, t = o._self._setupProxy;
|
|
7
|
+
return e("div", { staticClass: "d-f editor-actions" }, [t.isVersionHistoryButtonVisible ? 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 = (s = t.config) == null ? void 0 : s.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(), (a = (n = t.config) == null ? void 0 : n.features) != null && a.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", { staticPosition: "bottom right" }), "tooltip-text": t.trans("newsletter.test-email") }, on: { click: t.testEmailClick } }) : o._e(), t.editorStore.isPreviewModeOpen ? o._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(r) {
|
|
8
8
|
return t.handleSave(!1);
|
|
9
|
+
} } }), e(t.MigrationConfirmModal, { ref: "migrationModalRef", on: { confirm: function(r) {
|
|
10
|
+
return t.executeSave(!1);
|
|
9
11
|
} } })], 1);
|
|
10
|
-
},
|
|
12
|
+
}, p = [], c = /* @__PURE__ */ d(
|
|
11
13
|
l,
|
|
12
|
-
d,
|
|
13
14
|
u,
|
|
15
|
+
p,
|
|
14
16
|
!1,
|
|
15
17
|
null,
|
|
16
|
-
"
|
|
18
|
+
"a289b9e9"
|
|
17
19
|
);
|
|
18
|
-
const v =
|
|
20
|
+
const v = c.exports;
|
|
19
21
|
export {
|
|
20
22
|
v as default
|
|
21
23
|
};
|
|
@@ -1,41 +1,51 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { useConfig as
|
|
3
|
-
import { useExport as
|
|
4
|
-
import { useTestEmailClick as
|
|
5
|
-
import { useSave as
|
|
6
|
-
import { useTranslations as
|
|
7
|
-
import { useVersionHistoryApi as
|
|
8
|
-
import { useEditorStore as
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
|
|
1
|
+
import { defineComponent as E, ref as n, computed as g } from "vue";
|
|
2
|
+
import { useConfig as w } from "../../../composables/useConfig.js";
|
|
3
|
+
import { useExport as C } from "../../../composables/useExport.js";
|
|
4
|
+
import { useTestEmailClick as M } from "../../../composables/useGuidoActions.js";
|
|
5
|
+
import { useSave as O } from "../../../composables/useSave.js";
|
|
6
|
+
import { useTranslations as A } from "../../../composables/useTranslations.js";
|
|
7
|
+
import { useVersionHistoryApi as k } from "../../../composables/useVersionHistoryApi.js";
|
|
8
|
+
import { useEditorStore as B } from "../../../stores/editor.js";
|
|
9
|
+
import { useTemplateStore as R } from "../../../stores/template.js";
|
|
10
|
+
import { getTooltipOptions as b } from "../../../utils/tooltipUtils.js";
|
|
11
|
+
import { InButtonV2 as D } from "@useinsider/design-system-vue";
|
|
12
|
+
import { storeToRefs as I } from "pinia";
|
|
13
|
+
import P from "./MigrationConfirmModal.vue.js";
|
|
14
|
+
const Z = /* @__PURE__ */ E({
|
|
12
15
|
__name: "EditorActions",
|
|
13
|
-
setup(
|
|
14
|
-
const { config:
|
|
15
|
-
if (
|
|
16
|
+
setup(j, { expose: H }) {
|
|
17
|
+
const { config: a } = w(), { exportHtml: m } = C(), { save: p } = O(), { openVersionHistory: l, closeVersionHistory: c } = k(), e = B(), u = R(), { hasMigrations: f } = I(u), s = A(), r = n(!1), i = n(!1), v = n(), S = M(), V = () => {
|
|
18
|
+
if (e.isVersionHistoryOpen) {
|
|
16
19
|
c();
|
|
17
20
|
return;
|
|
18
21
|
}
|
|
19
|
-
|
|
20
|
-
},
|
|
21
|
-
r.value = !0, await
|
|
22
|
-
},
|
|
23
|
-
|
|
24
|
-
},
|
|
22
|
+
l();
|
|
23
|
+
}, T = async () => {
|
|
24
|
+
r.value = !0, await m(), r.value = !1;
|
|
25
|
+
}, _ = () => {
|
|
26
|
+
e.isSaveAsTemplateDrawerOpen = !0;
|
|
27
|
+
}, h = g(() => e.isVersionHistoryOpen ? s("newsletter.close-version-history") : s("newsletter.version-history")), x = g(
|
|
25
28
|
() => {
|
|
26
|
-
var
|
|
27
|
-
return ((
|
|
29
|
+
var o, t;
|
|
30
|
+
return ((t = (o = a.value) == null ? void 0 : o.features) == null ? void 0 : t.versionHistory) && !e.isPreviewModeOpen;
|
|
28
31
|
}
|
|
29
|
-
),
|
|
30
|
-
i.value = !0,
|
|
31
|
-
const
|
|
32
|
-
return i.value = !1, (
|
|
32
|
+
), d = async (o) => {
|
|
33
|
+
i.value = !0, e.loadingStatus = !0;
|
|
34
|
+
const t = await p(o);
|
|
35
|
+
return i.value = !1, (o || !t) && (e.loadingStatus = !1), t;
|
|
36
|
+
}, y = (o) => {
|
|
37
|
+
var t;
|
|
38
|
+
if (!o && f.value) {
|
|
39
|
+
(t = v.value) == null || t.open();
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
d(o);
|
|
33
43
|
};
|
|
34
|
-
return
|
|
35
|
-
handleSave:
|
|
36
|
-
}), { __sfc: !0, config:
|
|
44
|
+
return H({
|
|
45
|
+
handleSave: y
|
|
46
|
+
}), { __sfc: !0, config: a, exportHtml: m, save: p, openVersionHistory: l, closeVersionHistory: c, editorStore: e, templateStore: u, hasMigrations: f, trans: s, isExporting: r, isSaving: i, migrationModalRef: v, testEmailClick: S, handleVersionHistory: V, handleExport: T, handleSaveAs: _, versionHistoryTooltipText: h, isVersionHistoryButtonVisible: x, executeSave: d, handleSave: y, getTooltipOptions: b, InButtonV2: D, MigrationConfirmModal: P };
|
|
37
47
|
}
|
|
38
48
|
});
|
|
39
49
|
export {
|
|
40
|
-
|
|
50
|
+
Z as default
|
|
41
51
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import n from "./MigrationConfirmModal.vue2.js";
|
|
2
|
+
import t from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var i = function() {
|
|
4
|
+
var e = this, r = e._self._c, o = e._self._setupProxy;
|
|
5
|
+
return o.isVisible ? r(o.WpModal, { attrs: { id: "migration-confirm-modal", size: "X-small", "close-on-outside-click": !1, "footer-button-options": o.footerButtonOptions, title: o.trans("email-editor.migration-confirm-save") }, on: { close: o.close, "primary-action": o.handleConfirm } }, [r("p", { domProps: { innerHTML: e._s(o.confirmMessage) } })]) : e._e();
|
|
6
|
+
}, s = [], a = /* @__PURE__ */ t(
|
|
7
|
+
n,
|
|
8
|
+
i,
|
|
9
|
+
s,
|
|
10
|
+
!1,
|
|
11
|
+
null,
|
|
12
|
+
null
|
|
13
|
+
);
|
|
14
|
+
const c = a.exports;
|
|
15
|
+
export {
|
|
16
|
+
c as default
|
|
17
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { defineComponent as g, ref as m, computed as s } from "vue";
|
|
2
|
+
import _ from "../../wrappers/WpModal.vue.js";
|
|
3
|
+
import { useTranslations as b } from "../../../composables/useTranslations.js";
|
|
4
|
+
import { useTemplateStore as M } from "../../../stores/template.js";
|
|
5
|
+
const k = /* @__PURE__ */ g({
|
|
6
|
+
__name: "MigrationConfirmModal",
|
|
7
|
+
emits: ["confirm"],
|
|
8
|
+
setup(y, { expose: c, emit: n }) {
|
|
9
|
+
const t = m(!1), o = M(), e = b(), l = m({
|
|
10
|
+
cancelOrBackButton: {
|
|
11
|
+
type: "secondary",
|
|
12
|
+
labelText: e("campaign-builder.cancel"),
|
|
13
|
+
styling: "ghost"
|
|
14
|
+
},
|
|
15
|
+
primaryButton: {
|
|
16
|
+
type: "primary",
|
|
17
|
+
labelText: e("email-editor.migration-confirm-save")
|
|
18
|
+
}
|
|
19
|
+
}), i = s(() => {
|
|
20
|
+
if (o.hasRecommendationMigrations && o.hasItemsMigrations) {
|
|
21
|
+
const d = e("email-recommendation.recommendation"), u = e("email-editor.items");
|
|
22
|
+
return `${d} ${e("campaign-builder.or")} ${u}`;
|
|
23
|
+
}
|
|
24
|
+
return o.hasItemsMigrations ? e("email-editor.items") : e("email-recommendation.recommendation");
|
|
25
|
+
}), f = s(() => e("email-editor.migration-confirm-message", {
|
|
26
|
+
blockNames: i.value
|
|
27
|
+
})), r = () => {
|
|
28
|
+
t.value = !0;
|
|
29
|
+
}, a = () => {
|
|
30
|
+
t.value = !1;
|
|
31
|
+
}, p = () => {
|
|
32
|
+
a(), n("confirm");
|
|
33
|
+
};
|
|
34
|
+
return c({ open: r }), { __sfc: !0, emit: n, isVisible: t, templateStore: o, trans: e, footerButtonOptions: l, blockNames: i, confirmMessage: f, open: r, close: a, handleConfirm: p, WpModal: _ };
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
export {
|
|
38
|
+
k as default
|
|
39
|
+
};
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import
|
|
3
|
-
import { useToaster as
|
|
4
|
-
import { useTranslations as
|
|
5
|
-
import { ToasterTypeOptions as
|
|
1
|
+
import { defineComponent as g, ref as y, computed as n, watch as S } from "vue";
|
|
2
|
+
import T from "../../wrappers/WpDrawer.vue.js";
|
|
3
|
+
import { useToaster as v } from "../../../composables/useToaster.js";
|
|
4
|
+
import { useTranslations as B } from "../../../composables/useTranslations.js";
|
|
5
|
+
import { ToasterTypeOptions as C } from "../../../enums/toaster.js";
|
|
6
6
|
import { useUnsubscribeStore as w } from "../../../stores/unsubscribe.js";
|
|
7
|
-
import { InContainer as
|
|
8
|
-
import
|
|
9
|
-
const
|
|
7
|
+
import { InContainer as h } from "@useinsider/design-system-vue";
|
|
8
|
+
import U from "./UnsubscribeBreadcrumb.vue.js";
|
|
9
|
+
const F = /* @__PURE__ */ g({
|
|
10
10
|
__name: "UnsubscribePageSelection",
|
|
11
|
-
setup(
|
|
12
|
-
const s =
|
|
11
|
+
setup(P) {
|
|
12
|
+
const s = B(), e = w(), { showToaster: a } = v(), o = y(!1), c = n(() => e.isActiveTypeLastInCollection ? o.value ? s("unsubscription-preference.applying-changes") : s("statistics.apply") : s("products.select-and-continue")), i = n(() => e.pageSelectionUpdateStatus && e.isActiveTypeFirstInCollection ? s("products.cancel") : s("newsletter.back")), u = n(() => ({
|
|
13
13
|
primaryButton: {
|
|
14
14
|
styling: "solid",
|
|
15
15
|
type: "primary",
|
|
@@ -23,28 +23,28 @@ const E = /* @__PURE__ */ f({
|
|
|
23
23
|
labelText: i.value,
|
|
24
24
|
disabledStatus: o.value
|
|
25
25
|
}
|
|
26
|
-
})),
|
|
26
|
+
})), p = (t) => e.getSelectedTemplateByActiveType === t ? "bor-w-3 bor-s-s bor-c-7" : "bor-w-1 bor-s-s bor-c-6", r = (t) => {
|
|
27
27
|
e.pageSelectionDrawerStatus = !1, t && setTimeout(() => {
|
|
28
28
|
t();
|
|
29
29
|
}, 500);
|
|
30
|
-
},
|
|
30
|
+
}, d = () => {
|
|
31
31
|
if (e.isActiveTypeFirstInCollection) {
|
|
32
32
|
r(), e.pageSelectionUpdateStatus || (e.typeSelectionDrawerStatus = !0);
|
|
33
33
|
return;
|
|
34
34
|
}
|
|
35
35
|
e.setPreviousType();
|
|
36
|
-
},
|
|
36
|
+
}, m = () => {
|
|
37
37
|
if (e.isActiveTypeLastInCollection) {
|
|
38
38
|
o.value = !0;
|
|
39
|
-
const t = e.selectedCollectionType, l = e.getSelectedTemplatesByCollection(t);
|
|
40
|
-
e.addUnsubscribePages(l), document.dispatchEvent(new CustomEvent("unsubscribe:select", {
|
|
39
|
+
const t = e.selectedCollectionType, l = e.getSelectedTemplatesByCollection(t), f = e.getSelectedUnsubscribePagesByCollection(t);
|
|
40
|
+
e.removeUnsubscribePages(f), e.addUnsubscribePages(l), document.dispatchEvent(new CustomEvent("unsubscribe:select", {
|
|
41
41
|
detail: {
|
|
42
42
|
collectionType: t,
|
|
43
43
|
selectedPages: l
|
|
44
44
|
}
|
|
45
45
|
})), r(() => {
|
|
46
46
|
o.value = !1, a({
|
|
47
|
-
type:
|
|
47
|
+
type: C.Success,
|
|
48
48
|
message: s("global-unsubscribe.pages-were-attached")
|
|
49
49
|
});
|
|
50
50
|
});
|
|
@@ -54,11 +54,11 @@ const E = /* @__PURE__ */ f({
|
|
|
54
54
|
}, b = (t) => {
|
|
55
55
|
e.setSelectedTemplate(t);
|
|
56
56
|
};
|
|
57
|
-
return
|
|
57
|
+
return S(() => e.pageSelectionDrawerStatus, (t) => {
|
|
58
58
|
t && e.pageSelectionUpdateStatus && e.fetchTemplates();
|
|
59
|
-
}), { __sfc: !0, trans: s, unsubscribeStore: e, showToaster: a, isApplying: o, getPrimaryButtonText: c, getCancelOrBackButtonText: i, footerButtonGroupOptions:
|
|
59
|
+
}), { __sfc: !0, trans: s, unsubscribeStore: e, showToaster: a, isApplying: o, getPrimaryButtonText: c, getCancelOrBackButtonText: i, footerButtonGroupOptions: u, getBorderClass: p, closeModal: r, handleBack: d, handleSave: m, selectTemplate: b, WpDrawer: T, InContainer: h, UnsubscribeBreadcrumb: U };
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
export {
|
|
63
|
-
|
|
63
|
+
F as default
|
|
64
64
|
};
|
|
@@ -1,21 +1,17 @@
|
|
|
1
|
-
import { useConfig as
|
|
2
|
-
import { useSaveStart as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const o = p(), s = f(), { validateHtml: i } = V(), { callbacks: a } = d(), { extractSyncModuleData: r } = v(), { setSyncModuleUnsubscriptionPages: n } = S();
|
|
9
|
-
return { save: async (l = !1) => {
|
|
1
|
+
import { useConfig as l } from "./useConfig.js";
|
|
2
|
+
import { useSaveStart as m, useSaveComplete as c } from "./useGuidoActions.js";
|
|
3
|
+
import { useTemplatePreparation as d } from "../utils/templatePreparation.js";
|
|
4
|
+
import { useHtmlValidator as p } from "./useHtmlValidator.js";
|
|
5
|
+
const w = () => {
|
|
6
|
+
const i = m(), s = c(), { validateHtml: o } = p(), { callbacks: a } = l();
|
|
7
|
+
return { save: async (r = !1) => {
|
|
10
8
|
var e;
|
|
11
|
-
|
|
12
|
-
const { prepareTemplateDetails:
|
|
13
|
-
if (
|
|
14
|
-
return;
|
|
15
|
-
const { unsubscribePayload: m, stripoModules: u } = r(t.rawHtml);
|
|
16
|
-
return await n(m), t.modules = u, l || s(t), t;
|
|
9
|
+
i();
|
|
10
|
+
const { prepareTemplateDetails: n } = d(), t = await n();
|
|
11
|
+
if (await o(t.compiledHtml, t.dynamicContentList, !0) && !((e = a.value) != null && e.externalValidation && !await a.value.externalValidation(t)))
|
|
12
|
+
return r || s(t), t;
|
|
17
13
|
} };
|
|
18
14
|
};
|
|
19
15
|
export {
|
|
20
|
-
|
|
16
|
+
w as useSave
|
|
21
17
|
};
|