@useinsider/guido 3.18.1-beta.5cddb72 → 3.18.1-beta.636c82d
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/components/Guido.vue.js +1 -1
- package/dist/components/Guido.vue2.js +46 -52
- package/dist/components/organisms/extensions/recommendation/AssignStrategyDrawer.vue.js +13 -11
- package/dist/components/organisms/extensions/recommendation/AssignStrategyDrawer.vue2.js +72 -56
- package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +20 -18
- package/dist/components/organisms/onboarding/RecommendationStrategyOnboarding.vue.js +21 -0
- package/dist/components/organisms/onboarding/RecommendationStrategyOnboarding.vue2.js +46 -0
- package/dist/composables/useActionsApi.js +20 -24
- package/dist/composables/useCortexBlueprintBridge.js +54 -113
- package/dist/composables/useEmailTemplateApplier.js +50 -93
- package/dist/composables/useTranslations.js +8 -15
- package/dist/enums/extensions/recommendationBlock.js +38 -31
- package/dist/extensions/Blocks/Recommendation/controls/main/strategy.js +35 -31
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +129 -68
- package/dist/guido.css +1 -1
- package/dist/src/components/organisms/onboarding/RecommendationStrategyOnboarding.vue.d.ts +2 -0
- package/dist/src/composables/useCortexBlueprintBridge.d.ts +3 -4
- package/dist/src/composables/useEmailTemplateApplier.d.ts +2 -22
- package/dist/src/composables/useTranslations.d.ts +0 -5
- package/dist/src/enums/extensions/recommendationBlock.d.ts +2 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/strategy.d.ts +1 -0
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +49 -0
- package/dist/src/stores/guido-email-editor.d.ts +7 -29
- package/dist/src/stores/onboarding.d.ts +377 -0
- package/dist/static/styles/components/recommendation-strategy.css.js +21 -4
- package/dist/stores/guido-email-editor.js +1 -5
- package/dist/stores/onboarding.js +41 -36
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as ne, defineAsyncComponent as
|
|
1
|
+
import { defineComponent as ne, defineAsyncComponent as l, ref as O, computed as u, watch as x, onMounted as re, onUnmounted as se } from "vue";
|
|
2
2
|
import { useCortexBlueprintBridge as ae } from "../composables/useCortexBlueprintBridge.js";
|
|
3
3
|
import { useEditorLock as ie } from "../composables/useEditorLock.js";
|
|
4
4
|
import { provideGuidoActions as ce } from "../composables/useGuidoActions.js";
|
|
@@ -9,22 +9,22 @@ import { useTimerClone as ue } from "../composables/useTimerClone.js";
|
|
|
9
9
|
import { migrate as W } from "../config/migrator/index.js";
|
|
10
10
|
import { ModuleFolderDefaults as G } from "../enums/defaults.js";
|
|
11
11
|
import { RIBBON_SELECTOR as pe } from "../enums/onboarding.js";
|
|
12
|
-
import { useRecommendationExtensionStore as
|
|
12
|
+
import { useRecommendationExtensionStore as h } from "../extensions/Blocks/Recommendation/store/recommendation.js";
|
|
13
13
|
import fe from "./organisms/AutoSaveController.vue.js";
|
|
14
14
|
import ye from "./organisms/base/Toaster.vue.js";
|
|
15
15
|
import ge from "./organisms/extensions/recommendation/FilterSelectionDrawer.vue.js";
|
|
16
16
|
import ve from "./organisms/header/HeaderWrapper.vue.js";
|
|
17
17
|
import Se from "./organisms/LoadingWrapper.vue.js";
|
|
18
|
-
import
|
|
19
|
-
import
|
|
18
|
+
import be from "./organisms/save-as-template/SaveAsTemplateDrawer.vue.js";
|
|
19
|
+
import he from "./organisms/unsubscribe/UnsubscribeWrapper.vue.js";
|
|
20
20
|
import { useStripoApi as Ee } from "../services/stripoApi.js";
|
|
21
21
|
import { useConfigStore as we } from "../stores/config.js";
|
|
22
22
|
import { useDynamicContentStore as Ce } from "../stores/dynamic-content.js";
|
|
23
|
-
import { useEditorStore as
|
|
23
|
+
import { useEditorStore as H } from "../stores/editor.js";
|
|
24
24
|
import { usePreviewStore as De } from "../stores/preview.js";
|
|
25
25
|
import { useTemplateStore as ke } from "../stores/template.js";
|
|
26
|
-
import { useUnsubscribeStore as
|
|
27
|
-
import { readTrackFloor as
|
|
26
|
+
import { useUnsubscribeStore as Te } from "../stores/unsubscribe.js";
|
|
27
|
+
import { readTrackFloor as $ } from "../utils/linkTrackingIds.js";
|
|
28
28
|
const et = /* @__PURE__ */ ne({
|
|
29
29
|
__name: "Guido",
|
|
30
30
|
props: {
|
|
@@ -33,24 +33,24 @@ const et = /* @__PURE__ */ ne({
|
|
|
33
33
|
},
|
|
34
34
|
emits: ["dynamic-content:open", "back", "save:start", "save:complete", "on-change", "ready", "onboarding:finished", "test-email:click"],
|
|
35
35
|
setup(z, { expose: q, emit: r }) {
|
|
36
|
-
const a = z, K =
|
|
36
|
+
const a = z, K = l(
|
|
37
37
|
() => import("./organisms/email-preview/PreviewContainer.vue.js")
|
|
38
|
-
), V =
|
|
38
|
+
), V = l(
|
|
39
39
|
() => import("./organisms/onboarding/OnboardingWrapper.vue.js")
|
|
40
|
-
), j =
|
|
40
|
+
), j = l(
|
|
41
41
|
() => import("./organisms/extensions/recommendation/AssignStrategyDrawer.vue.js")
|
|
42
|
-
), J =
|
|
42
|
+
), J = l(
|
|
43
43
|
() => import("./organisms/extensions/recommendation/RemoveStrategyModal.vue.js")
|
|
44
|
-
),
|
|
44
|
+
), E = O(), p = O(), f = Ce(), w = Te(), o = we();
|
|
45
45
|
a.ready && o.init(a.config);
|
|
46
|
-
const c =
|
|
46
|
+
const c = H(), Q = De(), m = u(() => c.hasChanges), { isTestPartner: X } = me(), C = () => {
|
|
47
47
|
var t;
|
|
48
|
-
return (t =
|
|
49
|
-
},
|
|
48
|
+
return (t = E.value) == null ? void 0 : t.handleSave(!0);
|
|
49
|
+
}, D = (t) => {
|
|
50
50
|
c.loadingStatus = t;
|
|
51
51
|
};
|
|
52
52
|
ae(), de();
|
|
53
|
-
const
|
|
53
|
+
const y = () => {
|
|
54
54
|
var t, e;
|
|
55
55
|
return {
|
|
56
56
|
emailId: o.templateId,
|
|
@@ -60,13 +60,13 @@ const et = /* @__PURE__ */ ne({
|
|
|
60
60
|
savedModulesFolderName: ((t = o.editor) == null ? void 0 : t.savedModulesFolderName) || G.SAVED_MODULES,
|
|
61
61
|
defaultModulesFolderName: ((e = o.editor) == null ? void 0 : e.defaultModulesFolderName) || G.DEFAULT_MODULES
|
|
62
62
|
};
|
|
63
|
-
}, { initPlugin:
|
|
64
|
-
let
|
|
65
|
-
const { getDefaultTemplate:
|
|
63
|
+
}, { initPlugin: k, preloadRuntime: T } = le(), { runExclusive: F, beginMount: R, isCurrentMount: I } = ie();
|
|
64
|
+
let g = 0;
|
|
65
|
+
const { getDefaultTemplate: M } = Ee(), { cloneTimersOnSave: L, hasTimerBlocks: B } = ue(), Y = u(() => {
|
|
66
66
|
var t;
|
|
67
67
|
return !((t = o.ui) != null && t.showHeader);
|
|
68
|
-
}), Z =
|
|
69
|
-
() =>
|
|
68
|
+
}), Z = u(() => o.isFeatureEnabled("reusableRecommendationStrategy")), ee = u(
|
|
69
|
+
() => !!h().recommendationConfigs.strategyId
|
|
70
70
|
);
|
|
71
71
|
ce({
|
|
72
72
|
onBack: () => {
|
|
@@ -76,7 +76,7 @@ const et = /* @__PURE__ */ ne({
|
|
|
76
76
|
console.debug("guido:save:start"), r("save:start");
|
|
77
77
|
},
|
|
78
78
|
onSaveComplete: (t) => {
|
|
79
|
-
const e = { ...t, metadata:
|
|
79
|
+
const e = { ...t, metadata: y() };
|
|
80
80
|
console.debug("guido:save:complete", e), r("save:complete", e);
|
|
81
81
|
},
|
|
82
82
|
onTestEmailClick: () => {
|
|
@@ -84,68 +84,62 @@ const et = /* @__PURE__ */ ne({
|
|
|
84
84
|
}
|
|
85
85
|
});
|
|
86
86
|
const A = (t) => {
|
|
87
|
-
console.debug("dynamic-content:close", t),
|
|
88
|
-
},
|
|
87
|
+
console.debug("dynamic-content:close", t), f.setSelectedDynamicContent(t), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: t }));
|
|
88
|
+
}, P = () => {
|
|
89
89
|
console.debug("dynamic-content:close", "Without Data"), document.dispatchEvent(new CustomEvent("dynamic-content:close", { detail: { text: "", value: "" } }));
|
|
90
90
|
};
|
|
91
91
|
x(() => m.value, () => {
|
|
92
92
|
r("on-change", m.value);
|
|
93
93
|
});
|
|
94
|
-
const
|
|
94
|
+
const v = (t) => {
|
|
95
95
|
const e = t, { attribute: s, position: d } = e.detail;
|
|
96
96
|
console.debug("dynamic-content:open", e.detail), r("dynamic-content:open", s, d);
|
|
97
97
|
};
|
|
98
98
|
let i = null;
|
|
99
|
-
const
|
|
99
|
+
const S = () => {
|
|
100
100
|
var e;
|
|
101
101
|
const t = document.querySelector(pe);
|
|
102
|
-
(e =
|
|
102
|
+
(e = p.value) == null || e.style.setProperty("--ribbon-offset", `${(t == null ? void 0 : t.offsetHeight) ?? 0}px`);
|
|
103
103
|
}, b = async () => {
|
|
104
104
|
var t;
|
|
105
105
|
try {
|
|
106
106
|
o.initialized || o.init(a.config), c.templateId = o.templateId;
|
|
107
|
-
const e = o.template, s = (e == null ? void 0 : e.html) || "", d = (e == null ? void 0 : e.css) || "",
|
|
108
|
-
|
|
109
|
-
const
|
|
107
|
+
const e = o.template, s = (e == null ? void 0 : e.html) || "", d = (e == null ? void 0 : e.css) || "", U = (e == null ? void 0 : e.preselectedDynamicContent) || [];
|
|
108
|
+
w.selectedUnsubscribePages = (e == null ? void 0 : e.selectedUnsubscribePages) || [];
|
|
109
|
+
const _ = ((t = e == null ? void 0 : e.migration) == null ? void 0 : t.recommendationConfigs) ?? {}, N = o.isFeatureEnabled("linkTrackingIds");
|
|
110
110
|
let n = {
|
|
111
|
-
html: s && await W(s,
|
|
111
|
+
html: s && await W(s, _),
|
|
112
112
|
css: d
|
|
113
113
|
};
|
|
114
|
-
n.html || (n = await
|
|
115
|
-
const te =
|
|
116
|
-
B(n.html) && (n.html = await L(n.html)),
|
|
114
|
+
n.html || (n = await M(), n.html = await W(n.html, _));
|
|
115
|
+
const te = N ? $(n.html, (e == null ? void 0 : e.trackIdCounter) || 0) : 0;
|
|
116
|
+
B(n.html) && (n.html = await L(n.html)), N && (c.trackIdSessionFloor = Math.max(te, $(n.html)));
|
|
117
117
|
const oe = {
|
|
118
|
-
preselectedDynamicContentList:
|
|
118
|
+
preselectedDynamicContentList: U,
|
|
119
119
|
onReady: () => {
|
|
120
120
|
console.debug("guido:ready"), r("ready");
|
|
121
121
|
}
|
|
122
122
|
};
|
|
123
|
-
|
|
123
|
+
g = R(), await k(n, y(), oe), f.selectedDynamicContentList = U;
|
|
124
124
|
} catch (e) {
|
|
125
125
|
console.error("Failed to initialize Stripo editor:", e);
|
|
126
126
|
}
|
|
127
127
|
};
|
|
128
128
|
return re(async () => {
|
|
129
129
|
var e;
|
|
130
|
-
console.debug("Guido says happy coding 🎉"), console.debug("🚗 Ka-Chow"),
|
|
131
|
-
const t = (e =
|
|
132
|
-
if (t && (i = new ResizeObserver(
|
|
130
|
+
console.debug("Guido says happy coding 🎉"), console.debug("🚗 Ka-Chow"), h().$reset(), H().$reset(), ke().$reset(), S();
|
|
131
|
+
const t = (e = p.value) == null ? void 0 : e.parentElement;
|
|
132
|
+
if (t && (i = new ResizeObserver(S), i.observe(t)), T(), a.ready)
|
|
133
133
|
await b();
|
|
134
134
|
else {
|
|
135
135
|
const s = x(() => a.ready, (d) => {
|
|
136
136
|
d && (s(), b());
|
|
137
137
|
});
|
|
138
138
|
}
|
|
139
|
-
document.addEventListener("dynamic-content:open",
|
|
139
|
+
document.addEventListener("dynamic-content:open", v);
|
|
140
140
|
}), se(() => {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
E().$reset();
|
|
144
|
-
} catch (t) {
|
|
145
|
-
console.debug("Failed to reset the editor store on unmount", t);
|
|
146
|
-
}
|
|
147
|
-
I(async () => {
|
|
148
|
-
if (v(l))
|
|
141
|
+
i == null || i.disconnect(), document.removeEventListener("dynamic-content:open", v), h().disposeStrategyPageReturn(), F(async () => {
|
|
142
|
+
if (I(g))
|
|
149
143
|
try {
|
|
150
144
|
window.UIEditor.removeEditor();
|
|
151
145
|
} catch {
|
|
@@ -155,12 +149,12 @@ const et = /* @__PURE__ */ ne({
|
|
|
155
149
|
}), q({
|
|
156
150
|
dynamicContent: {
|
|
157
151
|
insert: A,
|
|
158
|
-
close:
|
|
152
|
+
close: P
|
|
159
153
|
},
|
|
160
154
|
hasChanges: m,
|
|
161
|
-
saveSilent:
|
|
162
|
-
setLoading:
|
|
163
|
-
}), { __sfc: !0, PreviewContainer: K, OnboardingWrapper: V, AssignStrategyDrawer: j, RemoveStrategyModal: J, headerWrapperRef:
|
|
155
|
+
saveSilent: C,
|
|
156
|
+
setLoading: D
|
|
157
|
+
}), { __sfc: !0, PreviewContainer: K, OnboardingWrapper: V, AssignStrategyDrawer: j, RemoveStrategyModal: J, headerWrapperRef: E, wrapperRef: p, dynamicContentStore: f, unsubscribeStore: w, props: a, configStore: o, editorStore: c, previewStore: Q, hasChanges: m, isTestPartner: X, saveSilent: C, setLoading: D, emit: r, buildMetadata: y, initPlugin: k, preloadRuntime: T, runExclusive: F, beginMount: R, isCurrentMount: I, mountGeneration: g, getDefaultTemplate: M, cloneTimersOnSave: L, hasTimerBlocks: B, noHeader: Y, isRrsEnabled: Z, hasAssignedStrategy: ee, insertDynamicContent: A, closeDynamicContent: P, handleDynamicContentOpen: v, ribbonObserver: i, updateRibbonOffset: S, startEditor: b, AutoSaveController: fe, Toaster: ye, FilterSelectionDrawer: ge, HeaderWrapper: ve, LoadingWrapper: Se, SaveAsTemplateDrawer: be, UnsubscribeWrapper: he };
|
|
164
158
|
}
|
|
165
159
|
});
|
|
166
160
|
export {
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
import
|
|
1
|
+
import s from "./AssignStrategyDrawer.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
/* empty css */
|
|
4
|
-
import
|
|
5
|
-
var
|
|
6
|
-
var e = this,
|
|
7
|
-
return t.store.assignStrategyDrawerStatus ?
|
|
8
|
-
return [
|
|
9
|
-
|
|
10
|
-
},
|
|
11
|
-
|
|
12
|
-
|
|
4
|
+
import o from "../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
5
|
+
var a = function() {
|
|
6
|
+
var e = this, r = e._self._c, t = e._self._setupProxy;
|
|
7
|
+
return t.store.assignStrategyDrawerStatus ? r(t.OrgStrategyDetailModal, { staticClass: "assign-strategy-drawer", attrs: { "description-status": "", show: "", "description-text": t.drawerDescription, "footer-button-group-options": t.footerButtonGroupOptions, strategy: t.selectedStrategy ?? {}, "title-text": t.trans("gpt-app-builder.assign-recommendation-strategy") }, on: { close: t.closeDrawer, primaryClick: t.assignStrategy }, scopedSlots: e._u([{ key: "contentTop", fn: function() {
|
|
8
|
+
return [r("div", { staticClass: "assign-strategy-drawer-content px-5 py-5" }, [r(t.OrgStrategyDropdown, { staticClass: "assign-strategy-select", attrs: { id: "assign-strategy-select", "create-button-visible": "", "info-box-position": "bottom right", loading: t.store.strategiesLoading, "placeholder-text": t.trans("smart-recommender.select-recommendation-strategy"), "selected-strategy-id": t.selectedStrategyId, state: t.showSelectionError ? "error" : "default", "state-message": t.showSelectionError ? t.trans("ds-steps.select-strategy-tooltip") : "", strategies: t.strategyOptions }, on: { create: function(l) {
|
|
9
|
+
return t.store.openStrategyCreation();
|
|
10
|
+
}, infoBoxButtonClick: t.onInfoBoxButtonClick, select: t.onSelect } })], 1)];
|
|
11
|
+
}, proxy: !0 }], null, !1, 1517791821) }) : e._e();
|
|
12
|
+
}, n = [], i = /* @__PURE__ */ o(
|
|
13
|
+
s,
|
|
14
|
+
a,
|
|
13
15
|
n,
|
|
14
16
|
!1,
|
|
15
17
|
null,
|
|
16
|
-
"
|
|
18
|
+
"a90e37f5"
|
|
17
19
|
);
|
|
18
20
|
const y = i.exports;
|
|
19
21
|
export {
|
|
@@ -1,48 +1,50 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as I, defineAsyncComponent as f, ref as S, computed as c, watch as T } from "vue";
|
|
2
2
|
import "@useinsider/design-system-organisms/style";
|
|
3
|
-
import { useToaster as
|
|
4
|
-
import { useTranslations as
|
|
5
|
-
import { DOTTED_DATE_LOCALE as
|
|
6
|
-
import { URLS as
|
|
7
|
-
import { ToasterTypeOptions as
|
|
8
|
-
import { useRecommendationExtensionStore as
|
|
9
|
-
import
|
|
10
|
-
import { formatShortDate as
|
|
11
|
-
import { asText as
|
|
12
|
-
import { escapeHtml as
|
|
13
|
-
import { InSkeleton as
|
|
14
|
-
const
|
|
3
|
+
import { useToaster as O } from "../../../../composables/useToaster.js";
|
|
4
|
+
import { useTranslations as h } from "../../../../composables/useTranslations.js";
|
|
5
|
+
import { DOTTED_DATE_LOCALE as A } from "../../../../enums/date.js";
|
|
6
|
+
import { URLS as B } from "../../../../enums/extensions/recommendationBlock.js";
|
|
7
|
+
import { ToasterTypeOptions as y } from "../../../../enums/toaster.js";
|
|
8
|
+
import { useRecommendationExtensionStore as b } from "../../../../extensions/Blocks/Recommendation/store/recommendation.js";
|
|
9
|
+
import N from "./StrategyInfoBoxContent.vue.js";
|
|
10
|
+
import { formatShortDate as k } from "../../../../utils/dateUtil.js";
|
|
11
|
+
import { asText as _ } from "../../../../utils/genericUtil.js";
|
|
12
|
+
import { escapeHtml as L } from "../../../../utils/htmlEscape.js";
|
|
13
|
+
import { InSkeleton as P } from "@useinsider/design-system-vue";
|
|
14
|
+
const Z = /* @__PURE__ */ I({
|
|
15
15
|
__name: "AssignStrategyDrawer",
|
|
16
|
-
setup(
|
|
17
|
-
const
|
|
18
|
-
render: (
|
|
19
|
-
}),
|
|
20
|
-
loader: async () => (await
|
|
21
|
-
loadingComponent:
|
|
16
|
+
setup(R) {
|
|
17
|
+
const g = () => import("@useinsider/design-system-organisms"), d = (t, r) => ({
|
|
18
|
+
render: (s) => s(P, { props: { sizing: { width: t, height: r } } })
|
|
19
|
+
}), D = f({
|
|
20
|
+
loader: async () => (await g()).OrgStrategyDetailModal,
|
|
21
|
+
loadingComponent: d(480, 240),
|
|
22
22
|
delay: 0
|
|
23
|
-
}),
|
|
24
|
-
loader: async () => (await
|
|
25
|
-
loadingComponent:
|
|
23
|
+
}), w = f({
|
|
24
|
+
loader: async () => (await g()).OrgStrategyDropdown,
|
|
25
|
+
loadingComponent: d(240, 42),
|
|
26
26
|
delay: 0
|
|
27
|
-
}),
|
|
28
|
-
|
|
27
|
+
}), i = "guido-edit-strategy-", a = h(), e = b(), { showToaster: l } = O(), o = S(null), n = S(!1), v = c(() => e.assignStrategyDrawerStatus ? a("email-editor.assign-strategy-description", { url: B.RECOMMENDATION_STRATEGIES_PANEL_PATH }) : ""), m = () => {
|
|
28
|
+
!e.assignStrategyDrawerStatus || !e.lastCreatedStrategyId || (o.value = e.lastCreatedStrategyId, n.value = !1, e.lastCreatedStrategyId = null);
|
|
29
|
+
};
|
|
30
|
+
T(() => e.assignStrategyDrawerStatus, (t) => {
|
|
29
31
|
if (!t)
|
|
30
32
|
return;
|
|
31
33
|
const { strategyId: r } = e.recommendationConfigs;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
type:
|
|
35
|
-
message:
|
|
34
|
+
o.value = r || null, n.value = !1, e.fetchStrategies().then(m).catch(() => {
|
|
35
|
+
l({
|
|
36
|
+
type: y.Error,
|
|
37
|
+
message: a("discovery-strategy.error-description")
|
|
36
38
|
});
|
|
37
39
|
});
|
|
38
|
-
});
|
|
39
|
-
const
|
|
40
|
-
const r =
|
|
40
|
+
}), T(() => e.lastCreatedStrategyId, m);
|
|
41
|
+
const u = (t) => {
|
|
42
|
+
const r = _(t.updated_at || t.created_at);
|
|
41
43
|
if (!r)
|
|
42
44
|
return "";
|
|
43
|
-
const
|
|
44
|
-
return
|
|
45
|
-
},
|
|
45
|
+
const s = k(r, A);
|
|
46
|
+
return a("recommendation-strategy.last-updated-on", { value: s });
|
|
47
|
+
}, x = c(() => e.strategies.map((t) => ({
|
|
46
48
|
text: t.name,
|
|
47
49
|
value: t.strategy_id,
|
|
48
50
|
infoBoxProps: {
|
|
@@ -50,57 +52,71 @@ const W = /* @__PURE__ */ v({
|
|
|
50
52
|
theme: "light",
|
|
51
53
|
variant: "information",
|
|
52
54
|
className: "assign-strategy-info-box",
|
|
53
|
-
titleText:
|
|
55
|
+
titleText: L(_(t.name)),
|
|
54
56
|
descriptionStatus: !0,
|
|
55
|
-
descriptionText:
|
|
56
|
-
slot:
|
|
57
|
-
slotProps: { strategy: t }
|
|
57
|
+
descriptionText: u(t),
|
|
58
|
+
slot: N,
|
|
59
|
+
slotProps: { strategy: t },
|
|
60
|
+
// The info box drops the option's value/text, so the id is the only channel
|
|
61
|
+
// that can carry the strategy back to the click handler.
|
|
62
|
+
buttonOptions: [{
|
|
63
|
+
id: `${i}${t.strategy_id}`,
|
|
64
|
+
text: a("eureka.edit-strategy"),
|
|
65
|
+
type: "text",
|
|
66
|
+
// Resolved from Guido's own public/sprite.svg by InIcons; an unknown name would
|
|
67
|
+
// silently render blank space instead of failing.
|
|
68
|
+
icon: "line-open-website"
|
|
69
|
+
}]
|
|
58
70
|
}
|
|
59
|
-
}))),
|
|
60
|
-
|
|
71
|
+
}))), C = (t) => {
|
|
72
|
+
var s;
|
|
73
|
+
const r = (s = t == null ? void 0 : t.id) != null && s.startsWith(i) ? t.id.slice(i.length) : "";
|
|
74
|
+
r && e.openStrategyEdit(r);
|
|
75
|
+
}, p = c(() => {
|
|
76
|
+
const t = e.strategies.find((r) => String(r.strategy_id) === String(o.value ?? ""));
|
|
61
77
|
return t ? { ...t, fallback_config: null } : null;
|
|
62
|
-
}),
|
|
78
|
+
}), E = c(() => ({
|
|
63
79
|
primaryButton: {
|
|
64
80
|
styling: "solid",
|
|
65
81
|
type: "primary",
|
|
66
|
-
labelText:
|
|
82
|
+
labelText: a("products.assign-btn")
|
|
67
83
|
},
|
|
68
84
|
cancelOrBackButton: {
|
|
69
85
|
styling: "ghost",
|
|
70
86
|
type: "secondary",
|
|
71
|
-
labelText:
|
|
87
|
+
labelText: a("products.cancel")
|
|
72
88
|
}
|
|
73
89
|
}));
|
|
74
|
-
return { __sfc: !0, loadOrganisms:
|
|
90
|
+
return { __sfc: !0, loadOrganisms: g, skeleton: d, OrgStrategyDetailModal: D, OrgStrategyDropdown: w, EDIT_BUTTON_ID_PREFIX: i, trans: a, store: e, showToaster: l, selectedStrategyId: o, showSelectionError: n, drawerDescription: v, consumeLastCreatedStrategy: m, lastUpdatedText: u, strategyOptions: x, onInfoBoxButtonClick: C, selectedStrategy: p, footerButtonGroupOptions: E, closeDrawer: () => {
|
|
75
91
|
e.closeAssignStrategyDrawer();
|
|
76
92
|
}, assignStrategy: async () => {
|
|
77
|
-
const t =
|
|
93
|
+
const t = p.value;
|
|
78
94
|
if (!t) {
|
|
79
|
-
|
|
95
|
+
n.value = !0;
|
|
80
96
|
return;
|
|
81
97
|
}
|
|
82
98
|
let r = "";
|
|
83
99
|
try {
|
|
84
100
|
r = await e.resolveStrategyUrlTemplate(t, e.recommendationConfigs.currencySettings.value);
|
|
85
|
-
} catch (
|
|
86
|
-
console.error("[AssignStrategyDrawer] resolveStrategyUrlTemplate failed",
|
|
101
|
+
} catch (s) {
|
|
102
|
+
console.error("[AssignStrategyDrawer] resolveStrategyUrlTemplate failed", s);
|
|
87
103
|
}
|
|
88
104
|
if (!r) {
|
|
89
|
-
|
|
90
|
-
type:
|
|
91
|
-
message:
|
|
105
|
+
l({
|
|
106
|
+
type: y.Error,
|
|
107
|
+
message: a("email-editor.strategy-assign-failed", { strategyName: t.name })
|
|
92
108
|
});
|
|
93
109
|
return;
|
|
94
110
|
}
|
|
95
|
-
e.assignStrategy(t),
|
|
96
|
-
type:
|
|
97
|
-
message:
|
|
111
|
+
e.assignStrategy(t), l({
|
|
112
|
+
type: y.Success,
|
|
113
|
+
message: a("email-editor.strategy-assigned-success", { strategyName: t.name })
|
|
98
114
|
}), e.closeAssignStrategyDrawer();
|
|
99
115
|
}, onSelect: (t) => {
|
|
100
|
-
|
|
116
|
+
o.value = t.value, n.value = !1;
|
|
101
117
|
} };
|
|
102
118
|
}
|
|
103
119
|
});
|
|
104
120
|
export {
|
|
105
|
-
|
|
121
|
+
Z as default
|
|
106
122
|
};
|
|
@@ -1,26 +1,28 @@
|
|
|
1
1
|
import { defineComponent as b, computed as e, onMounted as O, watch as t } from "vue";
|
|
2
2
|
import u from "./AMPOnboarding.vue.js";
|
|
3
3
|
import v from "./GenericOnboarding.vue.js";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import S from "./
|
|
7
|
-
import h from "./
|
|
8
|
-
import
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
|
|
4
|
+
import y from "./ItemsOnboarding.vue.js";
|
|
5
|
+
import l from "./NewVersionPopup.vue.js";
|
|
6
|
+
import S from "./RecommendationStrategyOnboarding.vue.js";
|
|
7
|
+
import h from "./TextBlockOnboarding.vue.js";
|
|
8
|
+
import w from "./VersionHistoryOnboarding.vue.js";
|
|
9
|
+
import { usePartner as P } from "../../../composables/usePartner.js";
|
|
10
|
+
import { useEditorStore as _ } from "../../../stores/editor.js";
|
|
11
|
+
import { useOnboardingStore as A } from "../../../stores/onboarding.js";
|
|
12
|
+
import { usePreviewStore as H } from "../../../stores/preview.js";
|
|
13
|
+
const N = /* @__PURE__ */ b({
|
|
13
14
|
__name: "OnboardingWrapper",
|
|
14
15
|
emits: ["onboarding-finished"],
|
|
15
|
-
setup(
|
|
16
|
-
const o =
|
|
17
|
-
{ type: "newVersionPopup", component:
|
|
16
|
+
setup(M, { emit: g }) {
|
|
17
|
+
const o = A(), r = _(), s = H(), { isTestPartner: a } = P(), m = e(() => r.isStripoInitialized), p = e(() => a()), d = [
|
|
18
|
+
{ type: "newVersionPopup", component: l },
|
|
18
19
|
{ type: "genericOnboarding", component: v },
|
|
19
|
-
{ type: "textBlockOnboarding", component:
|
|
20
|
-
{ type: "versionHistoryOnboarding", component:
|
|
20
|
+
{ type: "textBlockOnboarding", component: h },
|
|
21
|
+
{ type: "versionHistoryOnboarding", component: w },
|
|
21
22
|
{ type: "ampOnboarding", component: u },
|
|
22
|
-
{ type: "itemsOnboarding", component:
|
|
23
|
-
|
|
23
|
+
{ type: "itemsOnboarding", component: y },
|
|
24
|
+
{ type: "recommendationStrategyOnboarding", component: S }
|
|
25
|
+
], c = (n) => p.value || !m.value ? !1 : n === "newVersionPopup" ? o.shouldShowOnboarding(n) : o.isActive(n), f = e(() => d.filter((n) => c(n.type)));
|
|
24
26
|
return O(async () => {
|
|
25
27
|
await o.fetchUserModalState();
|
|
26
28
|
}), t(
|
|
@@ -38,9 +40,9 @@ const G = /* @__PURE__ */ b({
|
|
|
38
40
|
(n) => {
|
|
39
41
|
!n && o.isActive("ampOnboarding") && o.close("ampOnboarding");
|
|
40
42
|
}
|
|
41
|
-
), { __sfc: !0, emit:
|
|
43
|
+
), { __sfc: !0, emit: g, onboardingStore: o, editorStore: r, previewStore: s, isTestPartner: a, isStripoReady: m, isTestPartnerActive: p, onboardingConfigs: d, shouldShow: c, visibleOnboardings: f };
|
|
42
44
|
}
|
|
43
45
|
});
|
|
44
46
|
export {
|
|
45
|
-
|
|
47
|
+
N as default
|
|
46
48
|
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import d from "./RecommendationStrategyOnboarding.vue2.js";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import g from "../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var m = function() {
|
|
5
|
+
var e, n, r, a, i;
|
|
6
|
+
var t = this, s = t._self._c, o = t._self._setupProxy;
|
|
7
|
+
return o.isVisible ? s(o.InOnboard, { key: "guido__recommendation-strategy-onboard", staticClass: "w-21-s p-a z-11", class: (e = o.onboardingStore.getRecommendationStrategyCurrentCard) == null ? void 0 : e.classes, attrs: { id: "guido__recommendation-strategy-onboard", "is-multiple-page": "", visible: "", "image-source": "", title: "", "left-position": (n = o.onboardingStore.getRecommendationStrategyCurrentCard) == null ? void 0 : n.left, "pages-config": o.onboardingStore.onboardings.recommendationStrategyOnboarding.config, "pointer-position": (r = o.onboardingStore.getRecommendationStrategyCurrentCard) == null ? void 0 : r.position, "right-position": (a = o.onboardingStore.getRecommendationStrategyCurrentCard) == null ? void 0 : a.right, "top-position": (i = o.onboardingStore.getRecommendationStrategyCurrentCard) == null ? void 0 : i.top }, on: { close: function(p) {
|
|
8
|
+
return o.onboardingStore.close(o.ONBOARDING_TYPE);
|
|
9
|
+
}, nextButtonClick: o.handleNext } }) : t._e();
|
|
10
|
+
}, c = [], _ = /* @__PURE__ */ g(
|
|
11
|
+
d,
|
|
12
|
+
m,
|
|
13
|
+
c,
|
|
14
|
+
!1,
|
|
15
|
+
null,
|
|
16
|
+
"1f4a4044"
|
|
17
|
+
);
|
|
18
|
+
const S = _.exports;
|
|
19
|
+
export {
|
|
20
|
+
S as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { defineComponent as c, computed as g, watch as b } from "vue";
|
|
2
|
+
import { useRibbonOffset as p } from "../../../composables/useRibbonOffset.js";
|
|
3
|
+
import { useTranslations as u } from "../../../composables/useTranslations.js";
|
|
4
|
+
import { ACADEMY_LINKS as l } from "../../../enums/academy.js";
|
|
5
|
+
import { useOnboardingStore as f } from "../../../stores/onboarding.js";
|
|
6
|
+
import { InOnboard as O } from "@useinsider/design-system-vue";
|
|
7
|
+
const B = /* @__PURE__ */ c({
|
|
8
|
+
__name: "RecommendationStrategyOnboarding",
|
|
9
|
+
setup(_) {
|
|
10
|
+
const e = "recommendationStrategyOnboarding", n = u(), t = f(), { getTopPosition: i } = p(), r = `<a href="${l.EMAIL_RECOMMENDATION_BLOCK}" target="_blank" rel="noopener noreferrer">${n("action-builder.visit-academy")}</a>`, a = () => [
|
|
11
|
+
{
|
|
12
|
+
classes: "guido-recommendation-strategy-onboarding",
|
|
13
|
+
// Sits in the gap left of the settings panel and points at the strategy section, which
|
|
14
|
+
// starts 208px down: the panel header and its tab row are fixed chrome above it.
|
|
15
|
+
right: "426px",
|
|
16
|
+
top: i(208),
|
|
17
|
+
position: "Right Top",
|
|
18
|
+
title: n("email-editor.onboarding-recommendation-strategy-title"),
|
|
19
|
+
description: n("email-editor.onboarding-recommendation-strategy-description", {
|
|
20
|
+
academyLink: r
|
|
21
|
+
}),
|
|
22
|
+
imageSource: "",
|
|
23
|
+
backButtonClick: () => {
|
|
24
|
+
},
|
|
25
|
+
nextButtonType: "text",
|
|
26
|
+
nextButtonText: n("action-builder.ok"),
|
|
27
|
+
nextButtonClick: () => {
|
|
28
|
+
t.close(e);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
], m = g(() => t.onboardings.recommendationStrategyOnboarding.config.length > 0 && t.onboardings.recommendationStrategyOnboarding.isActive), d = () => {
|
|
32
|
+
var o, s;
|
|
33
|
+
(s = (o = t.getRecommendationStrategyCurrentCard) == null ? void 0 : o.nextButtonClick) == null || s.call(o);
|
|
34
|
+
};
|
|
35
|
+
return b(
|
|
36
|
+
() => t.isActive(e),
|
|
37
|
+
(o) => {
|
|
38
|
+
o && t.setConfig(e, a());
|
|
39
|
+
},
|
|
40
|
+
{ immediate: !0 }
|
|
41
|
+
), { __sfc: !0, ONBOARDING_TYPE: e, trans: n, onboardingStore: t, getTopPosition: i, academyLink: r, buildOnboardingCards: a, isVisible: m, handleNext: d, InOnboard: O };
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
export {
|
|
45
|
+
B as default
|
|
46
|
+
};
|