@useinsider/guido 3.12.0-beta.60e4757 → 3.12.0-beta.6de71f8
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/config/schemas.js +9 -4
- package/dist/components/Guido.vue.js +6 -6
- package/dist/components/Guido.vue2.js +50 -49
- package/dist/components/organisms/email-preview/desktop-preview/DesktopPreview.vue.js +1 -1
- package/dist/components/organisms/email-preview/desktop-preview/DesktopPreview.vue2.js +8 -8
- package/dist/components/organisms/email-preview/mobile-preview/ContentView.vue.js +5 -5
- package/dist/components/organisms/email-preview/mobile-preview/ContentView.vue2.js +10 -10
- package/dist/components/organisms/extensions/recommendation/StrategyDetailDrawer.vue.js +38 -0
- package/dist/components/organisms/extensions/recommendation/StrategyDetailDrawer.vue2.js +271 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/CampaignTable.vue.js +18 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/CampaignTable.vue2.js +42 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/FilterHumanizer.vue.js +20 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/FilterHumanizer.vue2.js +18 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/HumanizerCondition.vue.js +20 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/HumanizerCondition.vue2.js +60 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/HumanizerGroup.vue.js +19 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/HumanizerGroup.vue2.js +19 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/InfoDisplayValue.vue.js +22 -0
- package/dist/components/organisms/extensions/recommendation/strategy-detail/InfoDisplayValue.vue2.js +29 -0
- package/dist/composables/useHttp.js +61 -52
- package/dist/composables/usePreviewInteractionGuard.js +36 -11
- package/dist/composables/useRecommendation.js +56 -40
- package/dist/composables/useRecommendationPreview.js +61 -60
- package/dist/composables/useStrategyFilters.js +16 -0
- package/dist/config/migrator/recommendationMigrator.js +7 -4
- package/dist/enums/date.js +4 -3
- package/dist/enums/extensions/filteringV2.js +1024 -0
- package/dist/enums/extensions/recommendationBlock.js +45 -24
- package/dist/enums/extensions/strategyDetail.js +149 -0
- package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +12 -11
- package/dist/extensions/Blocks/Recommendation/controls/main/index.js +141 -123
- package/dist/extensions/Blocks/Recommendation/controls/main/strategy.js +285 -0
- package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +16 -2
- package/dist/extensions/Blocks/Recommendation/recommendation.css.js +137 -0
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +478 -113
- package/dist/extensions/Blocks/Recommendation/utils/strategyHumanizer.js +97 -0
- package/dist/extensions/Blocks/Recommendation/utils/strategyNavigation.js +8 -0
- package/dist/extensions/Blocks/Recommendation/utils/strategySummary.js +95 -0
- package/dist/extensions/Blocks/Recommendation/utils/strategyUrl.js +43 -0
- package/dist/extensions/Blocks/Recommendation/validation/requiredFields.js +24 -10
- package/dist/extensions/Blocks/Unsubscribe/utils/constants.js +3 -2
- package/dist/extensions/Blocks/common-control.js +37 -35
- package/dist/guido.css +1 -1
- package/dist/services/recommendationApi.js +127 -33
- package/dist/services/stripoApi.js +18 -18
- package/dist/src/@types/config/schemas.d.ts +10 -0
- package/dist/src/components/organisms/extensions/recommendation/StrategyDetailDrawer.vue.d.ts +2 -0
- package/dist/src/components/organisms/extensions/recommendation/strategy-detail/CampaignTable.vue.d.ts +43 -0
- package/dist/src/components/organisms/extensions/recommendation/strategy-detail/FilterHumanizer.vue.d.ts +29 -0
- package/dist/src/components/organisms/extensions/recommendation/strategy-detail/HumanizerCondition.vue.d.ts +40 -0
- package/dist/src/components/organisms/extensions/recommendation/strategy-detail/HumanizerGroup.vue.d.ts +38 -0
- package/dist/src/components/organisms/extensions/recommendation/strategy-detail/InfoDisplayValue.vue.d.ts +51 -0
- package/dist/src/composables/useConfig.d.ts +2 -0
- package/dist/src/composables/usePreviewInteractionGuard.d.ts +1 -1
- package/dist/src/composables/useRecommendation.d.ts +2 -0
- package/dist/src/composables/useStrategyFilters.d.ts +24 -0
- package/dist/src/enums/extensions/filteringV2.d.ts +72 -0
- package/dist/src/enums/extensions/recommendationBlock.d.ts +33 -0
- package/dist/src/enums/extensions/strategyDetail.d.ts +90 -0
- package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +10 -4
- package/dist/src/extensions/Blocks/Recommendation/controls/main/strategy.d.ts +109 -0
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +924 -1
- package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +7 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/strategyHumanizer.d.ts +50 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/strategyNavigation.d.ts +10 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/strategySummary.d.ts +34 -0
- package/dist/src/extensions/Blocks/Recommendation/utils/strategyUrl.d.ts +51 -0
- package/dist/src/extensions/Blocks/Recommendation/validation/requiredFields.d.ts +8 -1
- package/dist/src/extensions/Blocks/Unsubscribe/utils/constants.d.ts +1 -0
- package/dist/src/extensions/Blocks/common-control.d.ts +5 -2
- package/dist/src/mock/api/recommendation-strategies.d.ts +2 -0
- package/dist/src/services/recommendationApi.d.ts +9 -1
- package/dist/src/stores/config.d.ts +18 -0
- package/dist/src/utils/genericUtil.d.ts +9 -0
- package/dist/src/utils/urlSchemes.d.ts +6 -0
- package/dist/static/styles/components/base-input.css.js +6 -7
- package/dist/utils/dateUtil.js +23 -10
- package/dist/utils/genericUtil.js +10 -1
- package/dist/utils/templatePreparation.js +70 -57
- package/dist/utils/urlSchemes.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
import { defineComponent as le, ref as ie, computed as l, watch as U } from "vue";
|
|
2
|
+
import { useTranslations as re } from "../../../../composables/useTranslations.js";
|
|
3
|
+
import { STRATEGY_PAGES as oe } from "../../../../enums/extensions/recommendationBlock.js";
|
|
4
|
+
import { DetailTabs as c, EMAIL_CHANNEL as ue, PageTypeTranslationKeys as ne, TIME as F, COUNT as X } from "../../../../enums/extensions/strategyDetail.js";
|
|
5
|
+
import { useRecommendationExtensionStore as ce } from "../../../../extensions/Blocks/Recommendation/store/recommendation.js";
|
|
6
|
+
import { navigateToStrategyPage as de, buildStrategyEditPath as ve } from "../../../../extensions/Blocks/Recommendation/utils/strategyNavigation.js";
|
|
7
|
+
import { getMethodTranslationKey as ye, getAlgorithmTranslationKey as pe } from "../../../../extensions/Blocks/Recommendation/utils/strategySummary.js";
|
|
8
|
+
import { formatShortDate as J } from "../../../../utils/dateUtil.js";
|
|
9
|
+
import { parseJsonField as T } from "../../../../utils/genericUtil.js";
|
|
10
|
+
import { InTabs as me, InInfoBox as ge, InDrawer as fe } from "@useinsider/design-system-vue";
|
|
11
|
+
import _e from "./strategy-detail/CampaignTable.vue.js";
|
|
12
|
+
import be from "./strategy-detail/FilterHumanizer.vue.js";
|
|
13
|
+
import he from "./strategy-detail/InfoDisplayValue.vue.js";
|
|
14
|
+
const Re = /* @__PURE__ */ le({
|
|
15
|
+
__name: "StrategyDetailDrawer",
|
|
16
|
+
setup(Ve) {
|
|
17
|
+
const _ = "MIXED", C = "CHECKOUT_RECOMMENDATION", i = re(), o = ce(), p = ie(c.GENERAL), t = l(() => o.getDrawerStrategy), b = l(() => o.strategyDetailDrawerStatus), m = l(() => t.value ? String(t.value.strategy_id) : ""), u = l(() => i("campaign-details-modal.none")), Y = l(() => [
|
|
18
|
+
{
|
|
19
|
+
value: c.GENERAL,
|
|
20
|
+
path: "",
|
|
21
|
+
text: i("discovery-strategy.recommendation-strategy-details")
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
value: c.OTHER,
|
|
25
|
+
path: "",
|
|
26
|
+
text: i("discovery-strategy.campaign-and-other-details")
|
|
27
|
+
}
|
|
28
|
+
]);
|
|
29
|
+
U(
|
|
30
|
+
() => [b.value, p.value, m.value],
|
|
31
|
+
([e, a, s]) => {
|
|
32
|
+
e && a === c.OTHER && s && o.fetchStrategyCampaigns(s);
|
|
33
|
+
},
|
|
34
|
+
{ immediate: !0 }
|
|
35
|
+
), U(b, (e) => {
|
|
36
|
+
e || (p.value = c.GENERAL);
|
|
37
|
+
});
|
|
38
|
+
const q = () => {
|
|
39
|
+
p.value = c.GENERAL, o.closeStrategyDrawer();
|
|
40
|
+
}, h = l(() => {
|
|
41
|
+
var e, a;
|
|
42
|
+
return (((a = (e = t.value) == null ? void 0 : e.campaignCount) == null ? void 0 : a.active) ?? 0) > 1;
|
|
43
|
+
}), Q = l(() => [
|
|
44
|
+
i("strategy-details-modal.first-line"),
|
|
45
|
+
i("strategy-details-modal.second-line").replace("{url}", oe.LISTING)
|
|
46
|
+
]), W = l(() => ({
|
|
47
|
+
primaryButton: {
|
|
48
|
+
styling: "solid",
|
|
49
|
+
type: "primary",
|
|
50
|
+
labelText: h.value ? i("strategy-details-modal.duplicate-and-assign") : i("strategy-details-modal.edit"),
|
|
51
|
+
loadingStatus: o.strategyDuplicating
|
|
52
|
+
},
|
|
53
|
+
cancelOrBackButton: {
|
|
54
|
+
styling: "ghost",
|
|
55
|
+
type: "secondary",
|
|
56
|
+
labelText: i("products.cancel"),
|
|
57
|
+
disabledStatus: o.strategyDuplicating
|
|
58
|
+
}
|
|
59
|
+
})), Z = () => {
|
|
60
|
+
if (h.value) {
|
|
61
|
+
o.duplicateAndAssignStrategy();
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
de(ve(m.value));
|
|
65
|
+
}, E = l(() => o.strategyCampaigns.filter((e) => e.status === "Active").reduce((e, a) => {
|
|
66
|
+
var s;
|
|
67
|
+
return e + (((s = a.variants) == null ? void 0 : s.length) ?? 0);
|
|
68
|
+
}, 0)), S = l(() => o.strategyCampaigns.filter((e) => e.status !== "Active").reduce((e, a) => {
|
|
69
|
+
var s;
|
|
70
|
+
return e + (((s = a.variants) == null ? void 0 : s.length) ?? 0);
|
|
71
|
+
}, 0)), D = l(() => {
|
|
72
|
+
var a;
|
|
73
|
+
return (((a = t.value) == null ? void 0 : a.suitable_channels) || "").split(",").map((s) => s.trim()).filter(Boolean).map((s) => i(
|
|
74
|
+
s.toLowerCase() === ue ? "products.newsletter" : `products.${s.toLowerCase()}`
|
|
75
|
+
)).join(", ");
|
|
76
|
+
}), A = l(() => {
|
|
77
|
+
var s;
|
|
78
|
+
const e = (s = t.value) == null ? void 0 : s.suitable_page_types;
|
|
79
|
+
return e ? (typeof e == "string" ? e.split(",").map((r) => r.trim()) : e).filter(Boolean).map((r) => i(ne[r] || r)).join(", ") : "";
|
|
80
|
+
}), ee = l(() => [
|
|
81
|
+
{
|
|
82
|
+
title: "discovery-strategy.channel-types",
|
|
83
|
+
value: D.value || u.value,
|
|
84
|
+
isVisible: !0,
|
|
85
|
+
translateValue: !1
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
title: "discovery-strategy.page-types",
|
|
89
|
+
value: A.value || u.value,
|
|
90
|
+
isVisible: !0,
|
|
91
|
+
translateValue: !1
|
|
92
|
+
}
|
|
93
|
+
]), g = l(
|
|
94
|
+
() => {
|
|
95
|
+
var e;
|
|
96
|
+
return T((e = t.value) == null ? void 0 : e.base_product, null);
|
|
97
|
+
}
|
|
98
|
+
), V = l(
|
|
99
|
+
() => {
|
|
100
|
+
var e;
|
|
101
|
+
return ((e = t.value) == null ? void 0 : e.algorithm) !== _ && g.value !== null;
|
|
102
|
+
}
|
|
103
|
+
), I = l(() => {
|
|
104
|
+
const e = g.value;
|
|
105
|
+
if (!e)
|
|
106
|
+
return "";
|
|
107
|
+
const a = i(`discovery-strategy.base-product-source-${e.source}`);
|
|
108
|
+
return e.source === "page" ? a : `${a} ${i(`discovery-strategy.base-product-count-${e.count}`)}`;
|
|
109
|
+
}), B = l(() => t.value ? t.value.algorithm !== _ ? T(t.value.manual_merchandising_products, []).filter(Boolean).join(", ") : T(t.value.mixed_strategies, []).map((e) => e == null ? void 0 : e.productId).filter(Boolean).join(", ") : ""), n = (e) => e ? "common.yes" : "common.no", te = l(() => {
|
|
110
|
+
var e, a, s, r, d, v, y;
|
|
111
|
+
return [
|
|
112
|
+
{
|
|
113
|
+
title: "discovery-strategy.method",
|
|
114
|
+
value: ye(((e = t.value) == null ? void 0 : e.algorithm) || ""),
|
|
115
|
+
isVisible: !0,
|
|
116
|
+
translateValue: !0
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
title: "algorithm-panel.algorithm-header",
|
|
120
|
+
value: (((a = t.value) == null ? void 0 : a.algorithm_used) || "").split(",").map((f) => pe(f.trim())).join(", "),
|
|
121
|
+
isVisible: !0,
|
|
122
|
+
translateValue: !0
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
title: "discovery-strategy.base-product-label",
|
|
126
|
+
value: I.value,
|
|
127
|
+
isVisible: V.value,
|
|
128
|
+
translateValue: !1
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
title: "discovery-strategy.base-product-pin-label",
|
|
132
|
+
value: n((s = g.value) == null ? void 0 : s.pin),
|
|
133
|
+
isVisible: V.value,
|
|
134
|
+
translateValue: !0
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
title: "discovery-strategy.checkout-recommendation-cart-value",
|
|
138
|
+
value: String(((r = t.value) == null ? void 0 : r.checkout_recommendation_cart_value) ?? ""),
|
|
139
|
+
isVisible: ((d = t.value) == null ? void 0 : d.algorithm_used) === C,
|
|
140
|
+
translateValue: !1
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
title: "discovery-strategy.number-of-products",
|
|
144
|
+
value: String(((v = t.value) == null ? void 0 : v.size) ?? ""),
|
|
145
|
+
isVisible: !0,
|
|
146
|
+
translateValue: !1
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
title: "discovery-strategy.manual-merchandising-products",
|
|
150
|
+
value: B.value || u.value,
|
|
151
|
+
isVisible: !0,
|
|
152
|
+
translateValue: !1
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
title: "discovery-strategy.shuffle-recommended-products",
|
|
156
|
+
value: n((y = t.value) == null ? void 0 : y.shuffle),
|
|
157
|
+
isVisible: !0,
|
|
158
|
+
translateValue: !0
|
|
159
|
+
}
|
|
160
|
+
];
|
|
161
|
+
}), x = (e, a) => {
|
|
162
|
+
const s = (a || "").toLowerCase(), r = e === 1 ? `date-time.${s}` : `date-time.${s}s`;
|
|
163
|
+
return `${e ?? ""} ${i(r)}`;
|
|
164
|
+
}, w = (e) => `${e ?? ""} ${i(e === 1 ? "discovery-strategy.item" : "discovery-strategy.items")}`, ae = l(() => {
|
|
165
|
+
var e, a, s, r, d, v, y, f, L, O, P, R, $, M, k, G, H, j, K, z;
|
|
166
|
+
return [
|
|
167
|
+
{
|
|
168
|
+
title: "discovery-strategy.personalize-recommendations-based-on-attribute-affinity",
|
|
169
|
+
value: n((e = t.value) == null ? void 0 : e.attribute_affinity),
|
|
170
|
+
isVisible: !0,
|
|
171
|
+
translateValue: !0
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
title: "discovery-strategy.exclude-recently-view-items",
|
|
175
|
+
value: n((a = t.value) == null ? void 0 : a.exclude_view),
|
|
176
|
+
isVisible: !((s = t.value) != null && s.exclude_view),
|
|
177
|
+
translateValue: !0
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
title: "discovery-strategy.exclude-items-viewed-in-the-last",
|
|
181
|
+
value: x((r = t.value) == null ? void 0 : r.exclude_view_duration, (d = t.value) == null ? void 0 : d.exclude_view_duration_type),
|
|
182
|
+
isVisible: !!((v = t.value) != null && v.exclude_view) && ((y = t.value) == null ? void 0 : y.exclude_view_option) === F,
|
|
183
|
+
translateValue: !1
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
title: "discovery-strategy.number-of-items-to-exclude-from-recently-viewed",
|
|
187
|
+
value: w((f = t.value) == null ? void 0 : f.exclude_view_item_count),
|
|
188
|
+
isVisible: !!((L = t.value) != null && L.exclude_view) && ((O = t.value) == null ? void 0 : O.exclude_view_option) === X,
|
|
189
|
+
translateValue: !1
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
title: "discovery-strategy.exclude-recently-purchased-items",
|
|
193
|
+
value: n((P = t.value) == null ? void 0 : P.exclude_purchase),
|
|
194
|
+
isVisible: !((R = t.value) != null && R.exclude_purchase),
|
|
195
|
+
translateValue: !0
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
title: "discovery-strategy.exclude-items-purchase-in-the-last",
|
|
199
|
+
value: x(($ = t.value) == null ? void 0 : $.exclude_purchase_duration, (M = t.value) == null ? void 0 : M.exclude_purchase_duration_type),
|
|
200
|
+
isVisible: !!((k = t.value) != null && k.exclude_purchase) && ((G = t.value) == null ? void 0 : G.exclude_purchase_option) === F,
|
|
201
|
+
translateValue: !1
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
title: "discovery-strategy.number-of-items-to-exclude-from-recently-purchased",
|
|
205
|
+
value: w((H = t.value) == null ? void 0 : H.exclude_purchase_item_count),
|
|
206
|
+
isVisible: !!((j = t.value) != null && j.exclude_purchase) && ((K = t.value) == null ? void 0 : K.exclude_purchase_option) === X,
|
|
207
|
+
translateValue: !1
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
title: "discovery-strategy.exclude-recently-added-cart-items",
|
|
211
|
+
value: n((z = t.value) == null ? void 0 : z.exclude_cart),
|
|
212
|
+
isVisible: !0,
|
|
213
|
+
translateValue: !0
|
|
214
|
+
}
|
|
215
|
+
];
|
|
216
|
+
}), N = (e) => {
|
|
217
|
+
var a;
|
|
218
|
+
(a = navigator.clipboard) == null || a.writeText(e).catch(() => {
|
|
219
|
+
console.warn("[StrategyDetailDrawer] Copying the strategy id to the clipboard failed.");
|
|
220
|
+
});
|
|
221
|
+
}, se = l(() => {
|
|
222
|
+
var e, a, s;
|
|
223
|
+
return [
|
|
224
|
+
{
|
|
225
|
+
title: "discovery-strategy.strategy-id",
|
|
226
|
+
value: m.value,
|
|
227
|
+
isVisible: !0,
|
|
228
|
+
translateValue: !1,
|
|
229
|
+
icon: "line-copy",
|
|
230
|
+
iconTooltip: "discovery-strategy.copy",
|
|
231
|
+
iconTooltipAfterClicked: "discovery-strategy.copied",
|
|
232
|
+
iconClick: N
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
title: "discovery-strategy.last-updated-by",
|
|
236
|
+
value: ((e = t.value) == null ? void 0 : e.last_updated_by) || u.value,
|
|
237
|
+
isVisible: !0,
|
|
238
|
+
translateValue: !1
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
title: "discovery-strategy.last-updated-on",
|
|
242
|
+
value: (a = t.value) != null && a.updated_at ? J(t.value.updated_at) : u.value,
|
|
243
|
+
isVisible: !0,
|
|
244
|
+
translateValue: !1
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
title: "discovery-strategy.created-date",
|
|
248
|
+
value: (s = t.value) != null && s.created_at ? J(t.value.created_at) : u.value,
|
|
249
|
+
isVisible: !0,
|
|
250
|
+
translateValue: !1
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
title: "discovery-strategy.variants-with-live-recommendation-strategies",
|
|
254
|
+
value: String(E.value),
|
|
255
|
+
isVisible: !0,
|
|
256
|
+
translateValue: !1
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
title: "discovery-strategy.variants-with-idle-recommendation-strategies",
|
|
260
|
+
value: String(S.value),
|
|
261
|
+
isVisible: !0,
|
|
262
|
+
translateValue: !1
|
|
263
|
+
}
|
|
264
|
+
];
|
|
265
|
+
});
|
|
266
|
+
return { __sfc: !0, MIXED: _, CHECKOUT_RECOMMENDATION: C, trans: i, store: o, activeTab: p, strategy: t, isOpen: b, strategyId: m, none: u, tabs: Y, close: q, isSharedAcrossCampaigns: h, sharedNotice: Q, footerButtonGroupOptions: W, onPrimaryAction: Z, liveVariantsCount: E, idleVariantsCount: S, suitableChannelTypes: D, suitablePageTypes: A, pageAndChannelDetails: ee, baseProduct: g, isBaseProductVisible: V, baseProductSourceLabel: I, manualMerchandisingProducts: B, yesNo: n, widgetPreferences: te, durationText: x, itemCountText: w, advancedPersonalization: ae, copyStrategyId: N, otherDetails: se, visibleRows: (e) => e.filter((a) => a.isVisible), DetailTabs: c, InDrawer: fe, InInfoBox: ge, InTabs: me, CampaignTable: _e, FilterHumanizer: be, InfoDisplayValue: he };
|
|
267
|
+
}
|
|
268
|
+
});
|
|
269
|
+
export {
|
|
270
|
+
Re as default
|
|
271
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/CampaignTable.vue.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import n from "./CampaignTable.vue2.js";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import i from "../../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var e = function() {
|
|
5
|
+
var a = this, s = a._self._c, t = a._self._setupProxy;
|
|
6
|
+
return s("div", { staticClass: "campaign-table" }, [s("div", { staticClass: "f-w-600 f-s-2 mb-3" }, [a._v(" " + a._s(t.trans("discovery-strategy.used-in-campaigns", { count: a.campaigns.length })) + " ")]), t.hasCampaigns || a.loading ? s(t.InDataTableV2, { attrs: { id: "strategy-campaign-listing-table", "pagination-status": "", "column-options": t.columnOptions, data: a.campaigns, "horizontal-scroll": !1, "in-container-layout": !1, "items-per-page-status": !1, "loading-status": a.loading } }) : s(t.InNoData, { attrs: { "button-status": !1, description: t.trans("discovery-strategy.no-campaigns-description"), title: t.trans("discovery-strategy.no-campaigns"), "visible-icon": !1 } })], 1);
|
|
7
|
+
}, o = [], r = /* @__PURE__ */ i(
|
|
8
|
+
n,
|
|
9
|
+
e,
|
|
10
|
+
o,
|
|
11
|
+
!1,
|
|
12
|
+
null,
|
|
13
|
+
"3ff1b2a9"
|
|
14
|
+
);
|
|
15
|
+
const g = r.exports;
|
|
16
|
+
export {
|
|
17
|
+
g as default
|
|
18
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/CampaignTable.vue2.js
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { defineComponent as d, computed as o } from "vue";
|
|
2
|
+
import { useTranslations as p } from "../../../../../composables/useTranslations.js";
|
|
3
|
+
import { InNoData as c, InDataTableV2 as l } from "@useinsider/design-system-vue";
|
|
4
|
+
const g = /* @__PURE__ */ d({
|
|
5
|
+
__name: "CampaignTable",
|
|
6
|
+
props: {
|
|
7
|
+
campaigns: { default: () => [] },
|
|
8
|
+
loading: { type: Boolean, default: !1 }
|
|
9
|
+
},
|
|
10
|
+
setup(i) {
|
|
11
|
+
const s = i, a = p(), m = o(() => s.campaigns.length > 0), n = (t) => (t.variants ?? []).map((e) => typeof e == "string" ? e : e == null ? void 0 : e.name).filter(Boolean).join(", "), r = o(() => [
|
|
12
|
+
{
|
|
13
|
+
headerName: a("discovery-strategy.status"),
|
|
14
|
+
field: "status",
|
|
15
|
+
type: "status",
|
|
16
|
+
status: (t) => t.status.toLowerCase(),
|
|
17
|
+
text: (t) => t.status,
|
|
18
|
+
width: 130,
|
|
19
|
+
minWidth: 130
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
headerName: a("discovery-strategy.campaign-and-variant"),
|
|
23
|
+
field: "name",
|
|
24
|
+
text: (t) => t.name,
|
|
25
|
+
description: (t) => n(t),
|
|
26
|
+
width: 280,
|
|
27
|
+
minWidth: 200
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
headerName: a("discovery-strategy.channel"),
|
|
31
|
+
field: "channel",
|
|
32
|
+
text: (t) => t.channel,
|
|
33
|
+
width: 220,
|
|
34
|
+
minWidth: 150
|
|
35
|
+
}
|
|
36
|
+
]);
|
|
37
|
+
return { __sfc: !0, trans: a, props: s, hasCampaigns: m, getVariantsText: n, columnOptions: r, InDataTableV2: l, InNoData: c };
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
export {
|
|
41
|
+
g as default
|
|
42
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/FilterHumanizer.vue.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import o from "./FilterHumanizer.vue2.js";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import n from "../../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var l = function() {
|
|
5
|
+
var e = this, r = e._self._c, t = e._self._setupProxy;
|
|
6
|
+
return r("div", { staticClass: "filter-humanizer" }, [t.hasAnyFilter ? e._l(t.filterQuery, function(s, i) {
|
|
7
|
+
return r(t.HumanizerGroup, { key: i, staticClass: "group", attrs: { "condition-list": s.conditionList || [], filters: t.filterQuery, "group-index": String(i), "group-logic": s.groupLogic || "" } });
|
|
8
|
+
}) : [r("p", { staticClass: "px-5 t-c-3" }, [e._v(" " + e._s(t.trans("discovery-strategy.no-filters")) + " ")])], t.canToggle ? r("div", { staticClass: "mt-4 px-5" }, [r(t.InButtonV2, { attrs: { id: "strategy-filters-toggle", styling: "text", type: "primary", "label-text": t.isCollapsed ? t.trans("product-catalog.show-more") : t.trans("product-catalog.show-less"), "left-icon": t.isCollapsed ? "line-chevron-down" : "line-chevron-up" }, on: { click: t.toggleMore } })], 1) : e._e()], 2);
|
|
9
|
+
}, a = [], c = /* @__PURE__ */ n(
|
|
10
|
+
o,
|
|
11
|
+
l,
|
|
12
|
+
a,
|
|
13
|
+
!1,
|
|
14
|
+
null,
|
|
15
|
+
"3ecb7de4"
|
|
16
|
+
);
|
|
17
|
+
const d = c.exports;
|
|
18
|
+
export {
|
|
19
|
+
d as default
|
|
20
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/FilterHumanizer.vue2.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineComponent as a } from "vue";
|
|
2
|
+
import { useStrategyFilters as p } from "../../../../../composables/useStrategyFilters.js";
|
|
3
|
+
import { useTranslations as f } from "../../../../../composables/useTranslations.js";
|
|
4
|
+
import { InButtonV2 as l } from "@useinsider/design-system-vue";
|
|
5
|
+
import u from "./HumanizerGroup.vue.js";
|
|
6
|
+
const F = /* @__PURE__ */ a({
|
|
7
|
+
__name: "FilterHumanizer",
|
|
8
|
+
props: {
|
|
9
|
+
filters: { default: "{}" }
|
|
10
|
+
},
|
|
11
|
+
setup(t) {
|
|
12
|
+
const r = t, e = f(), { filterQuery: o, hasAnyFilter: s, canToggle: n, isCollapsed: i, toggleMore: m } = p(() => r.filters);
|
|
13
|
+
return { __sfc: !0, trans: e, props: r, filterQuery: o, hasAnyFilter: s, canToggle: n, isCollapsed: i, toggleMore: m, InButtonV2: l, HumanizerGroup: u };
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
export {
|
|
17
|
+
F as default
|
|
18
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import a from "./HumanizerCondition.vue2.js";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import e from "../../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var o = function() {
|
|
5
|
+
var t = this, s = t._self._c, i = t._self._setupProxy;
|
|
6
|
+
return s("div", { class: { "pb-0 pt-1": t.isLast, "py-1": !t.isLast } }, [s("div", { staticClass: "d-f a-i-b j-c-s-b" }, [s("div", { staticClass: "attribute-type" }, [t._v(" " + t._s(i.headingText) + " ")]), s("div", { staticClass: "spaced-dot-sep f-g-1 h-1-s mx-2 w-7-s" }), s(i.InTooltipV2, { attrs: { id: `strategy-condition-${i.conditionId}-${t.index}`, "static-position": "top right", "dynamic-position": !1, text: i.tooltipText }, scopedSlots: t._u([{ key: "triggerElement", fn: function() {
|
|
7
|
+
return [s("div", { staticClass: "d-f condition-data" }, [s("div", { staticClass: "attribute" }, [t._v(" " + t._s(i.capitalizeFirstLetter(i.attributeText)) + " ")]), s("div", { staticClass: "operator f-w-600" }, [t._v(" " + t._s(i.displayOperator) + " ")]), i.totalValueLength < i.MAX_CHARACTER_SIZE ? s("div", { staticClass: "value f-w-600" }, [t._v(" " + t._s(i.suitableValue) + " ")]) : t._e()])];
|
|
8
|
+
}, proxy: !0 }]) })], 1), t.isLast ? t._e() : s("div", { staticClass: "pt-2" }, [s(i.InStatusText, { attrs: { id: `strategy-condition-logic-${i.conditionId}-${t.index}`, size: "small", status: "draft", text: t.condition.conditionLogic || "" } })], 1)]);
|
|
9
|
+
}, n = [], r = /* @__PURE__ */ e(
|
|
10
|
+
a,
|
|
11
|
+
o,
|
|
12
|
+
n,
|
|
13
|
+
!1,
|
|
14
|
+
null,
|
|
15
|
+
"2685bc55"
|
|
16
|
+
);
|
|
17
|
+
const p = r.exports;
|
|
18
|
+
export {
|
|
19
|
+
p as default
|
|
20
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { defineComponent as R, computed as e } from "vue";
|
|
2
|
+
import { useTranslations as V } from "../../../../../composables/useTranslations.js";
|
|
3
|
+
import { TimeAbbreviations as m } from "../../../../../enums/extensions/filteringV2.js";
|
|
4
|
+
import { FilterTypeNames as L, Operators as D, DataTypes as _, MultiSelectDataTypes as $, OperatorNames as u, OperatorAbbreviations as N } from "../../../../../enums/extensions/strategyDetail.js";
|
|
5
|
+
import { capitalizeFirstLetter as s, getSuitableValue as F } from "../../../../../extensions/Blocks/Recommendation/utils/strategyHumanizer.js";
|
|
6
|
+
import { InTooltipV2 as M, InStatusText as U } from "@useinsider/design-system-vue";
|
|
7
|
+
const j = /* @__PURE__ */ R({
|
|
8
|
+
__name: "HumanizerCondition",
|
|
9
|
+
props: {
|
|
10
|
+
condition: null,
|
|
11
|
+
index: null,
|
|
12
|
+
isLast: { type: Boolean, default: !1 }
|
|
13
|
+
},
|
|
14
|
+
setup(b) {
|
|
15
|
+
const n = b, c = 40, d = "_dynamic", i = V(), l = e(() => n.condition.type || ""), p = e(() => {
|
|
16
|
+
var t;
|
|
17
|
+
return ((t = n.condition.attribute) == null ? void 0 : t.text) || "";
|
|
18
|
+
}), r = e(() => {
|
|
19
|
+
var t;
|
|
20
|
+
return ((t = n.condition.attribute) == null ? void 0 : t.attributeType) || "";
|
|
21
|
+
}), o = e(() => n.condition.selectedOperator || ""), g = e(() => n.condition.id ?? n.index), f = e(() => {
|
|
22
|
+
const { value: t } = n.condition;
|
|
23
|
+
return Array.isArray(t) ? t.join(",") : t || "";
|
|
24
|
+
}), O = e(() => [
|
|
25
|
+
{ text: s(i("journey-builder.weeks")), value: m.WEEK },
|
|
26
|
+
{ text: s(i("settings.day-s")), value: m.DAY },
|
|
27
|
+
{ text: s(i("settings.hour-s")), value: m.HOUR }
|
|
28
|
+
]), a = e(() => {
|
|
29
|
+
let t = o.value;
|
|
30
|
+
l.value === L.DYNAMIC_FILTER && !t.includes(d) && (t = `${t}${d}`);
|
|
31
|
+
const T = (D[r.value] || []).find((h) => h.value === t);
|
|
32
|
+
return T ? i(T.text) : "";
|
|
33
|
+
}), y = () => r.value === _.DATE, A = () => {
|
|
34
|
+
if (!$.includes(r.value) || [u.CONTAINS, u.NOT_CONTAINS].includes(o.value))
|
|
35
|
+
return !1;
|
|
36
|
+
const t = [u.IS_EXACTLY, u.IS_NOT_EXACTLY].includes(o.value);
|
|
37
|
+
return !((n.condition.isHierarchyCategory || r.value === _.STRING) && t);
|
|
38
|
+
}, I = () => [
|
|
39
|
+
N.OPERATOR.IN,
|
|
40
|
+
N.OPERATOR.NOT_IN
|
|
41
|
+
].includes(o.value), v = e(() => F({
|
|
42
|
+
condition: n.condition,
|
|
43
|
+
selectedOperator: o.value,
|
|
44
|
+
filterValue: f.value,
|
|
45
|
+
timeUnit: n.condition.timeUnit ?? "",
|
|
46
|
+
inBetweenValues: n.condition.inBetweenValues ?? [],
|
|
47
|
+
timeUnitOptions: O.value,
|
|
48
|
+
isDateAttribute: y,
|
|
49
|
+
isMultiSelect: A,
|
|
50
|
+
isInOrNotInOperator: I,
|
|
51
|
+
trans: i
|
|
52
|
+
})), x = e(() => v.value.length + a.value.length), S = e(() => a.value.length > c ? `${a.value.substring(0, c)}...` : a.value), C = e(
|
|
53
|
+
() => `${s(p.value)} ${a.value} ${v.value}`
|
|
54
|
+
), E = e(() => l.value ? i(`discovery-strategy.${l.value.toLowerCase()}-humanized`) : s(p.value));
|
|
55
|
+
return { __sfc: !0, MAX_CHARACTER_SIZE: c, DYNAMIC_FILTER_SUFFIX: d, trans: i, props: n, filterType: l, attributeText: p, attributeType: r, selectedOperator: o, conditionId: g, filterValue: f, timeUnitOptions: O, operatorTranslated: a, isDateAttribute: y, isMultiSelect: A, isInOrNotInOperator: I, suitableValue: v, totalValueLength: x, displayOperator: S, tooltipText: C, headingText: E, capitalizeFirstLetter: s, InStatusText: U, InTooltipV2: M };
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
export {
|
|
59
|
+
j as default
|
|
60
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/HumanizerGroup.vue.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import e from "./HumanizerGroup.vue2.js";
|
|
2
|
+
import o from "../../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
3
|
+
var a = function() {
|
|
4
|
+
var t = this, s = t._self._c, r = t._self._setupProxy;
|
|
5
|
+
return s("div", [s("div", { staticClass: "py-3 b-c-5 px-5" }, t._l(t.conditionList, function(n, i) {
|
|
6
|
+
return s(r.HumanizerCondition, { key: `${n.id}-${t.groupIndex}-${i}`, staticClass: "condition", attrs: { condition: n, index: i, "is-last": t.conditionList.length - 1 === i } });
|
|
7
|
+
}), 1), r.isLastGroup ? t._e() : s("div", { staticClass: "my-3 d-f j-c-c" }, [s(r.InStatusText, { attrs: { id: `strategy-filter-group-${t.groupIndex}`, size: "small", status: "draft", text: t.groupLogic } })], 1)]);
|
|
8
|
+
}, c = [], u = /* @__PURE__ */ o(
|
|
9
|
+
e,
|
|
10
|
+
a,
|
|
11
|
+
c,
|
|
12
|
+
!1,
|
|
13
|
+
null,
|
|
14
|
+
null
|
|
15
|
+
);
|
|
16
|
+
const p = u.exports;
|
|
17
|
+
export {
|
|
18
|
+
p as default
|
|
19
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/HumanizerGroup.vue2.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { defineComponent as n, computed as r } from "vue";
|
|
2
|
+
import { InStatusText as u } from "@useinsider/design-system-vue";
|
|
3
|
+
import i from "./HumanizerCondition.vue.js";
|
|
4
|
+
const l = /* @__PURE__ */ n({
|
|
5
|
+
__name: "HumanizerGroup",
|
|
6
|
+
props: {
|
|
7
|
+
filters: null,
|
|
8
|
+
conditionList: null,
|
|
9
|
+
groupIndex: null,
|
|
10
|
+
groupLogic: { default: "" }
|
|
11
|
+
},
|
|
12
|
+
setup(t) {
|
|
13
|
+
const o = t, e = r(() => Object.keys(o.filters).length === Number(o.groupIndex));
|
|
14
|
+
return { __sfc: !0, props: o, isLastGroup: e, InStatusText: u, HumanizerCondition: i };
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
export {
|
|
18
|
+
l as default
|
|
19
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/InfoDisplayValue.vue.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import a from "./InfoDisplayValue.vue2.js";
|
|
2
|
+
/* empty css */
|
|
3
|
+
import e from "../../../../../_virtual/_plugin-vue2_normalizer.js";
|
|
4
|
+
var n = function() {
|
|
5
|
+
var s = this, t = s._self._c, i = s._self._setupProxy;
|
|
6
|
+
return t("div", { staticClass: "d-f a-i-b l-h-2 mt-2" }, [t("div", { staticClass: "t-c-3 w-s-n-w" }, [s._v(" " + s._s(i.trans(s.title)) + " ")]), t("div", { staticClass: "spaced-dot-sep f-g-1 h-1-s mx-2 w-7-s" }), t("div", { staticClass: "d-f a-i-c" }, [t("div", [s._v(s._s(i.displayValues))]), i.showMore ? t("div", { staticClass: "d-f a-i-c" }, [t("div", { staticClass: "mx-1" }, [s._v(" ... ")]), t(i.InTooltipV2, { attrs: { id: `strategy-detail-show-more-${s.index}`, "static-position": "top right", "dynamic-position": !1, text: i.hiddenDisplayValues, "with-icon": !1 }, scopedSlots: s._u([{ key: "triggerElement", fn: function() {
|
|
7
|
+
return [t("span", { staticClass: "f-w-600" }, [s._v("+" + s._s(i.hiddenValues.length))])];
|
|
8
|
+
}, proxy: !0 }], null, !1, 3725664940) })], 1) : s._e(), s.icon ? t("div", { staticClass: "ml-2" }, [t(i.InTooltipV2, { staticClass: "d-f a-i-c", attrs: { id: `strategy-detail-icon-action-${s.index}`, "static-position": "top right", "dynamic-position": !1, "icon-status": !1, status: !s.disabled, text: i.trans(i.iconTooltipText) }, scopedSlots: s._u([{ key: "triggerElement", fn: function() {
|
|
9
|
+
return [t(i.InIcons, { staticClass: "d-f a-i-c", class: { "i-c-7": !s.disabled, "i-c-2": s.disabled }, attrs: { size: "24", name: s.icon }, on: { click: i.clickOnIcon } })];
|
|
10
|
+
}, proxy: !0 }], null, !1, 4084358903) })], 1) : s._e()])]);
|
|
11
|
+
}, o = [], l = /* @__PURE__ */ e(
|
|
12
|
+
a,
|
|
13
|
+
n,
|
|
14
|
+
o,
|
|
15
|
+
!1,
|
|
16
|
+
null,
|
|
17
|
+
"6e572ff5"
|
|
18
|
+
);
|
|
19
|
+
const p = l.exports;
|
|
20
|
+
export {
|
|
21
|
+
p as default
|
|
22
|
+
};
|
package/dist/components/organisms/extensions/recommendation/strategy-detail/InfoDisplayValue.vue2.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { defineComponent as _, computed as o, ref as v } from "vue";
|
|
2
|
+
import { useTranslations as I } from "../../../../../composables/useTranslations.js";
|
|
3
|
+
import { InTooltipV2 as V, InIcons as k } from "@useinsider/design-system-vue";
|
|
4
|
+
const h = /* @__PURE__ */ _({
|
|
5
|
+
__name: "InfoDisplayValue",
|
|
6
|
+
props: {
|
|
7
|
+
index: null,
|
|
8
|
+
title: null,
|
|
9
|
+
value: null,
|
|
10
|
+
translateValue: { type: Boolean, default: !1 },
|
|
11
|
+
icon: { default: "" },
|
|
12
|
+
iconTooltip: { default: "" },
|
|
13
|
+
iconTooltipAfterClicked: { default: "" },
|
|
14
|
+
disabled: { type: Boolean, default: !1 }
|
|
15
|
+
},
|
|
16
|
+
emits: ["iconClick"],
|
|
17
|
+
setup(d, { emit: c }) {
|
|
18
|
+
const e = d, l = 3, u = 2e3, r = I(), t = o(() => String(e.value ?? "").split(",").map((n) => n.trim())), i = (n) => e.translateValue ? r(n) : n, f = o(() => t.value.length > l), m = o(() => t.value.slice(0, l).map(i).join(", ")), p = o(() => t.value.slice(l).map(i)), T = o(() => p.value.join(", ")), a = v(e.iconTooltip);
|
|
19
|
+
let s;
|
|
20
|
+
return { __sfc: !0, MAX_INLINE_VALUES: l, TOOLTIP_REVERT_DELAY_MS: u, trans: r, props: e, emit: c, values: t, render: i, showMore: f, displayValues: m, hiddenValues: p, hiddenDisplayValues: T, iconTooltipText: a, revertTimer: s, clickOnIcon: () => {
|
|
21
|
+
e.iconTooltipAfterClicked && (a.value = e.iconTooltipAfterClicked, clearTimeout(s), s = setTimeout(() => {
|
|
22
|
+
a.value = e.iconTooltip;
|
|
23
|
+
}, u)), c("iconClick");
|
|
24
|
+
}, InIcons: k, InTooltipV2: V };
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
export {
|
|
28
|
+
h as default
|
|
29
|
+
};
|