@huyooo/ui 2.0.8 → 2.0.10
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/{AuthkitAppSetting-eXw1JiyT.js → AuthkitAppSetting-DoC2RJh7.js} +1 -1
- package/dist/{Contact-C5T90358.js → Contact-EqPBWd-E.js} +86 -86
- package/dist/{FeedbackModal.vue_vue_type_script_setup_true_lang-B3CA1z6v.js → FeedbackModal.vue_vue_type_script_setup_true_lang-hveEkBb4.js} +1 -1
- package/dist/{LandingPageLinkGroup-BZJ48Yss.js → LandingPageLinkGroup-C4iHX7Hz.js} +70 -65
- package/dist/{LandingPageSectionTabs-jRjkWlM-.js → LandingPageSectionTabs-BT08gT7_.js} +357 -357
- package/dist/{LegalDocViewer-Dxl4FngI.js → LegalDocViewer-DBr0x1ZE.js} +426 -410
- package/dist/{Logo-D7fyXyB-.js → Logo-B9DFBxDU.js} +1 -1
- package/dist/{ReferrerReferees-D4VEC8QJ.js → ReferrerReferees-CGrH-gYJ.js} +1 -1
- package/dist/{UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-BdibAudA.js → UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-QE1ARaXY.js} +195 -211
- package/dist/WidthContainer-Clc_WxY_.js +706 -0
- package/dist/authkit.js +3 -3
- package/dist/common.js +2 -2
- package/dist/components/Gradientbackground.vue.d.ts +1 -1
- package/dist/components/UserMenu/UserMenu.vue.d.ts +2 -2
- package/dist/composables/Authkit/useAppBrand.d.ts +7 -0
- package/dist/composables/Authkit/useAuthkitUsersProfile.d.ts +2 -0
- package/dist/composables.d.ts +1 -0
- package/dist/composables.js +36 -35
- package/dist/feedback.js +1 -1
- package/dist/landingPage.js +3 -3
- package/dist/main.js +234 -233
- package/dist/privateCom.js +1 -1
- package/dist/referrer.js +1 -1
- package/dist/style.css +1 -1
- package/dist/useAuthkitUsersProfile-8FzLTfUJ.js +55 -0
- package/dist/useRoutePermission-DYPZgvYv.js +247 -0
- package/dist/user.js +1 -1
- package/dist/utils/copyright.d.ts +1 -0
- package/package.json +1 -1
- package/dist/WidthContainer-AZl-9MdF.js +0 -717
- package/dist/components/UserMenu/parts/UserMenuAuthPlaceholder.vue.d.ts +0 -7
- package/dist/useAuthkitUsersProfile-CTd6PP-a.js +0 -50
- package/dist/useRoutePermission-B_g-WmDZ.js +0 -226
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ref as a, computed as l } from "vue";
|
|
2
|
+
import { g as c } from "./apiClients-Ctcq8NZs.js";
|
|
3
|
+
import { u as i } from "./useAuthkitAuth-cHrJMM8E.js";
|
|
4
|
+
const e = a(null), n = a(!1), u = a(!1), o = a(!1);
|
|
5
|
+
function v() {
|
|
6
|
+
o.value = !0;
|
|
7
|
+
}
|
|
8
|
+
function p(t) {
|
|
9
|
+
return t === 401 || t === 40101;
|
|
10
|
+
}
|
|
11
|
+
const d = l(() => !!e.value), h = l(() => {
|
|
12
|
+
if (!o.value || !u.value)
|
|
13
|
+
return "pending";
|
|
14
|
+
if (e.value)
|
|
15
|
+
return "authenticated";
|
|
16
|
+
const {
|
|
17
|
+
getToken: t
|
|
18
|
+
} = i();
|
|
19
|
+
return t() ? "authenticated" : "unauthenticated";
|
|
20
|
+
});
|
|
21
|
+
async function g() {
|
|
22
|
+
const {
|
|
23
|
+
getToken: t,
|
|
24
|
+
clearAuth: f
|
|
25
|
+
} = i();
|
|
26
|
+
if (!t()) {
|
|
27
|
+
e.value = null, u.value = !0;
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
n.value = !0, u.value = !1;
|
|
31
|
+
const {
|
|
32
|
+
data: s,
|
|
33
|
+
error: r
|
|
34
|
+
} = await c().auth.users.profile.post({});
|
|
35
|
+
n.value = !1, s ? e.value = s : p(r == null ? void 0 : r.code) && (e.value = null, console.warn("认证已过期,清除认证状态"), f()), u.value = !0;
|
|
36
|
+
}
|
|
37
|
+
function m() {
|
|
38
|
+
e.value = null, n.value = !1, u.value = !0;
|
|
39
|
+
}
|
|
40
|
+
function U() {
|
|
41
|
+
return {
|
|
42
|
+
userProfile: e,
|
|
43
|
+
loading: n,
|
|
44
|
+
usersProfileReady: u,
|
|
45
|
+
authSessionBootstrapped: o,
|
|
46
|
+
isLoggedIn: d,
|
|
47
|
+
authSessionState: h,
|
|
48
|
+
fetchUserProfile: g,
|
|
49
|
+
clearUserProfile: m,
|
|
50
|
+
markAuthSessionBootstrapped: v
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export {
|
|
54
|
+
U as u
|
|
55
|
+
};
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import { computed as g, ref as L, watch as S } from "vue";
|
|
2
|
+
import { useRouter as w, useRoute as C } from "vue-router";
|
|
3
|
+
import { u as k } from "./useAuthkitAppsAuthPageInfo-DZ1p-P3Q.js";
|
|
4
|
+
import { u as M } from "./useAuthkitUsersProfile-8FzLTfUJ.js";
|
|
5
|
+
import { u as K } from "./useAuthkitAuth-cHrJMM8E.js";
|
|
6
|
+
function O(e, s = "default") {
|
|
7
|
+
const n = document;
|
|
8
|
+
if (n && typeof n.startViewTransition == "function") {
|
|
9
|
+
const t = document.body;
|
|
10
|
+
t.classList.add(`vt-${s}`), n.startViewTransition(() => {
|
|
11
|
+
try {
|
|
12
|
+
e();
|
|
13
|
+
} catch {
|
|
14
|
+
}
|
|
15
|
+
}).finished.finally(() => {
|
|
16
|
+
t.classList.remove(`vt-${s}`);
|
|
17
|
+
});
|
|
18
|
+
} else
|
|
19
|
+
e();
|
|
20
|
+
}
|
|
21
|
+
function N() {
|
|
22
|
+
const {
|
|
23
|
+
appsData: e,
|
|
24
|
+
appsAuthPageInfoSuccess: s
|
|
25
|
+
} = k(), n = w(), t = g(() => s.value), f = g(() => t.value && e.value.applicationLogoUrl || ""), d = g(() => t.value && e.value.name || "");
|
|
26
|
+
function m() {
|
|
27
|
+
O(() => {
|
|
28
|
+
n.push("/"), window.scrollTo({
|
|
29
|
+
top: 0,
|
|
30
|
+
behavior: "smooth"
|
|
31
|
+
});
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
brandReady: t,
|
|
36
|
+
brandLogoUrl: f,
|
|
37
|
+
brandName: d,
|
|
38
|
+
navigateToAppHome: m
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const y = L({
|
|
42
|
+
key: "",
|
|
43
|
+
name: ""
|
|
44
|
+
});
|
|
45
|
+
function j() {
|
|
46
|
+
function e(s, n) {
|
|
47
|
+
y.value.key = s, y.value.name = n;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
activeDoc: y,
|
|
51
|
+
setActiveDoc: e
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
function W(e) {
|
|
55
|
+
const s = /* @__PURE__ */ new Set();
|
|
56
|
+
s.add(e);
|
|
57
|
+
const n = e.split("/").filter(Boolean);
|
|
58
|
+
for (let t = n.length - 1; t > 0; t--)
|
|
59
|
+
s.add(`/${n.slice(0, t).join("/")}`);
|
|
60
|
+
return [...s];
|
|
61
|
+
}
|
|
62
|
+
function A(e, s) {
|
|
63
|
+
const n = new Set(s);
|
|
64
|
+
return n.has("*") ? !0 : W(e).some((t) => n.has(t));
|
|
65
|
+
}
|
|
66
|
+
function $(e, s) {
|
|
67
|
+
const n = e.endsWith("/") ? e.slice(0, -1) : e;
|
|
68
|
+
return n === "" ? !1 : A(n, s) || s.some((t) => t === n ? !0 : t.startsWith(`${n}/`));
|
|
69
|
+
}
|
|
70
|
+
function T(e, s) {
|
|
71
|
+
return Array.isArray(e == null ? void 0 : e.menuTypes) ? e.menuTypes.includes(s) : !1;
|
|
72
|
+
}
|
|
73
|
+
function F(e, s, n) {
|
|
74
|
+
for (let t = e.length - 1; t >= 0; t--) {
|
|
75
|
+
const f = e[t];
|
|
76
|
+
if (T(f.meta, s))
|
|
77
|
+
return f.path;
|
|
78
|
+
}
|
|
79
|
+
return n;
|
|
80
|
+
}
|
|
81
|
+
function R(e) {
|
|
82
|
+
return e.split("?")[0].split("#")[0];
|
|
83
|
+
}
|
|
84
|
+
function H(e, s, n) {
|
|
85
|
+
const t = R(s), f = (n == null ? void 0 : n.returnParentOnChildMatch) ?? !1;
|
|
86
|
+
function d(o, p) {
|
|
87
|
+
for (const c of o) {
|
|
88
|
+
if (R(c.path) === p)
|
|
89
|
+
return c.path;
|
|
90
|
+
if (c.children && c.children.length > 0) {
|
|
91
|
+
const r = d(c.children, p);
|
|
92
|
+
if (r)
|
|
93
|
+
return f ? c.path : r;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
return null;
|
|
97
|
+
}
|
|
98
|
+
const m = d(e, t);
|
|
99
|
+
if (m)
|
|
100
|
+
return m;
|
|
101
|
+
for (const o of e) {
|
|
102
|
+
const p = R(o.path);
|
|
103
|
+
if (t.startsWith(p + "/") || t === p) {
|
|
104
|
+
if (o.children && o.children.length > 0)
|
|
105
|
+
for (const c of o.children) {
|
|
106
|
+
const v = R(c.path);
|
|
107
|
+
if (t.startsWith(v + "/") || t === v)
|
|
108
|
+
return f ? o.path : c.path;
|
|
109
|
+
}
|
|
110
|
+
return o.path;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
return n != null && n.fallback ? n.fallback(t) : t;
|
|
114
|
+
}
|
|
115
|
+
function q(e) {
|
|
116
|
+
const s = w(), {
|
|
117
|
+
appsData: n
|
|
118
|
+
} = k(), {
|
|
119
|
+
isLoggedIn: t,
|
|
120
|
+
userProfile: f
|
|
121
|
+
} = M(), d = g(() => {
|
|
122
|
+
var r;
|
|
123
|
+
return !t.value || !f.value ? [] : ((r = f.value.permissions) == null ? void 0 : r.map((u) => u.permissionKey)) || [];
|
|
124
|
+
});
|
|
125
|
+
function m(r) {
|
|
126
|
+
const u = (n.value.publicRoutes || []).map((l) => l.permissionKey);
|
|
127
|
+
return A(r, u);
|
|
128
|
+
}
|
|
129
|
+
function o(r) {
|
|
130
|
+
return t.value ? A(r, d.value) : !1;
|
|
131
|
+
}
|
|
132
|
+
function p(r) {
|
|
133
|
+
var u;
|
|
134
|
+
return {
|
|
135
|
+
path: r.path,
|
|
136
|
+
name: r.name,
|
|
137
|
+
meta: r.meta,
|
|
138
|
+
children: (u = r.children) == null ? void 0 : u.map((l) => p(l))
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
function c(r, u) {
|
|
142
|
+
const l = [];
|
|
143
|
+
for (const a of r) {
|
|
144
|
+
if (a.path === "/" || a.path === "/:catchAll(.*)")
|
|
145
|
+
continue;
|
|
146
|
+
const i = a.meta;
|
|
147
|
+
if (T(i, u)) {
|
|
148
|
+
const P = a.path;
|
|
149
|
+
if (m(P) || $(P, d.value)) {
|
|
150
|
+
const h = {
|
|
151
|
+
name: (i == null ? void 0 : i.menuName) || (i == null ? void 0 : i.title) || (typeof a.name == "string" ? a.name : a.path),
|
|
152
|
+
path: a.path,
|
|
153
|
+
icon: (i == null ? void 0 : i.menuIcon) || (i == null ? void 0 : i.icon),
|
|
154
|
+
description: (i == null ? void 0 : i.menuDescription) || (i == null ? void 0 : i.description),
|
|
155
|
+
hidden: i == null ? void 0 : i.hidden
|
|
156
|
+
};
|
|
157
|
+
if (a.children && a.children.length > 0) {
|
|
158
|
+
const b = c(a.children, u);
|
|
159
|
+
b.length > 0 && (h.children = b);
|
|
160
|
+
}
|
|
161
|
+
l.push(h);
|
|
162
|
+
}
|
|
163
|
+
} else if (a.children && a.children.length > 0) {
|
|
164
|
+
const P = c(a.children, u);
|
|
165
|
+
l.push(...P);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
return l;
|
|
169
|
+
}
|
|
170
|
+
return {
|
|
171
|
+
menus: g(() => {
|
|
172
|
+
if (!e)
|
|
173
|
+
return [];
|
|
174
|
+
const r = s.getRoutes(), u = r.find((h) => h.path === "/"), l = u != null && u.children ? u.children.map((h) => p(h)) : [], a = new Set(l.map((h) => h.path)), P = r.filter((h) => h.path === "/" || h.path === "/:catchAll(.*)" || a.has(h.path) ? !1 : h.path.split("/").filter((D) => D).length === 1).map(p), I = [...l, ...P];
|
|
175
|
+
return c(I, e);
|
|
176
|
+
}),
|
|
177
|
+
isRoutePublic: m,
|
|
178
|
+
hasPermission: (r) => m(r) ? !0 : o(r),
|
|
179
|
+
isLoggedIn: t
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
function E() {
|
|
183
|
+
const e = w(), s = C(), {
|
|
184
|
+
appsData: n,
|
|
185
|
+
appsAuthPageInfoSuccess: t
|
|
186
|
+
} = k(), {
|
|
187
|
+
userProfile: f,
|
|
188
|
+
isLoggedIn: d,
|
|
189
|
+
usersProfileReady: m
|
|
190
|
+
} = M(), o = L(!1);
|
|
191
|
+
function p(r) {
|
|
192
|
+
const u = n.value.publicRoutes || [];
|
|
193
|
+
return A(r, u.map((l) => l.permissionKey));
|
|
194
|
+
}
|
|
195
|
+
function c(r) {
|
|
196
|
+
var l;
|
|
197
|
+
if (!d.value || !f.value)
|
|
198
|
+
return !1;
|
|
199
|
+
const u = ((l = f.value.permissions) == null ? void 0 : l.map((a) => a.permissionKey)) || [];
|
|
200
|
+
return A(r, u);
|
|
201
|
+
}
|
|
202
|
+
function v(r) {
|
|
203
|
+
if (!t.value) {
|
|
204
|
+
o.value = !0;
|
|
205
|
+
return;
|
|
206
|
+
}
|
|
207
|
+
if (o.value = !0, p(r)) {
|
|
208
|
+
o.value = !1;
|
|
209
|
+
return;
|
|
210
|
+
}
|
|
211
|
+
if (!m.value) {
|
|
212
|
+
o.value = !0;
|
|
213
|
+
return;
|
|
214
|
+
}
|
|
215
|
+
if (!d.value) {
|
|
216
|
+
const {
|
|
217
|
+
getToken: u
|
|
218
|
+
} = K();
|
|
219
|
+
if (u()) {
|
|
220
|
+
o.value = !0;
|
|
221
|
+
return;
|
|
222
|
+
}
|
|
223
|
+
e.replace("/"), o.value = !1;
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
c(r) || e.replace("/"), o.value = !1;
|
|
227
|
+
}
|
|
228
|
+
return S([() => s.path, t, m, d], () => {
|
|
229
|
+
v(s.path);
|
|
230
|
+
}, {
|
|
231
|
+
immediate: !0
|
|
232
|
+
}), {
|
|
233
|
+
isChecking: o,
|
|
234
|
+
isRoutePublic: p,
|
|
235
|
+
hasPermission: c
|
|
236
|
+
};
|
|
237
|
+
}
|
|
238
|
+
export {
|
|
239
|
+
F as a,
|
|
240
|
+
N as b,
|
|
241
|
+
q as c,
|
|
242
|
+
E as d,
|
|
243
|
+
H as f,
|
|
244
|
+
R as g,
|
|
245
|
+
j as u,
|
|
246
|
+
O as w
|
|
247
|
+
};
|
package/dist/user.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { U as a, a as n, b as r, c as t, d as U, _ as u, e as i, f as M, g as o, h as m, i as I, j as c, k as d, l as b, m as f } from "./UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-
|
|
1
|
+
import { U as a, a as n, b as r, c as t, d as U, _ as u, e as i, f as M, g as o, h as m, i as I, j as c, k as d, l as b, m as f } from "./UserMenuInvitationsItem.vue_vue_type_script_setup_true_lang-QE1ARaXY.js";
|
|
2
2
|
export {
|
|
3
3
|
a as UserAccountMenu,
|
|
4
4
|
n as UserAvatar,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function formatCopyright(company: string, startYear: number, currentYear?: number): string;
|