@zerohash-sdk/fiat-account-link-react 1.6.1 → 1.6.2
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/index.js +138 -128
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,43 +1,6 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
const
|
|
4
|
-
evergreen: "#00381D",
|
|
5
|
-
green: "#CCFFD0",
|
|
6
|
-
offBlack: "#1C1B1C",
|
|
7
|
-
grayLight: "#EBEBE9"
|
|
8
|
-
}, D = ({ onRetry: e }) => U("div", { role: "alert", style: {
|
|
9
|
-
display: "flex",
|
|
10
|
-
flexDirection: "column",
|
|
11
|
-
alignItems: "center",
|
|
12
|
-
gap: "8px",
|
|
13
|
-
maxWidth: "360px",
|
|
14
|
-
margin: "0 auto",
|
|
15
|
-
padding: "32px 24px",
|
|
16
|
-
textAlign: "center",
|
|
17
|
-
fontFamily: "inherit",
|
|
18
|
-
color: b.offBlack,
|
|
19
|
-
background: "#FFFFFF",
|
|
20
|
-
border: `1px solid ${b.grayLight}`,
|
|
21
|
-
borderRadius: "12px"
|
|
22
|
-
}, children: [h("svg", { width: "32", height: "32", viewBox: "0 0 24 24", fill: "none", "aria-hidden": "true", children: h("path", { d: "M12 9v4m0 4h.01M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z", stroke: b.evergreen, strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }), h("p", { style: { margin: 0, fontSize: "16px", fontWeight: 600 }, children: "Something went wrong" }), h("p", { style: { margin: 0, fontSize: "14px", opacity: 0.75 }, children: "We couldn't load this content. Please check your internet connection and try again." }), h("button", { type: "button", onClick: e, style: {
|
|
23
|
-
marginTop: "8px",
|
|
24
|
-
padding: "8px 20px",
|
|
25
|
-
fontSize: "14px",
|
|
26
|
-
fontWeight: 600,
|
|
27
|
-
fontFamily: "inherit",
|
|
28
|
-
color: b.green,
|
|
29
|
-
background: b.evergreen,
|
|
30
|
-
border: "none",
|
|
31
|
-
borderRadius: "8px",
|
|
32
|
-
cursor: "pointer"
|
|
33
|
-
}, children: "Try again" })] }), V = (e, t) => {
|
|
34
|
-
B(() => {
|
|
35
|
-
const o = e.current;
|
|
36
|
-
if (o)
|
|
37
|
-
for (const [n, r] of Object.entries(t))
|
|
38
|
-
r !== void 0 && (o[n] = r);
|
|
39
|
-
});
|
|
40
|
-
}, P = {
|
|
1
|
+
import { jsxs as W, jsx as y } from "react/jsx-runtime";
|
|
2
|
+
import j, { useEffect as B, useState as L, useCallback as D, useRef as M } from "react";
|
|
3
|
+
const $ = {
|
|
41
4
|
dev: "https://grafana-faro-collector.dev.0hash.com/collect",
|
|
42
5
|
cert: "https://grafana-faro-collector.cert.zerohash.com/collect",
|
|
43
6
|
prod: "https://grafana-faro-collector.zerohash.com/collect",
|
|
@@ -45,55 +8,55 @@ const b = {
|
|
|
45
8
|
"eu-prod": "https://grafana-faro-collector.zerohash.eu/collect",
|
|
46
9
|
sandbox: "https://grafana-faro-collector.cert.zerohash.com/collect",
|
|
47
10
|
production: "https://grafana-faro-collector.zerohash.com/collect"
|
|
48
|
-
},
|
|
11
|
+
}, V = (e) => {
|
|
49
12
|
if (!e || typeof e != "string")
|
|
50
13
|
return null;
|
|
51
14
|
const t = e.split(".");
|
|
52
15
|
if (t.length < 2)
|
|
53
16
|
return null;
|
|
54
17
|
try {
|
|
55
|
-
const o = t[1].replace(/-/g, "+").replace(/_/g, "/"),
|
|
18
|
+
const o = t[1].replace(/-/g, "+").replace(/_/g, "/"), r = o + "===".slice(0, (4 - o.length % 4) % 4), a = typeof atob < "u" ? atob(r) : Buffer.from(r, "base64").toString("utf-8"), c = JSON.parse(a)?.payload?.region;
|
|
56
19
|
if (typeof c != "string")
|
|
57
20
|
return null;
|
|
58
|
-
const
|
|
59
|
-
return
|
|
21
|
+
const n = c.toLowerCase();
|
|
22
|
+
return n === "us" || n === "eu" ? n : null;
|
|
60
23
|
} catch {
|
|
61
24
|
return null;
|
|
62
25
|
}
|
|
63
|
-
}, I = (e, t) =>
|
|
26
|
+
}, I = (e, t) => V(t) !== "eu" ? e : e === "cert" ? "eu-cert" : e === "prod" ? "eu-prod" : e, P = (e) => {
|
|
64
27
|
if (!e || typeof e != "string")
|
|
65
28
|
return {};
|
|
66
29
|
const t = e.split(".");
|
|
67
30
|
if (t.length < 2)
|
|
68
31
|
return {};
|
|
69
32
|
try {
|
|
70
|
-
const o = t[1].replace(/-/g, "+").replace(/_/g, "/"),
|
|
33
|
+
const o = t[1].replace(/-/g, "+").replace(/_/g, "/"), r = o + "===".slice(0, (4 - o.length % 4) % 4), a = typeof atob < "u" ? atob(r) : Buffer.from(r, "base64").toString("utf-8"), i = JSON.parse(a), c = i?.payload ?? {}, n = (s) => typeof s == "string" && s.length > 0 ? s : void 0;
|
|
71
34
|
return {
|
|
72
|
-
participantCode:
|
|
73
|
-
platformName:
|
|
74
|
-
platformCode:
|
|
75
|
-
region:
|
|
35
|
+
participantCode: n(c.participant_code),
|
|
36
|
+
platformName: n(c.platform_name),
|
|
37
|
+
platformCode: n(i.platform_code),
|
|
38
|
+
region: n(c.region)
|
|
76
39
|
};
|
|
77
40
|
} catch {
|
|
78
41
|
return {};
|
|
79
42
|
}
|
|
80
|
-
},
|
|
81
|
-
const
|
|
82
|
-
return e[
|
|
83
|
-
},
|
|
84
|
-
const
|
|
85
|
-
return e[
|
|
86
|
-
},
|
|
43
|
+
}, z = (e, t, o) => {
|
|
44
|
+
const r = I(t, o);
|
|
45
|
+
return e[r] ?? e[t] ?? e.prod;
|
|
46
|
+
}, J = (e, t, o) => {
|
|
47
|
+
const r = I(t, o);
|
|
48
|
+
return e[r] ?? e[t];
|
|
49
|
+
}, x = () => {
|
|
87
50
|
}, H = () => {
|
|
88
51
|
const e = new Uint8Array(8);
|
|
89
52
|
return globalThis.crypto.getRandomValues(e), Array.from(e, (t) => t.toString(16).padStart(2, "0")).join("");
|
|
90
|
-
},
|
|
91
|
-
const o = H(),
|
|
92
|
-
e.claims.participantCode && (
|
|
53
|
+
}, K = (e, t) => {
|
|
54
|
+
const o = H(), r = globalThis.__ZH_WEB_SDK_VERSION__, a = {};
|
|
55
|
+
e.claims.participantCode && (a.participant_code = e.claims.participantCode), e.claims.platformName && (a.platform_name = e.claims.platformName), e.claims.platformCode && (a.platform_code = e.claims.platformCode), e.claims.region && (a.region = e.claims.region), r && (a.zh_web_sdk_version = r);
|
|
93
56
|
const i = {
|
|
94
57
|
meta: {
|
|
95
58
|
app: { name: e.appName, version: t ?? "unknown", environment: e.env },
|
|
96
|
-
session: { id: o, attributes:
|
|
59
|
+
session: { id: o, attributes: a },
|
|
97
60
|
browser: typeof navigator < "u" ? { userAgent: navigator.userAgent } : void 0,
|
|
98
61
|
page: typeof window < "u" ? { url: window.location.origin } : void 0
|
|
99
62
|
},
|
|
@@ -113,121 +76,168 @@ const b = {
|
|
|
113
76
|
]
|
|
114
77
|
};
|
|
115
78
|
return { sessionId: o, payload: i };
|
|
116
|
-
},
|
|
79
|
+
}, G = (e, t, o) => {
|
|
117
80
|
if (!e || typeof fetch > "u")
|
|
118
81
|
return;
|
|
119
|
-
const { sessionId:
|
|
82
|
+
const { sessionId: r, payload: a } = K(t, o);
|
|
120
83
|
try {
|
|
121
84
|
fetch(e, {
|
|
122
85
|
method: "POST",
|
|
123
|
-
headers: { "Content-Type": "application/json", "x-faro-session-id":
|
|
124
|
-
body: JSON.stringify(
|
|
86
|
+
headers: { "Content-Type": "application/json", "x-faro-session-id": r },
|
|
87
|
+
body: JSON.stringify(a),
|
|
125
88
|
keepalive: !0
|
|
126
89
|
}).catch(() => {
|
|
127
90
|
});
|
|
128
91
|
} catch {
|
|
129
92
|
}
|
|
130
|
-
},
|
|
131
|
-
const { webComponentTag: t, appName: o, appVersion:
|
|
93
|
+
}, Z = (e) => {
|
|
94
|
+
const { webComponentTag: t, appName: o, appVersion: r, scriptUrls: a, fallbackScriptUrls: i, collectorUrls: c, env: n, jwt: s, timeoutMs: u = 15e3, onLoad: _, onError: m } = e;
|
|
132
95
|
if (typeof document > "u")
|
|
133
|
-
return
|
|
134
|
-
const
|
|
135
|
-
if (customElements.get(t) || document.getElementById(
|
|
136
|
-
return
|
|
137
|
-
const
|
|
138
|
-
let
|
|
139
|
-
const
|
|
140
|
-
|
|
141
|
-
},
|
|
142
|
-
if (
|
|
96
|
+
return x;
|
|
97
|
+
const g = `${t}-script-${n}`;
|
|
98
|
+
if (customElements.get(t) || document.getElementById(g))
|
|
99
|
+
return x;
|
|
100
|
+
const S = P(s), k = e.report ?? ((d) => G(c && J(c, n, s), d, r));
|
|
101
|
+
let f = !1, w = 0, v;
|
|
102
|
+
const R = () => {
|
|
103
|
+
v !== void 0 && clearTimeout(v);
|
|
104
|
+
}, C = (d, h, l) => {
|
|
105
|
+
if (f)
|
|
143
106
|
return;
|
|
144
|
-
const
|
|
107
|
+
const U = Math.round(performance.now() - w), T = {
|
|
145
108
|
webComponentTag: t,
|
|
146
109
|
appName: o,
|
|
147
|
-
env:
|
|
148
|
-
scriptUrl:
|
|
110
|
+
env: n,
|
|
111
|
+
scriptUrl: h,
|
|
149
112
|
reason: d,
|
|
150
113
|
triedFallback: l,
|
|
151
|
-
elapsedMs:
|
|
152
|
-
claims:
|
|
114
|
+
elapsedMs: U,
|
|
115
|
+
claims: S
|
|
153
116
|
};
|
|
154
|
-
|
|
155
|
-
const
|
|
156
|
-
if (
|
|
157
|
-
O
|
|
117
|
+
k(T);
|
|
118
|
+
const O = l ? void 0 : z(i ?? {}, n, s);
|
|
119
|
+
if (O && O !== h) {
|
|
120
|
+
E(O, !0);
|
|
158
121
|
return;
|
|
159
122
|
}
|
|
160
|
-
|
|
161
|
-
},
|
|
162
|
-
|
|
123
|
+
f = !0, R(), document.getElementById(g)?.remove(), m?.(T);
|
|
124
|
+
}, E = (d, h) => {
|
|
125
|
+
R(), w = performance.now();
|
|
163
126
|
const l = document.createElement("script");
|
|
164
|
-
l.id =
|
|
127
|
+
l.id = g, l.src = d, l.type = "module", l.async = !0, l.onload = () => {
|
|
165
128
|
setTimeout(() => {
|
|
166
|
-
|
|
129
|
+
f || (customElements.get(t) ? (f = !0, R(), _?.()) : C("not-defined", d, h));
|
|
167
130
|
}, 0);
|
|
168
|
-
}, l.onerror = () =>
|
|
169
|
-
},
|
|
170
|
-
return
|
|
171
|
-
|
|
172
|
-
}) :
|
|
131
|
+
}, l.onerror = () => C("network", d, h), v = setTimeout(() => C("timeout", d, h), u), document.getElementById(g)?.remove(), document.head.appendChild(l);
|
|
132
|
+
}, N = z(a, n, s);
|
|
133
|
+
return N ? (E(N, !1), () => {
|
|
134
|
+
f = !0, R();
|
|
135
|
+
}) : x;
|
|
136
|
+
}, p = {
|
|
137
|
+
local: "http://localhost:5173",
|
|
138
|
+
dev: "https://sdk-cdn.dev.0hash.com",
|
|
139
|
+
cert: "https://sdk-cdn.cert.zerohash.com",
|
|
140
|
+
prod: "https://sdk-cdn.zerohash.com",
|
|
141
|
+
"eu-cert": "https://sdk-cdn.cert.zerohash.eu",
|
|
142
|
+
"eu-prod": "https://sdk-cdn.zerohash.eu"
|
|
143
|
+
}, q = (e, t, o = {}) => {
|
|
144
|
+
const { eu: r = !1, legacyAliases: a = !1, local: i = p.local } = o, c = (s) => `${s}/${e}/${t}`, n = {
|
|
145
|
+
local: c(i),
|
|
146
|
+
dev: c(p.dev),
|
|
147
|
+
cert: c(p.cert),
|
|
148
|
+
prod: c(p.prod)
|
|
149
|
+
};
|
|
150
|
+
return a && (n.sandbox = c(p.cert), n.production = c(p.prod)), r && (n["eu-cert"] = c(p["eu-cert"]), n["eu-prod"] = c(p["eu-prod"])), n;
|
|
173
151
|
};
|
|
174
152
|
var F;
|
|
175
153
|
(function(e) {
|
|
176
154
|
e.NETWORK_ERROR = "network_error", e.AUTH_ERROR = "auth_error", e.NOT_FOUND_ERROR = "not_found_error", e.VALIDATION_ERROR = "validation_error", e.SERVER_ERROR = "server_error", e.CLIENT_ERROR = "client_error", e.UNKNOWN_ERROR = "unknown_error";
|
|
177
155
|
})(F || (F = {}));
|
|
178
|
-
const
|
|
179
|
-
|
|
180
|
-
|
|
156
|
+
const b = {
|
|
157
|
+
evergreen: "#00381D",
|
|
158
|
+
green: "#CCFFD0",
|
|
159
|
+
offBlack: "#1C1B1C",
|
|
160
|
+
grayLight: "#EBEBE9"
|
|
161
|
+
}, Q = ({ onRetry: e }) => W("div", { role: "alert", style: {
|
|
162
|
+
display: "flex",
|
|
163
|
+
flexDirection: "column",
|
|
164
|
+
alignItems: "center",
|
|
165
|
+
gap: "8px",
|
|
166
|
+
maxWidth: "360px",
|
|
167
|
+
margin: "0 auto",
|
|
168
|
+
padding: "32px 24px",
|
|
169
|
+
textAlign: "center",
|
|
170
|
+
fontFamily: "inherit",
|
|
171
|
+
color: b.offBlack,
|
|
172
|
+
background: "#FFFFFF",
|
|
173
|
+
border: `1px solid ${b.grayLight}`,
|
|
174
|
+
borderRadius: "12px"
|
|
175
|
+
}, children: [y("svg", { width: "32", height: "32", viewBox: "0 0 24 24", fill: "none", "aria-hidden": "true", children: y("path", { d: "M12 9v4m0 4h.01M10.29 3.86L1.82 18a2 2 0 001.71 3h16.94a2 2 0 001.71-3L13.71 3.86a2 2 0 00-3.42 0z", stroke: b.evergreen, strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }), y("p", { style: { margin: 0, fontSize: "16px", fontWeight: 600 }, children: "Something went wrong" }), y("p", { style: { margin: 0, fontSize: "14px", opacity: 0.75 }, children: "We couldn't load this content. Please check your internet connection and try again." }), y("button", { type: "button", onClick: e, style: {
|
|
176
|
+
marginTop: "8px",
|
|
177
|
+
padding: "8px 20px",
|
|
178
|
+
fontSize: "14px",
|
|
179
|
+
fontWeight: 600,
|
|
180
|
+
fontFamily: "inherit",
|
|
181
|
+
color: b.green,
|
|
182
|
+
background: b.evergreen,
|
|
183
|
+
border: "none",
|
|
184
|
+
borderRadius: "8px",
|
|
185
|
+
cursor: "pointer"
|
|
186
|
+
}, children: "Try again" })] }), X = (e, t) => {
|
|
187
|
+
B(() => {
|
|
188
|
+
const o = e.current;
|
|
189
|
+
if (o)
|
|
190
|
+
for (const [r, a] of Object.entries(t))
|
|
191
|
+
a !== void 0 && (o[r] = a);
|
|
192
|
+
});
|
|
193
|
+
}, Y = (e) => {
|
|
194
|
+
const { webComponentTag: t, appName: o, appVersion: r, scriptUrls: a, fallbackScriptUrls: i, collectorUrls: c, env: n, jwt: s, timeoutMs: u } = e, [_, m] = L(!1), [g, S] = L(0);
|
|
195
|
+
B(() => (m(!1), Z({
|
|
181
196
|
webComponentTag: t,
|
|
182
197
|
appName: o ?? t,
|
|
183
|
-
appVersion:
|
|
184
|
-
scriptUrls:
|
|
198
|
+
appVersion: r,
|
|
199
|
+
scriptUrls: a,
|
|
185
200
|
fallbackScriptUrls: i,
|
|
186
|
-
collectorUrls: c ??
|
|
187
|
-
env:
|
|
201
|
+
collectorUrls: c ?? $,
|
|
202
|
+
env: n,
|
|
188
203
|
jwt: s,
|
|
189
|
-
timeoutMs:
|
|
190
|
-
onError: () =>
|
|
204
|
+
timeoutMs: u,
|
|
205
|
+
onError: () => m(!0)
|
|
191
206
|
})), [
|
|
192
207
|
t,
|
|
193
208
|
o,
|
|
194
|
-
n,
|
|
195
209
|
r,
|
|
210
|
+
a,
|
|
196
211
|
i,
|
|
197
212
|
c,
|
|
198
|
-
|
|
213
|
+
n,
|
|
199
214
|
s,
|
|
200
|
-
|
|
201
|
-
|
|
215
|
+
u,
|
|
216
|
+
g
|
|
202
217
|
]);
|
|
203
|
-
const
|
|
204
|
-
return { loadFailed:
|
|
205
|
-
},
|
|
206
|
-
local: "http://localhost:4208/fiat-account-link-web/index.js",
|
|
207
|
-
dev: "https://connect-sdk.dev.0hash.com/fiat-account-link-web/index.js",
|
|
208
|
-
cert: "https://sdk.sandbox.connect.xyz/fiat-account-link-web/index.js",
|
|
209
|
-
prod: "https://sdk.connect.xyz/fiat-account-link-web/index.js"
|
|
210
|
-
}, z = "zerohash-fiat-account-link", te = ({
|
|
218
|
+
const k = D(() => S((f) => f + 1), []);
|
|
219
|
+
return { loadFailed: _, retry: k };
|
|
220
|
+
}, ee = q("fiat-account-link-web", "index.js", { local: "http://localhost:4208" }), A = "zerohash-fiat-account-link", re = ({
|
|
211
221
|
jwt: e,
|
|
212
222
|
env: t = "prod",
|
|
213
223
|
theme: o,
|
|
214
|
-
onCompleted:
|
|
215
|
-
onError:
|
|
224
|
+
onCompleted: r,
|
|
225
|
+
onError: a,
|
|
216
226
|
onClose: i,
|
|
217
227
|
onLoaded: c,
|
|
218
|
-
onEvent:
|
|
228
|
+
onEvent: n,
|
|
219
229
|
...s
|
|
220
230
|
}) => {
|
|
221
|
-
const
|
|
222
|
-
|
|
223
|
-
const { loadFailed:
|
|
224
|
-
webComponentTag:
|
|
225
|
-
scriptUrls:
|
|
231
|
+
const u = M(null);
|
|
232
|
+
X(u, { theme: o, onCompleted: r, onError: a, onClose: i, onLoaded: c, onEvent: n });
|
|
233
|
+
const { loadFailed: _, retry: m } = Y({
|
|
234
|
+
webComponentTag: A,
|
|
235
|
+
scriptUrls: ee,
|
|
226
236
|
env: t,
|
|
227
237
|
jwt: e
|
|
228
238
|
});
|
|
229
|
-
return
|
|
230
|
-
ref:
|
|
239
|
+
return _ ? /* @__PURE__ */ y(Q, { onRetry: m }) : j.createElement(A, {
|
|
240
|
+
ref: u,
|
|
231
241
|
jwt: e,
|
|
232
242
|
env: t,
|
|
233
243
|
theme: o,
|
|
@@ -235,5 +245,5 @@ const Q = (e) => {
|
|
|
235
245
|
});
|
|
236
246
|
};
|
|
237
247
|
export {
|
|
238
|
-
|
|
248
|
+
re as FiatAccountLink
|
|
239
249
|
};
|