@useinsider/guido 3.3.0-beta.c1e1d7e → 3.3.0-beta.ddabd14
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 +103 -89
- package/dist/components/organisms/extensions/recommendation/FilterItem.vue.js +9 -11
- package/dist/components/organisms/extensions/recommendation/FilterItem.vue2.js +70 -35
- package/dist/components/organisms/header/MiddleSlot.vue.js +7 -7
- package/dist/composables/useCortexBlueprintBridge.js +66 -0
- package/dist/composables/useCustomInterfaceAppearance.js +18 -16
- package/dist/composables/useEmailTemplateApplier.js +41 -0
- package/dist/composables/useGuidoStateBridge.js +48 -0
- package/dist/composables/useHtmlValidator.js +41 -36
- package/dist/composables/useRecommendation.js +2 -2
- package/dist/composables/useStripo.js +56 -54
- package/dist/config/migrator/index.js +21 -10
- package/dist/config/migrator/radioButtonMigrator.js +73 -48
- package/dist/enums/extensions/recommendationBlock.js +101 -46
- package/dist/enums/unsubscribe.js +25 -24
- package/dist/extensions/Blocks/Checkbox/control.js +23 -23
- package/dist/extensions/Blocks/RadioButton/control.js +15 -15
- package/dist/extensions/Blocks/RadioButton/template.js +6 -6
- package/dist/extensions/Blocks/Recommendation/block.js +43 -36
- package/dist/extensions/Blocks/Recommendation/services/configService.js +33 -26
- package/dist/extensions/Blocks/Recommendation/store/recommendation.js +35 -26
- package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +25 -12
- package/dist/extensions/Blocks/Recommendation/validation/requiredFields.js +33 -0
- package/dist/guido.css +1 -1
- package/dist/services/unsubscribeApi.js +6 -6
- package/dist/src/composables/useCortexBlueprintBridge.d.ts +25 -0
- package/dist/src/composables/useEmailTemplateApplier.d.ts +21 -0
- package/dist/src/composables/useGuidoStateBridge.d.ts +22 -0
- package/dist/src/enums/extensions/recommendationBlock.d.ts +6 -1
- package/dist/src/enums/unsubscribe.d.ts +8 -3
- package/dist/src/extensions/Blocks/RadioButton/template.d.ts +1 -1
- package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +11 -3
- package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +7 -1
- package/dist/src/extensions/Blocks/Recommendation/utils/filterUtil.d.ts +2 -0
- package/dist/src/extensions/Blocks/Recommendation/validation/requiredFields.d.ts +21 -0
- package/dist/src/stores/guido-email-editor.d.ts +41 -0
- package/dist/static/styles/components/notification.css.js +74 -0
- package/dist/stores/guido-email-editor.js +20 -0
- package/dist/utils/templatePreparation.js +57 -50
- package/package.json +1 -1
- package/dist/composables/useStripoNotifications.js +0 -30
- package/dist/src/composables/useStripoNotifications.d.ts +0 -4
|
@@ -1,52 +1,77 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import
|
|
5
|
-
class
|
|
1
|
+
var L = Object.defineProperty;
|
|
2
|
+
var v = (a, e, t) => e in a ? L(a, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : a[e] = t;
|
|
3
|
+
var f = (a, e, t) => v(a, typeof e != "symbol" ? e + "" : e, t);
|
|
4
|
+
import A from "../../extensions/Blocks/RadioButton/template.js";
|
|
5
|
+
class k {
|
|
6
6
|
constructor() {
|
|
7
|
-
|
|
7
|
+
f(this, "parser");
|
|
8
8
|
this.parser = new DOMParser();
|
|
9
9
|
}
|
|
10
10
|
migrate(e) {
|
|
11
11
|
try {
|
|
12
|
-
const t = this.parser.parseFromString(e, "text/html"),
|
|
13
|
-
if (
|
|
14
|
-
return e;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
const t = this.parser.parseFromString(e, "text/html"), r = t.querySelectorAll("td.radio-button-block"), s = t.querySelectorAll("td.radio-button-v2");
|
|
13
|
+
if (r.length === 0 && s.length === 0)
|
|
14
|
+
return console.debug("[guido:radio-migrator] skip", { reason: "no radio blocks" }), e;
|
|
15
|
+
console.debug("[guido:radio-migrator] entry", {
|
|
16
|
+
v1BlockCount: r.length,
|
|
17
|
+
v2BlockCount: s.length,
|
|
18
|
+
inputLength: e.length
|
|
19
|
+
});
|
|
20
|
+
let n = !1, i = 0;
|
|
21
|
+
r.forEach((o) => {
|
|
22
|
+
if (o.classList.contains("radio-button-v2"))
|
|
18
23
|
return;
|
|
19
|
-
const
|
|
20
|
-
`<table id="tempDoc"><tbody><tr>${
|
|
24
|
+
const d = o.getAttribute("id"), p = this.extractTextFromElement(o, "ins-title"), g = this.extractTextFromElement(o, "ins-description"), b = this.extractTextFromElement(o, "ins-subscribe"), m = this.extractTextFromElement(o, "ins-unsubscribe"), y = this.buildTextBlock(p), x = this.buildTextBlock(g), T = this.buildTextBlock({ ...b, classList: "" }), B = this.buildTextBlock({ ...m, classList: "" }), S = A.replace("{-{-TITLE-}-}", y).replace("{-{-DESCRIPTION-}-}", x).replace("{-{-YES-}-}", T).replace("{-{-NO-}-}", B), h = this.parser.parseFromString(
|
|
25
|
+
`<table id="tempDoc"><tbody><tr>${S}</tr></tbody></table>`,
|
|
21
26
|
"text/html"
|
|
22
27
|
).querySelector(".radio-button-v2");
|
|
23
|
-
|
|
24
|
-
})
|
|
28
|
+
h && o.parentNode && (h.setAttribute("id", d || ""), o.parentNode.replaceChild(h, o), n = !0, i++);
|
|
29
|
+
});
|
|
30
|
+
const l = this.healRadioButtonV2(t);
|
|
31
|
+
n = l || n;
|
|
32
|
+
const c = n ? t.documentElement.outerHTML : e, u = (c.match(/<td[^>]*radio-button-v2[^>]*>/gi) ?? []).map((o) => {
|
|
33
|
+
var p;
|
|
34
|
+
return (((p = o.match(/class="([^"]*)"/)) == null ? void 0 : p[1]) ?? "").split(/\s+/).filter(Boolean).includes("radio-button-block");
|
|
35
|
+
});
|
|
36
|
+
return console.debug("[guido:radio-migrator] exit", {
|
|
37
|
+
v1Converted: i,
|
|
38
|
+
healingMutated: l,
|
|
39
|
+
mutated: n,
|
|
40
|
+
finalV2HasBlock: u,
|
|
41
|
+
outputLength: c.length
|
|
42
|
+
}), c;
|
|
25
43
|
} catch (t) {
|
|
26
|
-
return console.error("
|
|
44
|
+
return console.error("[guido:radio-migrator] failed:", t), e;
|
|
27
45
|
}
|
|
28
46
|
}
|
|
29
47
|
healRadioButtonV2(e) {
|
|
30
|
-
let t = !1;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
48
|
+
let t = !1, r = 0, s = 0;
|
|
49
|
+
const n = e.querySelectorAll("td.radio-button-v2");
|
|
50
|
+
return n.forEach((i) => {
|
|
51
|
+
var y;
|
|
52
|
+
i.classList.contains("radio-button-block") || (i.classList.contains("radio-button") ? i.classList.replace("radio-button", "radio-button-block") : i.classList.add("radio-button-block"), r++, t = !0);
|
|
53
|
+
const l = i.querySelector("input#radioYes"), c = i.querySelector("input#radioNo");
|
|
54
|
+
if (!l || !c)
|
|
35
55
|
return;
|
|
36
|
-
const
|
|
37
|
-
if (!
|
|
56
|
+
const u = ((y = l.parentElement) == null ? void 0 : y.querySelector(":scope > p")) || null;
|
|
57
|
+
if (!u && !l.hasAttribute("align"))
|
|
38
58
|
return;
|
|
39
|
-
const
|
|
40
|
-
if (!
|
|
59
|
+
const o = l.closest("tr"), d = c.closest("tr");
|
|
60
|
+
if (!o || !d || o === d || !o.parentNode)
|
|
41
61
|
return;
|
|
42
|
-
const
|
|
43
|
-
|
|
62
|
+
const p = (u == null ? void 0 : u.innerHTML.trim()) || "Yes", g = d.cloneNode(!0), b = g.querySelector("input#radioNo"), m = g.querySelector("p");
|
|
63
|
+
b && (b.setAttribute("id", "radioYes"), b.removeAttribute("align")), m && (m.innerHTML = p), o.parentNode.replaceChild(g, o), s++, t = !0;
|
|
64
|
+
}), console.debug("[guido:radio-migrator] healing", {
|
|
65
|
+
v2BlockCount: n.length,
|
|
66
|
+
classAddedCount: r,
|
|
67
|
+
rowHealedCount: s,
|
|
68
|
+
mutated: t
|
|
44
69
|
}), t;
|
|
45
70
|
}
|
|
46
71
|
extractTextFromElement(e, t) {
|
|
47
|
-
var
|
|
48
|
-
const
|
|
49
|
-
if (!
|
|
72
|
+
var g, b;
|
|
73
|
+
const r = e.querySelector(`.${t}`);
|
|
74
|
+
if (!r)
|
|
50
75
|
return {
|
|
51
76
|
text: t === "ins-title" ? "Title" : "Description",
|
|
52
77
|
isBold: !1,
|
|
@@ -55,32 +80,32 @@ class B {
|
|
|
55
80
|
styles: "",
|
|
56
81
|
classList: ""
|
|
57
82
|
};
|
|
58
|
-
const s =
|
|
83
|
+
const s = r.querySelector("p");
|
|
59
84
|
if (!s)
|
|
60
85
|
return {
|
|
61
|
-
text: ((
|
|
86
|
+
text: ((g = r.textContent) == null ? void 0 : g.trim()) || (t === "ins-title" ? "Title" : "Description"),
|
|
62
87
|
isBold: !1,
|
|
63
88
|
isItalic: !1,
|
|
64
|
-
align:
|
|
89
|
+
align: r.getAttribute("align") || "left",
|
|
65
90
|
styles: "",
|
|
66
91
|
classList: ""
|
|
67
92
|
};
|
|
68
|
-
const
|
|
93
|
+
const n = ((b = s.textContent) == null ? void 0 : b.trim()) || (t === "ins-title" ? "Title" : "Description"), i = s.getAttribute("style") || "", l = r.getAttribute("align") || s.getAttribute("align") || "left", c = /font-weight\s*:\s*bold/i.test(i) || !!s.querySelector("b, strong"), u = /font-style\s*:\s*italic/i.test(i) || !!s.querySelector("i, em"), o = this.removeStyleProperties(i, ["font-weight", "font-style"]), d = this.convertInlineToBlock(o), p = r.getAttribute("class") || "";
|
|
69
94
|
return {
|
|
70
|
-
text:
|
|
71
|
-
isBold:
|
|
72
|
-
isItalic:
|
|
73
|
-
align:
|
|
74
|
-
styles:
|
|
75
|
-
classList:
|
|
95
|
+
text: n,
|
|
96
|
+
isBold: c,
|
|
97
|
+
isItalic: u,
|
|
98
|
+
align: l,
|
|
99
|
+
styles: d,
|
|
100
|
+
classList: p
|
|
76
101
|
};
|
|
77
102
|
}
|
|
78
103
|
buildTextBlock(e) {
|
|
79
104
|
let t = e.text;
|
|
80
105
|
e.isBold && e.isItalic ? t = `<strong path="1,0"><em path="1,0,0">${t}</em></strong>` : e.isBold ? t = `<strong path="1,0">${t}</strong>` : e.isItalic && (t = `<em path="1,0">${t}</em>`);
|
|
81
|
-
const
|
|
106
|
+
const r = e.align ? ` align="${e.align}"` : "", s = e.styles ? ` style="${e.styles.replaceAll('"', "'")}"` : "";
|
|
82
107
|
return `
|
|
83
|
-
<td class="esd-block-text ${e.classList}" ${
|
|
108
|
+
<td class="esd-block-text ${e.classList}" ${r}>
|
|
84
109
|
<p path="1" ${s}>
|
|
85
110
|
${t}
|
|
86
111
|
</p>
|
|
@@ -88,9 +113,9 @@ class B {
|
|
|
88
113
|
`;
|
|
89
114
|
}
|
|
90
115
|
removeStyleProperties(e, t) {
|
|
91
|
-
return e ? t.reduce((s,
|
|
92
|
-
const
|
|
93
|
-
return s.replace(
|
|
116
|
+
return e ? t.reduce((s, n) => {
|
|
117
|
+
const i = new RegExp(`${n}\\s*:\\s*[^;]*;?`, "gi");
|
|
118
|
+
return s.replace(i, "");
|
|
94
119
|
}, e).replace(/;\s*;/g, ";").replace(/^;|;$/g, "").trim() : "";
|
|
95
120
|
}
|
|
96
121
|
convertInlineToBlock(e) {
|
|
@@ -100,8 +125,8 @@ class B {
|
|
|
100
125
|
return /display\s*:/i.test(t) || (t = t ? `${t}; display: block` : "display: block"), t.replace(/;\s*;/g, ";").replace(/^;|;$/g, "").trim();
|
|
101
126
|
}
|
|
102
127
|
}
|
|
103
|
-
function q(
|
|
104
|
-
return new
|
|
128
|
+
function q(a) {
|
|
129
|
+
return new k().migrate(a);
|
|
105
130
|
}
|
|
106
131
|
export {
|
|
107
132
|
q as migrateRadioButton
|
|
@@ -1,84 +1,139 @@
|
|
|
1
|
-
|
|
1
|
+
import { useTranslations as r } from "../../composables/useTranslations.js";
|
|
2
|
+
const l = {
|
|
2
3
|
RECOMMENDATION_API_URL: "https://recommendationv2.api.useinsider.com"
|
|
3
|
-
},
|
|
4
|
+
}, c = {
|
|
4
5
|
CLIENT_ID: "clientId"
|
|
5
|
-
},
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
6
|
+
}, d = () => {
|
|
7
|
+
const e = r();
|
|
8
|
+
return [
|
|
9
|
+
{
|
|
10
|
+
id: 11,
|
|
11
|
+
key: "similarViewed",
|
|
12
|
+
name: e("action-builder.similar-viewed"),
|
|
13
|
+
path: "viewed-together"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
id: 12,
|
|
17
|
+
key: "similarBought",
|
|
18
|
+
name: e("action-builder.similar-bought"),
|
|
19
|
+
path: "purchased-together"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
id: 13,
|
|
23
|
+
key: "userBased",
|
|
24
|
+
name: e("action-builder.user-based"),
|
|
25
|
+
path: "user-based"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
id: 36,
|
|
29
|
+
key: "highestDiscounted",
|
|
30
|
+
name: e("journey-builder.highest-discounted-items"),
|
|
31
|
+
path: "highest-discounted"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
id: 38,
|
|
35
|
+
key: "manualMerchandising",
|
|
36
|
+
name: e("action-builder.manual-merchandising"),
|
|
37
|
+
path: "manual-merchandising"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
id: 39,
|
|
41
|
+
key: "newArrivals",
|
|
42
|
+
name: e("action-builder.new-arrivals"),
|
|
43
|
+
path: "new-arrivals"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
id: 40,
|
|
47
|
+
key: "trendingProducts",
|
|
48
|
+
name: e("journey-builder.trending-products"),
|
|
49
|
+
path: "trending"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
id: 46,
|
|
53
|
+
key: "mostValuableOfPartner",
|
|
54
|
+
name: e("journey-builder.most-valuable-products"),
|
|
55
|
+
path: "most-valuable"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
id: 61,
|
|
59
|
+
key: "mostPopular",
|
|
60
|
+
name: e("journey-builder.most-popular-items"),
|
|
61
|
+
path: "most-popular"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
id: 62,
|
|
65
|
+
key: "mostPurchased",
|
|
66
|
+
name: e("action-builder.most-purchased"),
|
|
67
|
+
path: "top-sellers"
|
|
68
|
+
}
|
|
69
|
+
];
|
|
70
|
+
}, m = ["discount", "omnibus_price", "omnibus_discount", "price", "original_price"], p = [
|
|
17
71
|
{ text: "before the amount", value: "0" },
|
|
18
72
|
{ text: "after the amount", value: "1" }
|
|
19
|
-
],
|
|
73
|
+
], v = [
|
|
20
74
|
{ text: "dot(.)", value: "." },
|
|
21
75
|
{ text: "comma(,)", value: "," },
|
|
22
76
|
{ text: "space( )", value: " " }
|
|
23
|
-
],
|
|
77
|
+
], h = [
|
|
24
78
|
{ text: "0", value: "0" },
|
|
25
79
|
{ text: "1", value: "1" },
|
|
26
80
|
{ text: "2", value: "2" },
|
|
27
81
|
{ text: "3", value: "3" },
|
|
28
82
|
{ text: "4", value: "4" },
|
|
29
83
|
{ text: "5", value: "5" }
|
|
30
|
-
],
|
|
84
|
+
], a = "||", t = [
|
|
31
85
|
{ text: "is exactly", value: "=" },
|
|
32
86
|
{ text: "contains", value: "~" },
|
|
33
87
|
{ text: "does not contain", value: "!~" },
|
|
34
|
-
{ text: "any of", value:
|
|
35
|
-
],
|
|
88
|
+
{ text: "any of", value: a }
|
|
89
|
+
], n = [
|
|
36
90
|
{ text: "is exactly", value: "=" },
|
|
37
91
|
{ text: "is not exactly", value: "!==" },
|
|
38
92
|
{ text: "contains", value: "~" },
|
|
39
93
|
{ text: "does not contain", value: "!~" },
|
|
40
|
-
{ text: "any of", value:
|
|
41
|
-
],
|
|
94
|
+
{ text: "any of", value: a }
|
|
95
|
+
], o = [
|
|
42
96
|
{ text: "is equal to", value: "=" },
|
|
43
97
|
{ text: "is greater than", value: ">" },
|
|
44
98
|
{ text: "is less than", value: "<" }
|
|
45
|
-
],
|
|
99
|
+
], s = [
|
|
46
100
|
{ text: "is equal to", value: "=" },
|
|
47
101
|
{ text: "after", value: ">" },
|
|
48
102
|
{ text: "before", value: "<" }
|
|
49
|
-
],
|
|
103
|
+
], i = [
|
|
50
104
|
{ text: "true", value: "==" },
|
|
51
105
|
{ text: "false", value: "!=" }
|
|
52
|
-
],
|
|
53
|
-
if (!
|
|
54
|
-
return
|
|
55
|
-
switch (
|
|
106
|
+
], x = (e) => {
|
|
107
|
+
if (!e)
|
|
108
|
+
return t;
|
|
109
|
+
switch (e) {
|
|
56
110
|
case "Boolean":
|
|
57
|
-
return
|
|
111
|
+
return i;
|
|
58
112
|
case "Date":
|
|
59
|
-
return
|
|
113
|
+
return s;
|
|
60
114
|
case "Number":
|
|
61
|
-
return
|
|
115
|
+
return o;
|
|
62
116
|
case "String":
|
|
63
|
-
return
|
|
117
|
+
return t;
|
|
64
118
|
case "Strings":
|
|
65
|
-
return
|
|
119
|
+
return n;
|
|
66
120
|
default:
|
|
67
|
-
return
|
|
121
|
+
return t;
|
|
68
122
|
}
|
|
69
123
|
};
|
|
70
124
|
export {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
n as
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
125
|
+
a as OP_ANY_OF,
|
|
126
|
+
m as PriceAttributes,
|
|
127
|
+
c as QUERY_PARAMS,
|
|
128
|
+
l as URLS,
|
|
129
|
+
h as currencyDecimalCounts,
|
|
130
|
+
p as currencyLocationMaps,
|
|
131
|
+
v as currencyOperators,
|
|
132
|
+
x as getOperatorOptions,
|
|
133
|
+
d as getRecommendationFeedSourceMaps,
|
|
134
|
+
n as operatorOptionsForArrayOfStrings,
|
|
135
|
+
i as operatorOptionsForBooleans,
|
|
136
|
+
s as operatorOptionsForDates,
|
|
137
|
+
o as operatorOptionsForNumbers,
|
|
138
|
+
t as operatorOptionsForStrings
|
|
84
139
|
};
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
import { useTranslations as R } from "../composables/useTranslations.js";
|
|
2
|
-
import { ProductType as
|
|
2
|
+
import { ProductType as n } from "../@types/config/schemas.js";
|
|
3
3
|
import "../@types/config/defaults.js";
|
|
4
4
|
import { getEnvironmentPrefix as S } from "../utils/environmentUtil.js";
|
|
5
|
-
const
|
|
5
|
+
const i = {
|
|
6
6
|
UNSUBSCRIBE_LINK_TYPE: 1,
|
|
7
7
|
PREFERENCES_LINK_TYPE: 3
|
|
8
|
-
},
|
|
8
|
+
}, B = {
|
|
9
9
|
UNSUBSCRIBE_LINK_REGEX: /{{ins-unsubscribe-link}}/g,
|
|
10
10
|
DATA_OGSB_BUTTON_CSS_REGEX: "\\[data-ogsb\\]\\s*\\.es-button\\.es-button-[0-9]+\\s*\\{(?:[^\\}]*)\\}",
|
|
11
11
|
GLOBAL_UNSUBSCRIBE_LINK_REGEX: /{{ins-global-unsubscribe-link}}/g,
|
|
12
12
|
PREFERENCES_UNSUBSCRIBE_LINK_REGEX: /{{ins-preferences-unsubscribe-link}}/g
|
|
13
|
-
},
|
|
14
|
-
UNSUBSCRIBE_URL: `https://mail.${
|
|
15
|
-
PREFERENCES_URL: `https://mail.${
|
|
13
|
+
}, s = S(), C = {
|
|
14
|
+
UNSUBSCRIBE_URL: `https://mail.${s}.com/user/v1/unsub`,
|
|
15
|
+
PREFERENCES_URL: `https://mail.${s}.com/user/v1/prefs`
|
|
16
16
|
}, U = {
|
|
17
|
-
[
|
|
18
|
-
[
|
|
19
|
-
[
|
|
20
|
-
},
|
|
21
|
-
name: "
|
|
22
|
-
sendGridId:
|
|
23
|
-
},
|
|
17
|
+
[n.EMAIL]: "email",
|
|
18
|
+
[n.ARCHITECT]: "journey",
|
|
19
|
+
[n.UNSUBSCRIBE_PAGES]: "email"
|
|
20
|
+
}, o = "iid", r = "G", c = () => ({
|
|
21
|
+
name: R()("onboarding-center.email-subscribers-global-unsub-card-title"),
|
|
22
|
+
sendGridId: r
|
|
23
|
+
}), u = "/email/unsubscribe-pages", E = {
|
|
24
24
|
GLOBAL_UNSUBSCRIBE: 1,
|
|
25
25
|
GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE: 2,
|
|
26
26
|
SUBSCRIPTION_PREFERENCE_CENTER: 3,
|
|
27
27
|
SUBSCRIPTION_PREFERENCE_CONFIRMATION: 4,
|
|
28
28
|
RESUBSCRIBE: 5
|
|
29
|
-
},
|
|
29
|
+
}, b = {
|
|
30
30
|
[E.GLOBAL_UNSUBSCRIBE]: "custom-unsubscribe",
|
|
31
31
|
[E.SUBSCRIPTION_PREFERENCE_CENTER]: "custom-preferences"
|
|
32
32
|
}, T = {
|
|
@@ -39,7 +39,7 @@ const B = {
|
|
|
39
39
|
E.SUBSCRIPTION_PREFERENCE_CENTER,
|
|
40
40
|
E.SUBSCRIPTION_PREFERENCE_CONFIRMATION
|
|
41
41
|
]
|
|
42
|
-
},
|
|
42
|
+
}, P = () => {
|
|
43
43
|
const e = R();
|
|
44
44
|
return {
|
|
45
45
|
[E.GLOBAL_UNSUBSCRIBE]: e("unsubscription-preference.type-global-unsubscribe"),
|
|
@@ -48,22 +48,23 @@ const B = {
|
|
|
48
48
|
[E.SUBSCRIPTION_PREFERENCE_CENTER]: e("unsubscription-preference.type-subscription-preferences-center"),
|
|
49
49
|
[E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: e("unsubscription-preference.type-subscription-preferences-confirmation")
|
|
50
50
|
};
|
|
51
|
-
},
|
|
51
|
+
}, O = {
|
|
52
52
|
default: "{{ins-unsubscribe-link}}",
|
|
53
53
|
[E.GLOBAL_UNSUBSCRIBE]: "{{ins-global-unsubscribe-link}}",
|
|
54
54
|
[E.SUBSCRIPTION_PREFERENCE_CENTER]: "{{ins-preferences-unsubscribe-link}}"
|
|
55
55
|
};
|
|
56
56
|
export {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
57
|
+
r as DEFAULT_UNSUBSCRIBE_GROUP_SEND_GRID_ID,
|
|
58
|
+
o as INSIDER_ID,
|
|
59
|
+
B as LINK_REGEXES,
|
|
60
|
+
i as LINK_TYPES,
|
|
61
|
+
O as MERGE_TAGS,
|
|
62
62
|
E as PAGE_TYPES,
|
|
63
63
|
U as PRODUCT_TYPE_URL_SEGMENTS,
|
|
64
64
|
T as TYPE_COLLECTIONS,
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
u as UNSUBSCRIBE_PAGES_LINK,
|
|
66
|
+
b as UNSUBSCRIBE_SYNC_MODULE_TYPES,
|
|
67
67
|
C as URLS,
|
|
68
|
-
|
|
68
|
+
c as getDefaultUnsubscribeGroup,
|
|
69
|
+
P as getTypeTranslations
|
|
69
70
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var o = (
|
|
4
|
-
import { useHttp as
|
|
5
|
-
import {
|
|
6
|
-
import { Control as
|
|
7
|
-
const
|
|
8
|
-
class
|
|
1
|
+
var E = Object.defineProperty;
|
|
2
|
+
var d = (i, n, e) => n in i ? E(i, n, { enumerable: !0, configurable: !0, writable: !0, value: e }) : i[n] = e;
|
|
3
|
+
var o = (i, n, e) => d(i, typeof n != "symbol" ? n + "" : n, e);
|
|
4
|
+
import { useHttp as l } from "../../../composables/useHttp.js";
|
|
5
|
+
import { getDefaultUnsubscribeGroup as L, DEFAULT_UNSUBSCRIBE_GROUP_SEND_GRID_ID as h } from "../../../enums/unsubscribe.js";
|
|
6
|
+
import { Control as p, UIElementType as r, UEAttr as t, ModificationDescription as m } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
7
|
+
const b = "ui-elements-checkbox", u = "select", { get: C } = l();
|
|
8
|
+
class I extends p {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
11
|
o(this, "currentNode");
|
|
@@ -13,13 +13,13 @@ class S extends h {
|
|
|
13
13
|
o(this, "unsubList", []);
|
|
14
14
|
}
|
|
15
15
|
getId() {
|
|
16
|
-
return
|
|
16
|
+
return b;
|
|
17
17
|
}
|
|
18
18
|
_setFormValues() {
|
|
19
19
|
if (this.selectedUnsubGroup = "", this.currentNode && "getAttribute" in this.currentNode) {
|
|
20
20
|
const e = this.currentNode.getAttribute("id");
|
|
21
21
|
if (e) {
|
|
22
|
-
const s = e ===
|
|
22
|
+
const s = e === h ? e : Number(e);
|
|
23
23
|
s && (this.selectedUnsubGroup = s);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -29,18 +29,18 @@ class S extends h {
|
|
|
29
29
|
}
|
|
30
30
|
_getLabel(e, s = `${Math.random()}`) {
|
|
31
31
|
return `
|
|
32
|
-
<${
|
|
32
|
+
<${r.LABEL}
|
|
33
33
|
${t.LABEL.text}="${e}"
|
|
34
34
|
${t.LABEL.name}="${s}">
|
|
35
|
-
</${
|
|
35
|
+
</${r.LABEL}>
|
|
36
36
|
`;
|
|
37
37
|
}
|
|
38
38
|
_getSelectItem(e, s) {
|
|
39
39
|
return `
|
|
40
|
-
<${
|
|
40
|
+
<${r.SELECT_ITEM}
|
|
41
41
|
${t.SELECT_ITEM.text}="${e}"
|
|
42
42
|
${t.SELECT_ITEM.value}="${s}">
|
|
43
|
-
</${
|
|
43
|
+
</${r.SELECT_ITEM}>`;
|
|
44
44
|
}
|
|
45
45
|
_getSelect() {
|
|
46
46
|
return this.unsubList.map((e) => this._getSelectItem(e.name, e.sendGridId)).join("");
|
|
@@ -49,22 +49,22 @@ class S extends h {
|
|
|
49
49
|
return `
|
|
50
50
|
<div class="checkbox-controls-container">
|
|
51
51
|
<div class="checkbox-select-container container two-columns stretch">
|
|
52
|
-
<${
|
|
52
|
+
<${r.LABEL}
|
|
53
53
|
${t.LABEL.text}="${this.api.translate("Unsubscribe Group")}"
|
|
54
54
|
${t.LABEL.name}="${Math.random()}">
|
|
55
|
-
</${
|
|
55
|
+
</${r.LABEL}>
|
|
56
56
|
|
|
57
|
-
<${
|
|
57
|
+
<${r.SELECTPICKER}
|
|
58
58
|
${t.SELECTPICKER.name}="${u}"
|
|
59
59
|
${t.SELECTPICKER.placeholder}="${this.api.translate("Select Unsubscribe Group")}">
|
|
60
60
|
${this._getSelect()}
|
|
61
|
-
</${
|
|
61
|
+
</${r.SELECTPICKER}>
|
|
62
62
|
</div>
|
|
63
63
|
</div>
|
|
64
64
|
`;
|
|
65
65
|
}
|
|
66
66
|
_onSelectChange(e) {
|
|
67
|
-
this.currentNode && this.api.getDocumentModifier().modifyHtml(this.currentNode).setAttribute("id", e.toString()).apply(new
|
|
67
|
+
this.currentNode && this.api.getDocumentModifier().modifyHtml(this.currentNode).setAttribute("id", e.toString()).apply(new m(`Updated text to ${e}`));
|
|
68
68
|
}
|
|
69
69
|
_listenToFormUpdates() {
|
|
70
70
|
this.api.onValueChanged(u, (e) => this._onSelectChange(e));
|
|
@@ -76,18 +76,18 @@ class S extends h {
|
|
|
76
76
|
async onRender() {
|
|
77
77
|
const e = await C(
|
|
78
78
|
"/unsubscribe-groups/unsubscribe-list"
|
|
79
|
-
), s = [
|
|
79
|
+
), s = [L(), ...e.data], c = s.map((a) => ({
|
|
80
80
|
[t.SELECT_ITEM.text]: a.name,
|
|
81
81
|
[t.SELECT_ITEM.value]: a.sendGridId
|
|
82
82
|
}));
|
|
83
83
|
this.unsubList = s, this.api.setUIEAttribute(
|
|
84
84
|
u,
|
|
85
85
|
t.SELECTPICKER.items,
|
|
86
|
-
|
|
86
|
+
c
|
|
87
87
|
), this._setFormValues(), this._listenToFormUpdates();
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
export {
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
b as CHECKBOX_CONTROL_BLOCK_ID,
|
|
92
|
+
I as CheckboxControl
|
|
93
93
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var o = (r, n, t) =>
|
|
4
|
-
import { useHttp as
|
|
5
|
-
import {
|
|
6
|
-
import { Control as
|
|
7
|
-
const
|
|
8
|
-
class
|
|
1
|
+
var E = Object.defineProperty;
|
|
2
|
+
var d = (r, n, t) => n in r ? E(r, n, { enumerable: !0, configurable: !0, writable: !0, value: t }) : r[n] = t;
|
|
3
|
+
var o = (r, n, t) => d(r, typeof n != "symbol" ? n + "" : n, t);
|
|
4
|
+
import { useHttp as l } from "../../../composables/useHttp.js";
|
|
5
|
+
import { getDefaultUnsubscribeGroup as L, DEFAULT_UNSUBSCRIBE_GROUP_SEND_GRID_ID as p } from "../../../enums/unsubscribe.js";
|
|
6
|
+
import { Control as h, UIElementType as i, UEAttr as e, ModificationDescription as m } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
7
|
+
const b = "ui-elements-radio-button", u = "select", { get: $ } = l();
|
|
8
|
+
class I extends h {
|
|
9
9
|
constructor() {
|
|
10
10
|
super(...arguments);
|
|
11
11
|
o(this, "currentNode");
|
|
@@ -13,13 +13,13 @@ class S extends p {
|
|
|
13
13
|
o(this, "unsubList", []);
|
|
14
14
|
}
|
|
15
15
|
getId() {
|
|
16
|
-
return
|
|
16
|
+
return b;
|
|
17
17
|
}
|
|
18
18
|
_setFormValues() {
|
|
19
19
|
if (this.selectedUnsubGroup = "", this.currentNode && "getAttribute" in this.currentNode) {
|
|
20
20
|
const t = this.currentNode.getAttribute("id");
|
|
21
21
|
if (t) {
|
|
22
|
-
const s = t ===
|
|
22
|
+
const s = t === p ? t : Number(t);
|
|
23
23
|
s && (this.selectedUnsubGroup = s);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -64,7 +64,7 @@ class S extends p {
|
|
|
64
64
|
`;
|
|
65
65
|
}
|
|
66
66
|
_onSelectChange(t) {
|
|
67
|
-
this.currentNode && this.api.getDocumentModifier().modifyHtml(this.currentNode).setAttribute("id", t.toString()).apply(new
|
|
67
|
+
this.currentNode && this.api.getDocumentModifier().modifyHtml(this.currentNode).setAttribute("id", t.toString()).apply(new m(`Updated text to ${t}`));
|
|
68
68
|
}
|
|
69
69
|
_listenToFormUpdates() {
|
|
70
70
|
this.api.onValueChanged(u, (t) => this._onSelectChange(t));
|
|
@@ -76,18 +76,18 @@ class S extends p {
|
|
|
76
76
|
async onRender() {
|
|
77
77
|
const t = await $(
|
|
78
78
|
"/unsubscribe-groups/unsubscribe-list"
|
|
79
|
-
), s = [
|
|
79
|
+
), s = [L(), ...t.data], c = s.map((a) => ({
|
|
80
80
|
[e.SELECT_ITEM.text]: a.name,
|
|
81
81
|
[e.SELECT_ITEM.value]: a.sendGridId
|
|
82
82
|
}));
|
|
83
83
|
this.unsubList = s, this.api.setUIEAttribute(
|
|
84
84
|
u,
|
|
85
85
|
e.SELECTPICKER.items,
|
|
86
|
-
|
|
86
|
+
c
|
|
87
87
|
), this._setFormValues(), this._listenToFormUpdates();
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
export {
|
|
91
|
-
|
|
92
|
-
|
|
91
|
+
b as CONTROL_BLOCK_ID,
|
|
92
|
+
I as RadioButtonControl
|
|
93
93
|
};
|