@das-fed/utils 7.0.7-hot.6 → 7.0.7-hot.7
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/api-services/modules/enterpriseright/index.js +725 -743
- package/api-services/modules/enterpriseright/index.js.gz +0 -0
- package/api-services/modules/gateway-edge/index.js +743 -725
- package/api-services/modules/gateway-edge/index.js.gz +0 -0
- package/api-services/modules/justauth/index.js +744 -726
- package/api-services/modules/justauth/index.js.gz +0 -0
- package/api-services/modules/knowledge/index.js +743 -725
- package/api-services/modules/knowledge/index.js.gz +0 -0
- package/api-services/modules/space-manage/index.js +725 -743
- package/api-services/modules/space-manage/index.js.gz +0 -0
- package/api-services/modules/supplier/index.js +729 -743
- package/api-services/modules/supplier/index.js.gz +0 -0
- package/api-services/modules/systemConfiguration/index.js +725 -743
- package/api-services/modules/systemConfiguration/index.js.gz +0 -0
- package/api-services/modules/tool/index.js +725 -743
- package/api-services/modules/tool/index.js.gz +0 -0
- package/api-services/src/create-service/index.js +699 -717
- package/api-services/src/create-service/index.js.gz +0 -0
- package/common-tools/get-url-params/index.d.ts +7 -0
- package/common-tools/get-url-params/index.js +45 -38
- package/common-tools/get-url-params/index.js.gz +0 -0
- package/create-api-service/sso/index.js +328 -327
- package/create-api-service/sso/index.js.gz +0 -0
- package/esm-map.json +2 -1
- package/package.json +4 -4
|
Binary file
|
|
@@ -38,6 +38,13 @@ export declare const objectToUrlparams: (params: any) => string;
|
|
|
38
38
|
* @returns
|
|
39
39
|
*/
|
|
40
40
|
export declare const addPathParamsToUrl: (url: string, pathParams: string[]) => any;
|
|
41
|
+
/**
|
|
42
|
+
* 给url拼接query参数
|
|
43
|
+
* @param url 路径
|
|
44
|
+
* @param params 参数,object
|
|
45
|
+
* @returns
|
|
46
|
+
*/
|
|
47
|
+
export declare function appendQueryParams(url: string, params: Record<string, any>): any;
|
|
41
48
|
/**
|
|
42
49
|
* 从URL中获取origin
|
|
43
50
|
* @param url url
|
|
@@ -1,63 +1,70 @@
|
|
|
1
|
-
const
|
|
1
|
+
const l = (r, s) => {
|
|
2
2
|
let e = window.location.search || "";
|
|
3
|
-
if (
|
|
4
|
-
const t =
|
|
5
|
-
t !== -1 ? e =
|
|
3
|
+
if (r && r !== location.href) {
|
|
4
|
+
const t = r.indexOf("?");
|
|
5
|
+
t !== -1 ? e = r.slice(t) : e = "";
|
|
6
6
|
}
|
|
7
|
-
const
|
|
7
|
+
const n = new URLSearchParams(e);
|
|
8
8
|
if (s)
|
|
9
|
-
return
|
|
9
|
+
return n.get(s);
|
|
10
10
|
{
|
|
11
11
|
let t = {};
|
|
12
|
-
for (let [o,
|
|
13
|
-
t[o] =
|
|
12
|
+
for (let [o, a] of n.entries())
|
|
13
|
+
t[o] = a;
|
|
14
14
|
return t;
|
|
15
15
|
}
|
|
16
|
-
}, f = (
|
|
17
|
-
let e = "",
|
|
16
|
+
}, f = (r, s = {}) => {
|
|
17
|
+
let e = "", n = "";
|
|
18
18
|
const t = Object.keys(s);
|
|
19
|
-
return t && t.length && t.forEach((o,
|
|
20
|
-
|
|
21
|
-
}),
|
|
22
|
-
}, h = (
|
|
23
|
-
const e = s || location.href,
|
|
19
|
+
return t && t.length && t.forEach((o, a) => {
|
|
20
|
+
a === t.length - 1 ? n += `${o}=${s[o]}` : n += `${o}=${s[o]}&`;
|
|
21
|
+
}), n ? e = location.origin + r + `?${n}` : e = location.origin + r, e;
|
|
22
|
+
}, h = (r, s) => {
|
|
23
|
+
const e = s || location.href, n = l(e), t = Object.keys(n) || [];
|
|
24
24
|
if (!t || !t.length) return e.includes("?") ? e.split("?")[0] : e.split("&")[0];
|
|
25
|
-
let o = t.filter((
|
|
25
|
+
let o = t.filter((i) => !r.includes(i));
|
|
26
26
|
if (!o || !o.length) return e.includes("?") ? e.split("?")[0] : e.split("&")[0];
|
|
27
|
-
let
|
|
28
|
-
return o.forEach((
|
|
29
|
-
c === t.length - 1 ?
|
|
30
|
-
}), e.includes("?") ? e.split("?")[0] + `?${
|
|
31
|
-
}, u = (
|
|
32
|
-
const s = new URLSearchParams(
|
|
33
|
-
for (const [
|
|
34
|
-
e.hasOwnProperty(
|
|
27
|
+
let a = "";
|
|
28
|
+
return o.forEach((i, c) => {
|
|
29
|
+
c === t.length - 1 ? a += `${i}=${n[i]}` : a += `${i}=${n[i]}&`;
|
|
30
|
+
}), e.includes("?") ? e.split("?")[0] + `?${a}` : e.split("&")[0] + `?${a}`;
|
|
31
|
+
}, u = (r) => {
|
|
32
|
+
const s = new URLSearchParams(r.split("?")[1]), e = {};
|
|
33
|
+
for (const [n, t] of s)
|
|
34
|
+
e.hasOwnProperty(n) ? Array.isArray(e[n]) ? e[n].push(t) : e[n] = [e[n], t] : e[n] = t;
|
|
35
35
|
return e;
|
|
36
|
-
}, g = (
|
|
36
|
+
}, g = (r) => {
|
|
37
37
|
let s = "";
|
|
38
|
-
const e = Object.keys(
|
|
39
|
-
return e && e.length && e.forEach((
|
|
40
|
-
t === e.length - 1 ? s += `${
|
|
38
|
+
const e = Object.keys(r);
|
|
39
|
+
return e && e.length && e.forEach((n, t) => {
|
|
40
|
+
t === e.length - 1 ? s += `${n}=${r[n]}` : s += `${n}=${r[n]}&`;
|
|
41
41
|
}), s;
|
|
42
|
-
}, p = (
|
|
43
|
-
const e = new URL(
|
|
44
|
-
let { origin:
|
|
45
|
-
t === "/" && (t = ""), s.map((
|
|
46
|
-
const o = new URL(`${
|
|
47
|
-
return e.searchParams.forEach((
|
|
48
|
-
o.searchParams.append(
|
|
42
|
+
}, p = (r, s) => {
|
|
43
|
+
const e = new URL(r, location.origin);
|
|
44
|
+
let { origin: n, pathname: t } = e;
|
|
45
|
+
t === "/" && (t = ""), s.map((a) => t += `/${a}`);
|
|
46
|
+
const o = new URL(`${n}${t}`);
|
|
47
|
+
return e.searchParams.forEach((a, i) => {
|
|
48
|
+
o.searchParams.append(i, a);
|
|
49
49
|
}), o.toString();
|
|
50
50
|
};
|
|
51
|
-
function
|
|
52
|
-
const
|
|
51
|
+
function m(r, s) {
|
|
52
|
+
const e = new URL(r, window.location.origin);
|
|
53
|
+
return Object.entries(s).forEach(([n, t]) => {
|
|
54
|
+
e.searchParams.set(n, t);
|
|
55
|
+
}), e.toString();
|
|
56
|
+
}
|
|
57
|
+
function $(r) {
|
|
58
|
+
const s = /^(https?:\/\/[^/]+)/, e = r.match(s);
|
|
53
59
|
return e && e.length > 1 ? e[1] : null;
|
|
54
60
|
}
|
|
55
61
|
export {
|
|
56
62
|
p as addPathParamsToUrl,
|
|
63
|
+
m as appendQueryParams,
|
|
57
64
|
h as funcUrlDel,
|
|
58
65
|
f as getFullPath,
|
|
59
66
|
$ as getOriginFromUrl,
|
|
60
|
-
|
|
67
|
+
l as getUrlParams,
|
|
61
68
|
g as objectToUrlparams,
|
|
62
69
|
u as urlParamsToObject
|
|
63
70
|
};
|
|
Binary file
|