@useinsider/guido 1.0.0-beta.d5d5bac → 1.0.0-beta.d5da5b3
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/dist/@types/generic.d.ts +4 -4
- package/dist/components/Guido.vue.d.ts +3 -6
- package/dist/components/Guido.vue.js +8 -8
- package/dist/components/Guido.vue2.js +36 -48
- package/dist/components/organisms/design-preview/AmpErrorModal.vue.d.ts +16 -0
- package/dist/components/organisms/design-preview/AmpErrorModal.vue.js +21 -0
- package/dist/components/organisms/design-preview/AmpErrorModal.vue2.js +31 -0
- package/dist/components/organisms/design-preview/DesktopPreview.vue.d.ts +16 -0
- package/dist/components/organisms/design-preview/DesktopPreview.vue.js +22 -0
- package/dist/components/organisms/design-preview/DesktopPreview.vue2.js +29 -0
- package/dist/components/organisms/design-preview/EmailPreview.vue.d.ts +16 -0
- package/dist/components/organisms/design-preview/EmailPreview.vue.js +17 -0
- package/dist/components/organisms/design-preview/EmailPreview.vue2.js +40 -0
- package/dist/components/organisms/design-preview/EmailView.vue.d.ts +18 -0
- package/dist/components/organisms/design-preview/EmailView.vue.js +19 -0
- package/dist/components/organisms/design-preview/EmailView.vue2.js +24 -0
- package/dist/components/organisms/design-preview/InboxView.vue.d.ts +17 -0
- package/dist/components/organisms/design-preview/InboxView.vue.js +19 -0
- package/dist/components/organisms/design-preview/InboxView.vue2.js +23 -0
- package/dist/components/organisms/design-preview/MobilePreview.vue.d.ts +17 -0
- package/dist/components/organisms/design-preview/MobilePreview.vue.js +17 -0
- package/dist/components/organisms/design-preview/MobilePreview.vue2.js +23 -0
- package/dist/components/organisms/header/AmpToggle.vue.d.ts +2 -0
- package/dist/components/organisms/header/AmpToggle.vue.js +17 -0
- package/dist/components/organisms/header/AmpToggle.vue2.js +48 -0
- package/dist/components/organisms/header/MiddleSlot.vue.js +6 -6
- package/dist/components/organisms/header/MiddleSlot.vue2.js +17 -13
- package/dist/components/organisms/header/RightSlot.vue.js +1 -1
- package/dist/components/organisms/header/ViewOptions.vue.js +6 -6
- package/dist/composables/useDebounce.d.ts +4 -0
- package/dist/composables/useDebounce.js +12 -0
- package/dist/composables/useMobileGmailFit.d.ts +5 -0
- package/dist/composables/useMobileGmailFit.js +69 -0
- package/dist/composables/usePreviewMode.d.ts +6 -0
- package/dist/composables/usePreviewMode.js +19 -0
- package/dist/composables/useStripo.js +17 -23
- package/dist/enums/emailPreview.d.ts +3 -0
- package/dist/enums/emailPreview.js +6 -0
- package/dist/enums/gmailMobilePreview.d.ts +7 -0
- package/dist/enums/gmailMobilePreview.js +17 -0
- package/dist/extensions/DynamicContent/dynamic-content.js +15 -13
- package/dist/guido.css +1 -1
- package/dist/inbox-mockup.svg +39 -0
- package/dist/phone-mockup.svg +31 -0
- package/dist/stores/editor.d.ts +4 -0
- package/dist/stores/editor.js +7 -3
- package/package.json +1 -1
- package/dist/stores/dynamic-content.d.ts +0 -27
- package/dist/stores/dynamic-content.js +0 -23
- package/dist/utils/arrayUtil.d.ts +0 -1
- package/dist/utils/arrayUtil.js +0 -10
- package/dist/utils/genericUtil.d.ts +0 -2
- package/dist/utils/genericUtil.js +0 -7
package/dist/@types/generic.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { DynamicContent, GuidoConfig } from '@@/Types/generic';
|
|
1
|
+
import type { DynamicContent, GuidoConfig, EmailData } from '@@/Types/generic';
|
|
2
2
|
import type { Template } from '@@/Types/stripo';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
templateId: string;
|
|
@@ -8,8 +8,8 @@ type __VLS_Props = {
|
|
|
8
8
|
username?: string;
|
|
9
9
|
html?: string;
|
|
10
10
|
css?: string;
|
|
11
|
-
preselectedDynamicContentList: DynamicContent[];
|
|
12
11
|
guidoConfig: GuidoConfig;
|
|
12
|
+
emailData?: EmailData;
|
|
13
13
|
};
|
|
14
14
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, {
|
|
15
15
|
dynamicContent: {
|
|
@@ -20,10 +20,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__
|
|
|
20
20
|
"dynamic-content:open": (detail: DynamicContent | null) => void;
|
|
21
21
|
back: () => void;
|
|
22
22
|
"save:start": () => void;
|
|
23
|
-
"save:complete": (
|
|
24
|
-
template: Omit<Template, "forceRecreate">;
|
|
25
|
-
dynamicContentList: DynamicContent[];
|
|
26
|
-
}) => void;
|
|
23
|
+
"save:complete": (template: Omit<Template, "forceRecreate">) => void;
|
|
27
24
|
}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_Props>>>, {}>;
|
|
28
25
|
export default _default;
|
|
29
26
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import o from "./Guido.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
|
-
import
|
|
3
|
+
import t from "../_virtual/_plugin-vue2_normalizer.js";
|
|
4
4
|
var s = function() {
|
|
5
|
-
var
|
|
6
|
-
return r("div", { staticClass: "guido-editor__wrapper" }, [r(
|
|
7
|
-
},
|
|
5
|
+
var i = this, r = i._self._c, e = i._self._setupProxy;
|
|
6
|
+
return r("div", { staticClass: "guido-editor__wrapper" }, [r(e.HeaderWrapper), r(e.EmailPreview, { directives: [{ name: "show", rawName: "v-show", value: e.editorStore.isPreviewModeOpen, expression: "editorStore.isPreviewModeOpen" }], attrs: { "email-data": i.emailData, "is-visible": e.editorStore.isPreviewModeOpen } }), r("div", { directives: [{ name: "show", rawName: "v-show", value: !e.editorStore.isPreviewModeOpen, expression: "!editorStore.isPreviewModeOpen" }], staticClass: "guido-editor__container", attrs: { id: "guido-editor" } })], 1);
|
|
7
|
+
}, a = [], d = /* @__PURE__ */ t(
|
|
8
8
|
o,
|
|
9
9
|
s,
|
|
10
|
-
|
|
10
|
+
a,
|
|
11
11
|
!1,
|
|
12
12
|
null,
|
|
13
|
-
"
|
|
13
|
+
"7836f831"
|
|
14
14
|
);
|
|
15
|
-
const
|
|
15
|
+
const m = d.exports;
|
|
16
16
|
export {
|
|
17
|
-
|
|
17
|
+
m as default
|
|
18
18
|
};
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { provideGuidoActions as
|
|
3
|
-
import { usePartner as
|
|
1
|
+
import { defineComponent as w, onMounted as E } from "vue";
|
|
2
|
+
import { provideGuidoActions as S } from "../composables/useGuidoActions.js";
|
|
3
|
+
import { usePartner as D } from "../composables/usePartner.js";
|
|
4
4
|
import { useStripo as _ } from "../composables/useStripo.js";
|
|
5
5
|
import { DefaultUsername as G, DefaultGuidoConfig as I } from "../enums/defaults.js";
|
|
6
|
+
import P from "./organisms/design-preview/EmailPreview.vue.js";
|
|
6
7
|
import k from "./organisms/header/HeaderWrapper.vue.js";
|
|
7
|
-
import { useStripoApi as
|
|
8
|
-
import {
|
|
9
|
-
const
|
|
8
|
+
import { useStripoApi as T } from "../services/stripoApi.js";
|
|
9
|
+
import { useEditorStore as N } from "../stores/editor.js";
|
|
10
|
+
const M = /* @__PURE__ */ w({
|
|
10
11
|
__name: "Guido",
|
|
11
12
|
props: {
|
|
12
13
|
templateId: null,
|
|
@@ -16,34 +17,27 @@ const K = /* @__PURE__ */ h({
|
|
|
16
17
|
username: null,
|
|
17
18
|
html: null,
|
|
18
19
|
css: null,
|
|
19
|
-
|
|
20
|
-
|
|
20
|
+
guidoConfig: null,
|
|
21
|
+
emailData: null
|
|
21
22
|
},
|
|
22
23
|
emits: ["dynamic-content:open", "back", "save:start", "save:complete"],
|
|
23
|
-
setup(
|
|
24
|
-
const o =
|
|
25
|
-
templateId:
|
|
24
|
+
setup(C, { expose: b, emit: t }) {
|
|
25
|
+
const o = C, { getPartnerName: n, getProductType: a } = D(), {
|
|
26
|
+
templateId: c,
|
|
26
27
|
userId: r,
|
|
27
|
-
guidoConfig:
|
|
28
|
-
html:
|
|
29
|
-
css:
|
|
30
|
-
partnerName:
|
|
31
|
-
productType:
|
|
32
|
-
username:
|
|
28
|
+
guidoConfig: i,
|
|
29
|
+
html: s = "",
|
|
30
|
+
css: l = "",
|
|
31
|
+
partnerName: d = n(),
|
|
32
|
+
productType: u = a(),
|
|
33
|
+
username: m = G
|
|
33
34
|
} = o;
|
|
34
35
|
window.GuidoConfig = {
|
|
35
36
|
...I,
|
|
36
|
-
...
|
|
37
|
+
...i
|
|
37
38
|
};
|
|
38
|
-
const { initPlugin:
|
|
39
|
-
|
|
40
|
-
userId: r,
|
|
41
|
-
username: y,
|
|
42
|
-
partnerName: u,
|
|
43
|
-
productType: p,
|
|
44
|
-
preselectedDynamicContentList: c
|
|
45
|
-
}), { getDefaultTemplate: C } = P();
|
|
46
|
-
w({
|
|
39
|
+
const { initPlugin: p } = _({ emailId: c, userId: r, username: m, partnerName: d, productType: u }), { getDefaultTemplate: f } = T(), h = N();
|
|
40
|
+
S({
|
|
47
41
|
onBack: () => {
|
|
48
42
|
console.debug("guido:back"), t("back");
|
|
49
43
|
},
|
|
@@ -51,45 +45,39 @@ const K = /* @__PURE__ */ h({
|
|
|
51
45
|
console.debug("guido:save:start"), t("save:start");
|
|
52
46
|
},
|
|
53
47
|
onSaveComplete: (e) => {
|
|
54
|
-
console.debug("guido:save:complete",
|
|
55
|
-
template: e,
|
|
56
|
-
dynamicContentList: n.getSelectedDynamicContentList
|
|
57
|
-
}), t("save:complete", {
|
|
58
|
-
template: e,
|
|
59
|
-
dynamicContentList: n.getSelectedDynamicContentList
|
|
60
|
-
});
|
|
48
|
+
console.debug("guido:save:complete", e), t("save:complete", e);
|
|
61
49
|
}
|
|
62
50
|
});
|
|
63
|
-
const
|
|
64
|
-
console.debug("dynamic-content:close", e),
|
|
65
|
-
},
|
|
51
|
+
const g = (e) => {
|
|
52
|
+
console.debug("dynamic-content:close", e), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: e }));
|
|
53
|
+
}, y = () => {
|
|
66
54
|
console.debug("dynamic-content:close", "Without Data"), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: { text: "", value: "" } }));
|
|
67
55
|
};
|
|
68
|
-
return
|
|
56
|
+
return E(async () => {
|
|
69
57
|
console.debug("Guido says happy coding 🎉"), console.debug("🚗 Ka-Chow");
|
|
70
58
|
try {
|
|
71
59
|
let e = {
|
|
72
|
-
html:
|
|
73
|
-
css:
|
|
60
|
+
html: s,
|
|
61
|
+
css: l,
|
|
74
62
|
forceRecreate: !0
|
|
75
63
|
// TODO: It should be false for old templates. We will communicate with Stripo
|
|
76
64
|
};
|
|
77
|
-
e.html || (e = await
|
|
65
|
+
e.html || (e = await f()), await p(e);
|
|
78
66
|
} catch (e) {
|
|
79
67
|
console.error("Failed to initialize Stripo editor:", e);
|
|
80
68
|
}
|
|
81
69
|
document.addEventListener("dynamic-content:open", (e) => {
|
|
82
|
-
const
|
|
83
|
-
console.debug("dynamic-content:open",
|
|
70
|
+
const v = e;
|
|
71
|
+
console.debug("dynamic-content:open", v.detail), t("dynamic-content:open", v.detail);
|
|
84
72
|
});
|
|
85
|
-
}),
|
|
73
|
+
}), b({
|
|
86
74
|
dynamicContent: {
|
|
87
|
-
insert:
|
|
88
|
-
close:
|
|
75
|
+
insert: g,
|
|
76
|
+
close: y
|
|
89
77
|
}
|
|
90
|
-
}), { __sfc: !0,
|
|
78
|
+
}), { __sfc: !0, props: o, getPartnerName: n, getProductType: a, templateId: c, userId: r, guidoConfig: i, html: s, css: l, partnerName: d, productType: u, username: m, emit: t, initPlugin: p, getDefaultTemplate: f, editorStore: h, insertDynamicContent: g, closeDynamicContent: y, EmailPreview: P, HeaderWrapper: k };
|
|
91
79
|
}
|
|
92
80
|
});
|
|
93
81
|
export {
|
|
94
|
-
|
|
82
|
+
M as default
|
|
95
83
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
errors: string[];
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {
|
|
5
|
+
close: () => void;
|
|
6
|
+
}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
+
type __VLS_TypePropsToOption<T> = {
|
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
+
} : {
|
|
13
|
+
type: import('vue').PropType<T[K]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import n from "./AmpErrorModal.vue2.js";
|
|
2
|
+
import a from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var i = function() {
|
|
4
|
+
var e = this, o = e._self._c, t = e._self._setupProxy;
|
|
5
|
+
return o(t.InModalV2, { attrs: { id: "amp-error-modal", "close-button-status": "", "close-on-outside-click": "", "description-status": "", "footer-status": "", status: "", size: "medium", "description-text": t.trans("email.amp-validation-description"), "footer-button-group-options": t.footerButtonOptions, "title-text": t.trans("email.amp-validation-title") }, on: { cancelOrBackButtonEvent: t.handleClose, onCloseEvent: t.handleClose, primaryButtonEvent: t.handleFixInCodeEditor }, scopedSlots: e._u([{ key: "contentSlot", fn: function() {
|
|
6
|
+
return [o("div", { staticClass: "d-f f-d-c" }, [o("div", { staticClass: "mb-3" }, [o("div", { staticClass: "l-s-5 f-s-1 f-w-600 t-c-55 t-t-u" }, [e._v(" " + e._s(`${t.trans("products.errors")}(${t.errorCount})`) + " ")])]), o("div", { staticClass: "d-f f-d-c g-13 max-h-21-s o-y-a", staticStyle: { gap: "16px" } }, e._l(t.props.errors, function(s, r) {
|
|
7
|
+
return o(t.InOnPageMessage, { key: r, attrs: { icon: "filled-error-box", size: "medium", type: "alert", text: s } });
|
|
8
|
+
}), 1)])];
|
|
9
|
+
}, proxy: !0 }]) });
|
|
10
|
+
}, l = [], c = /* @__PURE__ */ a(
|
|
11
|
+
n,
|
|
12
|
+
i,
|
|
13
|
+
l,
|
|
14
|
+
!1,
|
|
15
|
+
null,
|
|
16
|
+
null
|
|
17
|
+
);
|
|
18
|
+
const f = c.exports;
|
|
19
|
+
export {
|
|
20
|
+
f as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { defineComponent as f } from "vue";
|
|
2
|
+
import { usePreviewMode as u } from "../../../composables/usePreviewMode.js";
|
|
3
|
+
import { useToaster as E } from "../../../composables/useToaster.js";
|
|
4
|
+
import { useTranslations as w } from "../../../composables/useTranslations.js";
|
|
5
|
+
import { useEditorStore as g } from "../../../stores/editor.js";
|
|
6
|
+
import { InOnPageMessage as y, InModalV2 as A } from "@useinsider/design-system-vue";
|
|
7
|
+
const M = /* @__PURE__ */ f({
|
|
8
|
+
__name: "AmpErrorModal",
|
|
9
|
+
props: {
|
|
10
|
+
errors: null
|
|
11
|
+
},
|
|
12
|
+
emits: ["close"],
|
|
13
|
+
setup(p, { emit: o }) {
|
|
14
|
+
const r = p, e = w(), t = g(), { disablePreviewUI: i } = u(), { showToaster: s } = E(), d = r.errors.length, l = () => {
|
|
15
|
+
o("close");
|
|
16
|
+
}, c = () => {
|
|
17
|
+
var n, a;
|
|
18
|
+
o("close"), t.isPreviewModeOpen = !1, (a = (n = window.StripoEditorApi) == null ? void 0 : n.codeEditorApi) != null && a.openCodeEditor ? (i(), window.StripoEditorApi.codeEditorApi.openCodeEditor()) : s({
|
|
19
|
+
type: "error",
|
|
20
|
+
message: "StripoEditorApi codeEditorApi not available"
|
|
21
|
+
});
|
|
22
|
+
}, m = {
|
|
23
|
+
primaryButton: { type: "primary", labelText: e("email.amp-validation-fix") },
|
|
24
|
+
cancelOrBackButton: { type: "secondary", labelText: e("campaign-builder.cancel"), styling: "ghost" }
|
|
25
|
+
};
|
|
26
|
+
return { __sfc: !0, props: r, emit: o, trans: e, editorStore: t, disablePreviewUI: i, showToaster: s, errorCount: d, handleClose: l, handleFixInCodeEditor: c, footerButtonOptions: m, InModalV2: A, InOnPageMessage: y };
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
export {
|
|
30
|
+
M as default
|
|
31
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { EmailData } from '@@/Types/generic';
|
|
2
|
+
interface Props {
|
|
3
|
+
emailHtml: string;
|
|
4
|
+
emailData?: EmailData;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
+
type __VLS_TypePropsToOption<T> = {
|
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
+
} : {
|
|
13
|
+
type: import('vue').PropType<T[K]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import a from "./DesktopPreview.vue2.js";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import i from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var r = function() {
|
|
5
|
+
var e = this, s = e._self._c, t = e._self._setupProxy;
|
|
6
|
+
return s(t.InContainer, { staticClass: "s-2 m-b-5", attrs: { "full-width-content-status": "", "header-status": "", "border-radius": "bor-r-1", "container-type": "default", "footer-status": !1 }, scopedSlots: e._u([{ key: "headerLeftSlot", fn: function() {
|
|
7
|
+
return [s("div", { staticClass: "d-f a-i-c j-c-s-b w-1" }, [s("div", { staticClass: "d-f a-i-c" }, [s("div", { staticClass: "b-c-49 bor-r-100 w-5-s h-5-s d-f a-i-c j-c-c" }, [s(t.InIcons, { attrs: { name: "line-menu-profile" } })], 1), s("div", { staticClass: "d-f f-d-c ml-2" }, [s("p", { staticClass: "t-c-53 f-w-600 f-s-1 l-h-1" }, [e._v(" " + e._s(t.senderName) + " ")]), s("p", { staticClass: "t-c-55 f-w-400 f-s-12 l-h-1" }, [e._v(" " + e._s(t.subject) + " ")])])])])];
|
|
8
|
+
}, proxy: !0 }, { key: "headerRightSlot", fn: function() {
|
|
9
|
+
return [s("div", { staticClass: "d-f a-i-c j-c-c" }, [s(t.InProgress, { staticClass: "min-w-15-s", attrs: { id: "email-size-progress", "description-status": "", "description-position": "left", description: t.emailSize, "max-value": t.MAX_EMAIL_WEIGHT, type: t.progressType, value: t.progressValue } }), s(t.InTooltip, { staticClass: "d-f ml-1", attrs: { id: "email-size-tooltip", align: "center", position: "bottom", text: t.trans("email.preview-design-size-tooltip") } })], 1)];
|
|
10
|
+
}, proxy: !0 }]) }, [s("iframe", { staticClass: "email-iframe w-1 h-1 bor-w-0", attrs: { sandbox: "allow-same-origin allow-popups allow-forms allow-scripts", srcdoc: e.emailHtml } })]);
|
|
11
|
+
}, o = [], l = /* @__PURE__ */ i(
|
|
12
|
+
a,
|
|
13
|
+
r,
|
|
14
|
+
o,
|
|
15
|
+
!1,
|
|
16
|
+
null,
|
|
17
|
+
"4b4b203f"
|
|
18
|
+
);
|
|
19
|
+
const d = l.exports;
|
|
20
|
+
export {
|
|
21
|
+
d as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { defineComponent as _, computed as c, ref as o, watch as I } from "vue";
|
|
2
|
+
import { useTranslations as d } from "../../../composables/useTranslations.js";
|
|
3
|
+
import { InTooltip as M, InProgress as g, InIcons as h, InContainer as v } from "@useinsider/design-system-vue";
|
|
4
|
+
import { MAX_EMAIL_WEIGHT as w } from "../../../enums/emailPreview.js";
|
|
5
|
+
const A = /* @__PURE__ */ _({
|
|
6
|
+
__name: "DesktopPreview",
|
|
7
|
+
props: {
|
|
8
|
+
emailHtml: null,
|
|
9
|
+
emailData: null
|
|
10
|
+
},
|
|
11
|
+
setup(u) {
|
|
12
|
+
const t = u, s = d(), p = c(() => {
|
|
13
|
+
var e;
|
|
14
|
+
return ((e = t.emailData) == null ? void 0 : e.senderName) || `(${s("settings.sender-name")})`;
|
|
15
|
+
}), f = c(() => {
|
|
16
|
+
var e;
|
|
17
|
+
return ((e = t.emailData) == null ? void 0 : e.subject) || s("newsletter.subject");
|
|
18
|
+
}), r = 102, m = o("~-- KB"), l = o(0), n = o("success"), i = () => {
|
|
19
|
+
if (!t.emailHtml)
|
|
20
|
+
return;
|
|
21
|
+
const e = new Blob([t.emailHtml]).size, a = Math.round(e / 1024);
|
|
22
|
+
m.value = `~${a} KB`, l.value = Math.min(a, r), a < 102 ? n.value = "success" : n.value = "warning";
|
|
23
|
+
};
|
|
24
|
+
return I(() => t.emailHtml, i, { immediate: !0 }), { __sfc: !0, trans: s, props: t, senderName: p, subject: f, MAX_EMAIL_SIZE: r, emailSize: m, progressValue: l, progressType: n, calculateEmailSize: i, InContainer: v, InIcons: h, InProgress: g, InTooltip: M, MAX_EMAIL_WEIGHT: w };
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
export {
|
|
28
|
+
A as default
|
|
29
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { EmailData } from '@@/Types/generic';
|
|
2
|
+
interface Props {
|
|
3
|
+
isVisible: boolean;
|
|
4
|
+
emailData?: EmailData;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
9
|
+
type __VLS_TypePropsToOption<T> = {
|
|
10
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
11
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
12
|
+
} : {
|
|
13
|
+
type: import('vue').PropType<T[K]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import s from "./EmailPreview.vue2.js";
|
|
2
|
+
import i from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var r = function() {
|
|
4
|
+
var a = this, e = a._self._c, t = a._self._setupProxy;
|
|
5
|
+
return a.isVisible ? e("div", { staticClass: "d-f f-d-c h-1 b-c-5 bor-r-2" }, [e("div", { staticClass: "f-g-1 d-f p-5 o-a g-4 min-h-600" }, [e(t.DesktopPreview, { staticClass: "f-g-1 min-w-0", attrs: { "email-data": a.emailData, "email-html": t.currentHtml } }), e(t.MobilePreview, { staticClass: "f-0 min-w-a", attrs: { "email-data": a.emailData, "email-html": t.currentHtml, "is-amp": t.isAmp } })], 1)]) : a._e();
|
|
6
|
+
}, l = [], m = /* @__PURE__ */ i(
|
|
7
|
+
s,
|
|
8
|
+
r,
|
|
9
|
+
l,
|
|
10
|
+
!1,
|
|
11
|
+
null,
|
|
12
|
+
null
|
|
13
|
+
);
|
|
14
|
+
const c = m.exports;
|
|
15
|
+
export {
|
|
16
|
+
c as default
|
|
17
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { defineComponent as w, ref as c, computed as p, watch as u, onMounted as b } from "vue";
|
|
2
|
+
import { useDebounce as y } from "../../../composables/useDebounce.js";
|
|
3
|
+
import { usePreviewMode as P } from "../../../composables/usePreviewMode.js";
|
|
4
|
+
import { useToaster as _ } from "../../../composables/useToaster.js";
|
|
5
|
+
import { useEditorStore as h } from "../../../stores/editor.js";
|
|
6
|
+
import V from "./DesktopPreview.vue.js";
|
|
7
|
+
import F from "./MobilePreview.vue.js";
|
|
8
|
+
const k = /* @__PURE__ */ w({
|
|
9
|
+
__name: "EmailPreview",
|
|
10
|
+
props: {
|
|
11
|
+
isVisible: { type: Boolean },
|
|
12
|
+
emailData: null
|
|
13
|
+
},
|
|
14
|
+
setup(d) {
|
|
15
|
+
const o = d, { compile: a } = P(), { debounce: l } = y(), { showToaster: m } = _(), e = h(), r = c(""), i = c(!1), f = p(() => e.emailFormat === "amp" && e.ampHtml ? e.ampHtml : r.value), v = p(() => e.emailFormat === "amp"), t = async () => {
|
|
16
|
+
i.value = !0;
|
|
17
|
+
try {
|
|
18
|
+
const s = await a();
|
|
19
|
+
r.value = s.html;
|
|
20
|
+
} catch {
|
|
21
|
+
console.error("Failed to load preview"), m({
|
|
22
|
+
type: "error",
|
|
23
|
+
message: "Failed to load email preview. Please try again later."
|
|
24
|
+
});
|
|
25
|
+
} finally {
|
|
26
|
+
i.value = !1;
|
|
27
|
+
}
|
|
28
|
+
}, n = () => {
|
|
29
|
+
l(t, 350);
|
|
30
|
+
};
|
|
31
|
+
return u(() => o.isVisible, (s) => s && t()), u(() => e.editorVisualMode, () => {
|
|
32
|
+
o.isVisible && n();
|
|
33
|
+
}), b(() => {
|
|
34
|
+
o.isVisible && t();
|
|
35
|
+
}), { __sfc: !0, props: o, compile: a, debounce: l, showToaster: m, editorStore: e, html: r, isLoading: i, currentHtml: f, isAmp: v, loadPreview: t, debouncedReload: n, DesktopPreview: V, MobilePreview: F };
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
k as default
|
|
40
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
emailHtml: string;
|
|
3
|
+
isAmp?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {
|
|
6
|
+
"back-to-inbox": () => void;
|
|
7
|
+
load: () => void;
|
|
8
|
+
}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
+
type __VLS_TypePropsToOption<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
+
} : {
|
|
15
|
+
type: import('vue').PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import n from "./EmailView.vue2.js";
|
|
2
|
+
import c from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var e = function() {
|
|
4
|
+
var a = this, s = a._self._c, t = a._self._setupProxy;
|
|
5
|
+
return s("div", { staticClass: "w-1 h-1 b-c-4 d-f f-d-c" }, [s("div", { staticClass: "d-f j-c-s-b a-i-c p-2 h-6-s" }, [s("div", { staticClass: "d-f a-i-c cur-p", on: { click: function(r) {
|
|
6
|
+
return a.$emit("back-to-inbox");
|
|
7
|
+
} } }, [s(t.InIcons, { staticClass: "f-s-3 i-c-7", attrs: { name: "line-chevron-left" } }), s("span", { staticClass: "ml-2 f-s-1 f-w-400 l-h-1 t-c-7" }, [a._v(a._s(t.trans("newsletter.inbox")))])], 1), s("div", { staticClass: "d-f a-i-c" }, [s(t.InIcons, { staticClass: "i-c-52", attrs: { name: "line-chevron-down" } }), s(t.InIcons, { staticClass: "ml-1 i-c-52", attrs: { name: "line-chevron-up" } })], 1)]), s("iframe", { ref: "iframeRef", staticClass: "f-g-1 w-1 d-b b-c-4 bor-s-n", attrs: { sandbox: "allow-same-origin allow-popups allow-forms allow-scripts", srcdoc: a.emailHtml }, on: { load: t.onLoad } })]);
|
|
8
|
+
}, i = [], o = /* @__PURE__ */ c(
|
|
9
|
+
n,
|
|
10
|
+
e,
|
|
11
|
+
i,
|
|
12
|
+
!1,
|
|
13
|
+
null,
|
|
14
|
+
null
|
|
15
|
+
);
|
|
16
|
+
const d = o.exports;
|
|
17
|
+
export {
|
|
18
|
+
d as default
|
|
19
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { defineComponent as p, ref as c } from "vue";
|
|
2
|
+
import { useMobileGmailFit as u } from "../../../composables/useMobileGmailFit.js";
|
|
3
|
+
import { useTranslations as f } from "../../../composables/useTranslations.js";
|
|
4
|
+
import { InIcons as d } from "@useinsider/design-system-vue";
|
|
5
|
+
const E = /* @__PURE__ */ p({
|
|
6
|
+
__name: "EmailView",
|
|
7
|
+
props: {
|
|
8
|
+
emailHtml: null,
|
|
9
|
+
isAmp: { type: Boolean }
|
|
10
|
+
},
|
|
11
|
+
emits: ["back-to-inbox", "load"],
|
|
12
|
+
setup(l, { emit: t }) {
|
|
13
|
+
const o = l, a = f(), n = c(), { setupMobileGmailFit: s } = u(), m = () => !!o.isAmp && o.emailHtml.includes("@media"), r = (e) => {
|
|
14
|
+
e.documentElement.style.removeProperty("transform"), e.documentElement.style.removeProperty("transform-origin"), e.documentElement.style.removeProperty("height");
|
|
15
|
+
};
|
|
16
|
+
return { __sfc: !0, props: o, emit: t, trans: a, iframeRef: n, setupMobileGmailFit: s, isAmpResponsive: m, clearAmpTransforms: r, onLoad: () => {
|
|
17
|
+
const e = n.value, i = e == null ? void 0 : e.contentDocument;
|
|
18
|
+
!e || !i || (s(e), m() && setTimeout(() => r(i), 50), t("load"));
|
|
19
|
+
}, InIcons: d };
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
export {
|
|
23
|
+
E as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { EmailData } from '@@/Types/generic';
|
|
2
|
+
interface Props {
|
|
3
|
+
emailData?: EmailData;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {
|
|
6
|
+
"open-email": () => void;
|
|
7
|
+
}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToOption<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import a from "./InboxView.vue2.js";
|
|
2
|
+
import e from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var n = function() {
|
|
4
|
+
var s = this, t = s._self._c, c = s._self._setupProxy;
|
|
5
|
+
return t("div", { staticClass: "p-y-13 p-x-3 bor-b-w-1 bor-b-s-s bor-b-c-50 cur-p b-c-4 b-c-h-5 p-3", on: { click: function(l) {
|
|
6
|
+
return s.$emit("open-email");
|
|
7
|
+
} } }, [t("div", { staticClass: "d-f j-c-s-b a-i-c w-1" }, [t("div", { staticClass: "f-g-1 min-w-0-s" }, [t("div", { staticClass: "f-s-1 f-w-600 t-c-53 l-h-1 mb-12" }, [s._v(" " + s._s(c.senderName) + " ")]), t("div", { staticClass: "f-s-12 f-w-400 t-c-55 l-h-1" }, [s._v(" " + s._s(c.subject) + " ")])]), t("div", { staticClass: "f-sh-0 ml-2 f-s-12 f-w-400 t-c-55 l-h-1" }, [s._v(" " + s._s(c.trans("product-catalog.today")) + " ")]), t(c.InIcons, { staticClass: "i-c-52", attrs: { name: "line-chevron-right" } })], 1)]);
|
|
8
|
+
}, r = [], i = /* @__PURE__ */ e(
|
|
9
|
+
a,
|
|
10
|
+
n,
|
|
11
|
+
r,
|
|
12
|
+
!1,
|
|
13
|
+
null,
|
|
14
|
+
null
|
|
15
|
+
);
|
|
16
|
+
const m = i.exports;
|
|
17
|
+
export {
|
|
18
|
+
m as default
|
|
19
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineComponent as r, computed as n } from "vue";
|
|
2
|
+
import { useTranslations as i } from "../../../composables/useTranslations.js";
|
|
3
|
+
import { InIcons as c } from "@useinsider/design-system-vue";
|
|
4
|
+
const f = /* @__PURE__ */ r({
|
|
5
|
+
__name: "InboxView",
|
|
6
|
+
props: {
|
|
7
|
+
emailData: null
|
|
8
|
+
},
|
|
9
|
+
emits: ["open-email"],
|
|
10
|
+
setup(o) {
|
|
11
|
+
const t = o, s = i(), a = n(() => {
|
|
12
|
+
var e;
|
|
13
|
+
return ((e = t.emailData) == null ? void 0 : e.senderName) || `(${s("settings.sender-name")})`;
|
|
14
|
+
}), m = n(() => {
|
|
15
|
+
var e;
|
|
16
|
+
return ((e = t.emailData) == null ? void 0 : e.subject) || s("newsletter.subject");
|
|
17
|
+
});
|
|
18
|
+
return { __sfc: !0, props: t, trans: s, senderName: a, subject: m, InIcons: c };
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
export {
|
|
22
|
+
f as default
|
|
23
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { EmailData } from '@@/Types/generic';
|
|
2
|
+
interface Props {
|
|
3
|
+
emailHtml: string;
|
|
4
|
+
isAmp: boolean;
|
|
5
|
+
emailData?: EmailData;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<Props>, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<Props>>>, {}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToOption<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import e from "./MobilePreview.vue2.js";
|
|
2
|
+
import o from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var i = function() {
|
|
4
|
+
var t = this, s = t._self._c, a = t._self._setupProxy;
|
|
5
|
+
return s("div", { staticClass: "d-f j-c-c p-4" }, [s("div", { staticClass: "p-r w-35-s h-26-s" }, [s("img", { staticClass: "w-1 h-1 d-b p-e-n", attrs: { alt: a.mockupAlt, src: a.mockupImage } }), s("div", { staticClass: "p-a l-3 w-21-s h-24-s o-h", style: { top: a.phoneScreenTopMargin } }, [a.showInbox ? s(a.InboxView, { attrs: { "email-data": a.props.emailData }, on: { "open-email": a.openEmail } }) : s(a.EmailView, { attrs: { "email-html": t.emailHtml, "is-amp": t.isAmp }, on: { "back-to-inbox": a.backToInbox } })], 1)])]);
|
|
6
|
+
}, n = [], r = /* @__PURE__ */ o(
|
|
7
|
+
e,
|
|
8
|
+
i,
|
|
9
|
+
n,
|
|
10
|
+
!1,
|
|
11
|
+
null,
|
|
12
|
+
null
|
|
13
|
+
);
|
|
14
|
+
const c = r.exports;
|
|
15
|
+
export {
|
|
16
|
+
c as default
|
|
17
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineComponent as s, ref as c, computed as e } from "vue";
|
|
2
|
+
import { INBOX_PREVIEW_PATH as u, PHONE_PREVIEW_PATH as i } from "../../../enums/emailPreview.js";
|
|
3
|
+
import f from "./EmailView.vue.js";
|
|
4
|
+
import _ from "./InboxView.vue.js";
|
|
5
|
+
const b = /* @__PURE__ */ s({
|
|
6
|
+
__name: "MobilePreview",
|
|
7
|
+
props: {
|
|
8
|
+
emailHtml: null,
|
|
9
|
+
isAmp: { type: Boolean },
|
|
10
|
+
emailData: null
|
|
11
|
+
},
|
|
12
|
+
setup(n) {
|
|
13
|
+
const t = n, o = c(!1), m = e(() => o.value ? u : i), p = e(() => o.value ? "Inbox mockup" : "Phone mockup"), a = () => {
|
|
14
|
+
o.value = !1;
|
|
15
|
+
}, l = () => {
|
|
16
|
+
o.value = !0;
|
|
17
|
+
}, r = e(() => o.value ? "88px" : "44px");
|
|
18
|
+
return { __sfc: !0, props: t, showInbox: o, mockupImage: m, mockupAlt: p, openEmail: a, backToInbox: l, phoneScreenTopMargin: r, EmailView: f, InboxView: _ };
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
export {
|
|
22
|
+
b as default
|
|
23
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import t from "./AmpToggle.vue2.js";
|
|
2
|
+
import s from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var a = function() {
|
|
4
|
+
var e = this, o = e._self._c, r = e._self._setupProxy;
|
|
5
|
+
return r.editorStore.isPreviewModeOpen ? o("div", [o("div", { staticClass: "d-f a-i-c ml-3" }, [o(r.InSegments, { attrs: { id: "guido__amp-toggle", "segment-list": r.segmentList, selected: r.editorStore.emailFormat }, on: { click: r.handleFormatChange } }), r.showErrorButton ? o(r.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", attrs: { id: "guido__amp-error-button", "left-icon": "line-error-box", type: "danger", "label-text-status": !1 }, on: { click: r.handleErrorClick } }) : e._e()], 1), r.showErrorModal ? o(r.AmpErrorModal, { attrs: { errors: r.editorStore.ampErrors || [] }, on: { close: r.closeErrorModal } }) : e._e()], 1) : e._e();
|
|
6
|
+
}, n = [], l = /* @__PURE__ */ s(
|
|
7
|
+
t,
|
|
8
|
+
a,
|
|
9
|
+
n,
|
|
10
|
+
!1,
|
|
11
|
+
null,
|
|
12
|
+
null
|
|
13
|
+
);
|
|
14
|
+
const d = l.exports;
|
|
15
|
+
export {
|
|
16
|
+
d as default
|
|
17
|
+
};
|