halo-fe 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +3 -0
- package/dist/main.js +2539 -0
- package/dist/vendor-@monaco-editor-DKC4UNw_.js +258 -0
- package/dist/vendor-@vue-l0sNRNKZ.js +1 -0
- package/dist/vendor-axios-ud9O0vdJ.js +1670 -0
- package/dist/vendor-clone-NGbTzSwJ.js +159 -0
- package/dist/vendor-crypto-js-B6Qe-gIg.js +4995 -0
- package/dist/vendor-file-saver-DKXzEV2Q.js +74 -0
- package/dist/vendor-moment-h96o7c8I.js +2578 -0
- package/dist/vendor-pinia-DVLspbiC.js +310 -0
- package/dist/vendor-sprintf-js-BPTdvBYM.js +148 -0
- package/dist/vendor-state-local-CEworIRt.js +131 -0
- package/dist/vendor-underscore-DVTek3G4.js +1070 -0
- package/dist/vendor-underscore.string-vrHhfBaT.js +425 -0
- package/dist/vendor-util-deprecate-BfbfwJhs.js +28 -0
- package/dist/vendor-vue-demi-CIhrFbpB.js +17 -0
- package/esm/drivers/IDriver.d.ts +10 -0
- package/esm/drivers/cdns/Cdn.d.ts +14 -0
- package/esm/drivers/cdns/CdnFactory.d.ts +11 -0
- package/esm/drivers/cdns/ICdn.d.ts +34 -0
- package/esm/drivers/cdns/implements/BootCdn.d.ts +12 -0
- package/esm/drivers/cdns/implements/JsdelivrCdn.d.ts +13 -0
- package/esm/drivers/cdns/implements/LocalCdn.d.ts +12 -0
- package/esm/drivers/cdns/implements/StaticFileCdn.d.ts +16 -0
- package/esm/drivers/cdns/implements/UnpkgCdn.d.ts +10 -0
- package/esm/drivers/cdns/index.d.ts +0 -0
- package/esm/drivers/driver-helper.d.ts +46 -0
- package/esm/drivers/encoders/Encoder.d.ts +11 -0
- package/esm/drivers/encoders/EncoderFactory.d.ts +16 -0
- package/esm/drivers/encoders/IEncoder.d.ts +22 -0
- package/esm/drivers/encoders/implement/Base64Encoder.d.ts +11 -0
- package/esm/drivers/encoders/index.d.ts +0 -0
- package/esm/drivers/excels/ExcelFactory.d.ts +11 -0
- package/esm/drivers/excels/IExcel.d.ts +18 -0
- package/esm/drivers/excels/implements/XlsxExcel.d.ts +10 -0
- package/esm/drivers/excels/index.d.ts +2 -0
- package/esm/drivers/explainers/Explainer.d.ts +4 -0
- package/esm/drivers/explainers/ExplainerFactory.d.ts +1 -0
- package/esm/drivers/explainers/IExplainer.d.ts +3 -0
- package/esm/drivers/explainers/implement/JsonExplainer.d.ts +4 -0
- package/esm/drivers/explainers/index.d.ts +0 -0
- package/esm/drivers/factories/DriverFactory.d.ts +19 -0
- package/esm/drivers/factories/Factory.d.ts +8 -0
- package/esm/drivers/factories/IFactory.d.ts +10 -0
- package/esm/drivers/factories/index.d.ts +2 -0
- package/esm/drivers/features/FeatureFactory.d.ts +11 -0
- package/esm/drivers/features/IFeature.d.ts +23 -0
- package/esm/drivers/features/implements/ExpressionFeature.d.ts +12 -0
- package/esm/drivers/features/implements/I18NFeature.d.ts +12 -0
- package/esm/drivers/features/implements/SortFeature.d.ts +13 -0
- package/esm/drivers/features/index.d.ts +2 -0
- package/esm/drivers/hashers/Hasher.d.ts +10 -0
- package/esm/drivers/hashers/HasherFactory.d.ts +13 -0
- package/esm/drivers/hashers/IHasher.d.ts +19 -0
- package/esm/drivers/hashers/implement/Md5Hasher.d.ts +10 -0
- package/esm/drivers/hashers/implement/Sha256Hasher.d.ts +10 -0
- package/esm/drivers/hashers/index.d.ts +2 -0
- package/esm/drivers/index.d.ts +10 -0
- package/esm/drivers/providers/IProvider.d.ts +47 -0
- package/esm/drivers/providers/ProviderFactory.d.ts +11 -0
- package/esm/drivers/providers/implements/IndexedDbProvider.d.ts +55 -0
- package/esm/drivers/providers/index.d.ts +2 -0
- package/esm/drivers/requesters/IRequester.d.ts +21 -0
- package/esm/drivers/requesters/Requester.d.ts +12 -0
- package/esm/drivers/requesters/RequesterFactory.d.ts +23 -0
- package/esm/drivers/requesters/entities/HttpRequest.d.ts +34 -0
- package/esm/drivers/requesters/entities/HttpResponse.d.ts +19 -0
- package/esm/drivers/requesters/implements/DefaultRequester.d.ts +12 -0
- package/esm/drivers/requesters/implements/LocalRequester.d.ts +43 -0
- package/esm/drivers/requesters/implements/MkRequester.d.ts +40 -0
- package/esm/drivers/requesters/index.d.ts +5 -0
- package/esm/drivers/signers/ISigner.d.ts +33 -0
- package/esm/drivers/signers/SignerFactory.d.ts +11 -0
- package/esm/drivers/signers/implements/DefaultSigner.d.ts +18 -0
- package/esm/drivers/signers/index.d.ts +2 -0
- package/esm/drivers/ssos/ISso.d.ts +41 -0
- package/esm/drivers/ssos/SsoFactory.d.ts +11 -0
- package/esm/drivers/ssos/implements/AnonymousSso.d.ts +18 -0
- package/esm/drivers/ssos/implements/BearerSso.d.ts +24 -0
- package/esm/drivers/ssos/implements/NioSso.d.ts +23 -0
- package/esm/drivers/ssos/implements/SecretSso.d.ts +20 -0
- package/esm/drivers/ssos/implements/WeiXinSso.d.ts +20 -0
- package/esm/drivers/ssos/index.d.ts +2 -0
- package/esm/helpers/array-helper.d.ts +97 -0
- package/esm/helpers/component-helper.d.ts +10 -0
- package/esm/helpers/cookie-helper.d.ts +6 -0
- package/esm/helpers/dictionary-helper.d.ts +18 -0
- package/esm/helpers/dom-helper.d.ts +86 -0
- package/esm/helpers/event-helper.d.ts +30 -0
- package/esm/helpers/file-helper.d.ts +22 -0
- package/esm/helpers/html-helper.d.ts +10 -0
- package/esm/helpers/i18n-helper.d.ts +14 -0
- package/esm/helpers/image-helper.d.ts +10 -0
- package/esm/helpers/index.d.ts +26 -0
- package/esm/helpers/json-helper.d.ts +31 -0
- package/esm/helpers/math-helper.d.ts +46 -0
- package/esm/helpers/micro-helper.d.ts +10 -0
- package/esm/helpers/mount-helper.d.ts +14 -0
- package/esm/helpers/object-helper.d.ts +34 -0
- package/esm/helpers/script-helper.d.ts +31 -0
- package/esm/helpers/scroll-helper.d.ts +14 -0
- package/esm/helpers/sign-helper.d.ts +14 -0
- package/esm/helpers/storage-helper.d.ts +34 -0
- package/esm/helpers/string-helper.d.ts +94 -0
- package/esm/helpers/task-helper.d.ts +26 -0
- package/esm/helpers/time-helper.d.ts +62 -0
- package/esm/helpers/tree-helper.d.ts +54 -0
- package/esm/helpers/type-helper.d.ts +26 -0
- package/esm/helpers/url-helper.d.ts +96 -0
- package/esm/main.d.ts +3 -0
- package/esm/services/SettingService.d.ts +5 -0
- package/esm/services/index.d.ts +15 -0
- package/esm/stores/config.d.ts +59 -0
- package/esm/stores/driver.d.ts +41 -0
- package/esm/stores/env.d.ts +12 -0
- package/esm/stores/index.d.ts +7 -0
- package/esm/stores/log.d.ts +20 -0
- package/esm/stores/setting.d.ts +47 -0
- package/esm/stores/socket.d.ts +27 -0
- package/esm/stores/user.d.ts +44 -0
- package/esm/thirds/index.d.ts +8 -0
- package/esm/vite.config.d.ts +6 -0
- package/package.json +52 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
/**
|
2
|
+
* 对象帮助类
|
3
|
+
*/
|
4
|
+
declare class ObjectHelper {
|
5
|
+
/**
|
6
|
+
* 净化对象,返回不带默认属性的对象
|
7
|
+
*/
|
8
|
+
static pure(input: object): {};
|
9
|
+
/**
|
10
|
+
* 过滤key,并输出新对象
|
11
|
+
*/
|
12
|
+
static filter(input: object, filter: (n: any) => boolean, valueHandler: (n: any) => {}): any[];
|
13
|
+
/**
|
14
|
+
* 把数组转换成对象
|
15
|
+
*/
|
16
|
+
static toObject(array: any[], keySelector: (n: any) => string, valueSelector: (n: any) => string): {};
|
17
|
+
/**
|
18
|
+
* 手动复制,并对字段执行指定自定义处理
|
19
|
+
*/
|
20
|
+
static copy: (obj: any, handler?: {}) => any[] | any;
|
21
|
+
/**
|
22
|
+
* 对对象进行深度克隆,同时可以移除Proxy对象
|
23
|
+
*/
|
24
|
+
static clone: (obj: any, handler?: (n: any) => void) => any;
|
25
|
+
/**
|
26
|
+
* 合并来源对象到目标对象上
|
27
|
+
*/
|
28
|
+
static mergeTo: (target: any, from: any) => any;
|
29
|
+
/**
|
30
|
+
* 给对象添加属性集合,并赋值
|
31
|
+
*/
|
32
|
+
static addProperties: (obj: object, keys: string[], value: string) => void;
|
33
|
+
}
|
34
|
+
export default ObjectHelper;
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/**
|
2
|
+
* 脚本帮助类
|
3
|
+
*/
|
4
|
+
declare class ScriptHelper {
|
5
|
+
/**
|
6
|
+
* 异步加载脚本/样式内容,把内容处理为行内html
|
7
|
+
* 这种方式,依赖的内部资源,会从当前站点加载
|
8
|
+
*/
|
9
|
+
static loadContentAsync: (src: string | string[]) => Promise<void[]>;
|
10
|
+
/**
|
11
|
+
* 异步加载单个路径下的多个文件
|
12
|
+
*/
|
13
|
+
static loadPathAsync: (path: string, files: string[]) => Promise<void>;
|
14
|
+
/**
|
15
|
+
* 通过注入DOM标签异步加载脚本或样式表
|
16
|
+
*/
|
17
|
+
static loadAsync: (src: string | string[]) => Promise<void>;
|
18
|
+
/**
|
19
|
+
* 注意:箭头函数没有参数
|
20
|
+
*/
|
21
|
+
static loadAll: (...args: any[]) => Promise<any[]>;
|
22
|
+
/**
|
23
|
+
* 根据路径获取标签(无src)
|
24
|
+
*/
|
25
|
+
static getInnerTagByUrl: (url: string) => HTMLStyleElement | HTMLScriptElement;
|
26
|
+
/**
|
27
|
+
* 根据路径获取待加载的元素,同时包含Url
|
28
|
+
*/
|
29
|
+
static getOuterTagByUrl: (url: string) => HTMLLinkElement | HTMLScriptElement;
|
30
|
+
}
|
31
|
+
export default ScriptHelper;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/**
|
2
|
+
* 滚动帮助类
|
3
|
+
*/
|
4
|
+
declare class ScrollHelper {
|
5
|
+
/**
|
6
|
+
* 判断指定元素滚动条位置,是否到了页面底部
|
7
|
+
*/
|
8
|
+
static isBottom: (selector: any) => boolean;
|
9
|
+
/**
|
10
|
+
* 滚动指定元素的滚动条到页面底部
|
11
|
+
*/
|
12
|
+
static scrollToBottom: (selector: any) => void;
|
13
|
+
}
|
14
|
+
export default ScrollHelper;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/**
|
2
|
+
* 存储帮助类
|
3
|
+
*/
|
4
|
+
declare class StorageHelper {
|
5
|
+
/**
|
6
|
+
* 获取本地存储
|
7
|
+
*/
|
8
|
+
static get: (key: string, value?: any) => any;
|
9
|
+
/**
|
10
|
+
* 设置本地存储
|
11
|
+
*/
|
12
|
+
static set: (key: string, value: string) => void;
|
13
|
+
/**
|
14
|
+
* 获取本地存储
|
15
|
+
*/
|
16
|
+
static getObject: (key: string) => any;
|
17
|
+
/**
|
18
|
+
* 设置本地存储
|
19
|
+
*/
|
20
|
+
static setObject: (key: string, value: any) => void;
|
21
|
+
/**
|
22
|
+
* 移除存储数据
|
23
|
+
*/
|
24
|
+
static remove: (key: string) => void;
|
25
|
+
/**
|
26
|
+
* 以5M为基准,获取剩余可用容量(KB)
|
27
|
+
*/
|
28
|
+
static getLeftStorage: () => number;
|
29
|
+
/**
|
30
|
+
* 判断指定值是否能够存储到storage中
|
31
|
+
*/
|
32
|
+
static canStorage: (value: object) => boolean;
|
33
|
+
}
|
34
|
+
export default StorageHelper;
|
@@ -0,0 +1,94 @@
|
|
1
|
+
/**
|
2
|
+
* 字符串帮助类
|
3
|
+
*/
|
4
|
+
declare class StringHelper {
|
5
|
+
/**
|
6
|
+
* 生成唯一字符串
|
7
|
+
*/
|
8
|
+
static getUniqueId: () => string;
|
9
|
+
/**
|
10
|
+
* 填充字符串到指定长度,使用pad填充
|
11
|
+
*/
|
12
|
+
static padLeft: (value: string, length: number, pad: string) => any;
|
13
|
+
/**
|
14
|
+
* 去掉头部字符串
|
15
|
+
*/
|
16
|
+
static trimStart: (value: string, trim: string) => string;
|
17
|
+
/**
|
18
|
+
* 去掉尾部字符串
|
19
|
+
*/
|
20
|
+
static trimEnd: (value: string, trim: string) => string;
|
21
|
+
/**
|
22
|
+
* 去掉头尾字符串
|
23
|
+
*/
|
24
|
+
static trim: (value: string, start: string, end: string) => string;
|
25
|
+
/**
|
26
|
+
* 获取中划线命名法
|
27
|
+
*/
|
28
|
+
static getDashName: (value: string) => string;
|
29
|
+
/**
|
30
|
+
* 忽略大小写包含判断,支持从数组中搜索关键词
|
31
|
+
*/
|
32
|
+
static containsIgnoreCase: (keywords: string, value: string | string[]) => boolean;
|
33
|
+
/**
|
34
|
+
* 从html中提取纯文本
|
35
|
+
*/
|
36
|
+
static getTextFromHtml: (html: string) => string;
|
37
|
+
/**
|
38
|
+
* 判断是否是数字类型,这样支持0
|
39
|
+
*/
|
40
|
+
static isNumber: (value: any) => boolean;
|
41
|
+
/**
|
42
|
+
* 验证是否是邮箱格式
|
43
|
+
*/
|
44
|
+
static isEmail: (email: string) => boolean;
|
45
|
+
/**
|
46
|
+
* 判断是否是json
|
47
|
+
*/
|
48
|
+
static isJson: (value: string) => boolean;
|
49
|
+
/**
|
50
|
+
* 判断是否是isJsonp
|
51
|
+
*/
|
52
|
+
static isJsonp: (value: string) => boolean;
|
53
|
+
/**
|
54
|
+
* 判断是否是html
|
55
|
+
*/
|
56
|
+
static isHtml: (value: string) => boolean;
|
57
|
+
/**
|
58
|
+
* 获取内容类型
|
59
|
+
*/
|
60
|
+
static getContentType: (value: string) => "json" | "html" | "text";
|
61
|
+
/**
|
62
|
+
* 判断字符串是否为空或空串
|
63
|
+
*/
|
64
|
+
static isNullOrEmpty: (value: string) => boolean;
|
65
|
+
/**
|
66
|
+
* 判断字符串是否为空或空串
|
67
|
+
*/
|
68
|
+
static isEmpty: (value: string) => value is "";
|
69
|
+
/**
|
70
|
+
* 判断是否符合密码要求
|
71
|
+
*/
|
72
|
+
static isPassword: (value: string) => boolean;
|
73
|
+
/**
|
74
|
+
* 获取数据值或者空
|
75
|
+
*/
|
76
|
+
static getNumberOrNull: (value: any) => number;
|
77
|
+
/**
|
78
|
+
* 格式化成留指定位数的小数
|
79
|
+
*/
|
80
|
+
static format: (value: string, digits: number) => any;
|
81
|
+
/**
|
82
|
+
* 获取两个字符串之间的字符串
|
83
|
+
*/
|
84
|
+
static getBetween: (value: string, start: string, end: string) => string;
|
85
|
+
/**
|
86
|
+
* 根据字符串或数组,自动返回数组
|
87
|
+
*/
|
88
|
+
static getArray(name: string | string[]): string[];
|
89
|
+
/**
|
90
|
+
* 忽略大小写比较
|
91
|
+
*/
|
92
|
+
static equalsIgnoreCase(value: any, valueCompare: string): boolean;
|
93
|
+
}
|
94
|
+
export default StringHelper;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/**
|
2
|
+
* 任务执行帮助类
|
3
|
+
*/
|
4
|
+
declare class TaskHelper {
|
5
|
+
/**
|
6
|
+
* 延时指定ms后执行指定任务
|
7
|
+
*/
|
8
|
+
static delay: (fun: Function, ms: number) => number;
|
9
|
+
/**
|
10
|
+
* 在执行指定延时后,每隔指定ms执行指定任务
|
11
|
+
*/
|
12
|
+
static execute: (fun: Function, ms: number, delay: number) => Promise<unknown>;
|
13
|
+
/**
|
14
|
+
* 清空定时器
|
15
|
+
*/
|
16
|
+
static clearInterval: (id: number) => void;
|
17
|
+
/**
|
18
|
+
* 防抖(指定时间内只触发一次)
|
19
|
+
*/
|
20
|
+
static debounce: (fun: Function, delay: number) => (e: any) => void;
|
21
|
+
/**
|
22
|
+
* 节流:https://segmentfault.com/a/1190000018428170
|
23
|
+
*/
|
24
|
+
static throttle: (fun: Function, delay: number) => (e: any) => boolean;
|
25
|
+
}
|
26
|
+
export default TaskHelper;
|
@@ -0,0 +1,62 @@
|
|
1
|
+
/**
|
2
|
+
* 时间帮助类
|
3
|
+
*/
|
4
|
+
declare class TimeHelper {
|
5
|
+
/**
|
6
|
+
* 获取相对于1970年1月1日的时间戳(ms),不同时区结果相同
|
7
|
+
*/
|
8
|
+
static getTimestamp: (value?: any) => number;
|
9
|
+
/**
|
10
|
+
* 根据字符串获取可对比的时间
|
11
|
+
*/
|
12
|
+
static getTime: (value?: any) => Date;
|
13
|
+
/**
|
14
|
+
* 格式化时间
|
15
|
+
*/
|
16
|
+
static format: (value: string, format: string) => string;
|
17
|
+
/**
|
18
|
+
* 获取当前日期时间的字符串
|
19
|
+
*/
|
20
|
+
static getDateTimeString: () => string;
|
21
|
+
/**
|
22
|
+
* 获取当前时间的字符串
|
23
|
+
*/
|
24
|
+
static getDateString: () => string;
|
25
|
+
/**
|
26
|
+
* 获取当前时间的字符串
|
27
|
+
*/
|
28
|
+
static getTimeString: () => string;
|
29
|
+
/**
|
30
|
+
* 对时间值进行时间格式化
|
31
|
+
*/
|
32
|
+
static formatSecondTime: (value: any) => string;
|
33
|
+
/**
|
34
|
+
* 对时间值进行时间格式化
|
35
|
+
*/
|
36
|
+
static formatMillisecondTime: (value: string) => string;
|
37
|
+
/**
|
38
|
+
* 格式化成24小时时间格式
|
39
|
+
*/
|
40
|
+
static formatTime: (value: any) => string;
|
41
|
+
/**
|
42
|
+
* 对时间值进行日期格式化
|
43
|
+
*/
|
44
|
+
static formatDate: (value: any) => string;
|
45
|
+
/**
|
46
|
+
* 添加天数
|
47
|
+
*/
|
48
|
+
static addDays: (value: any, days: number) => string;
|
49
|
+
/**
|
50
|
+
* 添加月份
|
51
|
+
*/
|
52
|
+
static addMonths: (value: any, months: number) => string;
|
53
|
+
/**
|
54
|
+
* 判断指定时间是否是周末
|
55
|
+
*/
|
56
|
+
static isWeekend: (value: any) => boolean;
|
57
|
+
/**
|
58
|
+
* 把中国时间,转换为当地时间
|
59
|
+
*/
|
60
|
+
static localeTime: (time: any) => string;
|
61
|
+
}
|
62
|
+
export default TimeHelper;
|
@@ -0,0 +1,54 @@
|
|
1
|
+
/**
|
2
|
+
* 树帮助类
|
3
|
+
*/
|
4
|
+
declare class TreeHelper {
|
5
|
+
/**
|
6
|
+
* 从树结构数据中,递归获取指定主键的对象
|
7
|
+
*/
|
8
|
+
static getById: (id: any, idProp: string, tree: any[], childProp: string) => any;
|
9
|
+
/**
|
10
|
+
* 树节点
|
11
|
+
*/
|
12
|
+
static getByIds: (ids: any[], idProp: string, tree: any[], childProp: string) => any[];
|
13
|
+
/**
|
14
|
+
* 找出指定层级集合中,指定对象的下一个对象
|
15
|
+
*/
|
16
|
+
static getNextById: (id: any, idProp: string, tree: any[], childProp: string) => any;
|
17
|
+
/**
|
18
|
+
* 获取兄弟节点
|
19
|
+
*/
|
20
|
+
static getSiblingsById: (id: any, idProp: string, tree: any[], childProp: string) => any;
|
21
|
+
/**
|
22
|
+
* 获取父节点
|
23
|
+
*/
|
24
|
+
static getParentById: (id: any, idProp: string, tree: any[], childProp: string) => any;
|
25
|
+
/**
|
26
|
+
* 从树结构数据中,递归获取指定主键的父元素集合
|
27
|
+
*/
|
28
|
+
static getParentsById: (id: any, idProp: string, tree: any[], childProp: string, hasSelf?: boolean) => any[];
|
29
|
+
/**
|
30
|
+
* 获取当前节点的所有孩子节点的集合
|
31
|
+
*/
|
32
|
+
static getChildrenById: (id: any, idProp: string, tree: any[], childProp: string, hasSelf?: boolean) => any[];
|
33
|
+
/**
|
34
|
+
* 获取当前节点的所有孩子节点的集合
|
35
|
+
*/
|
36
|
+
static getChildren: (element: any, childProp: string, hasSelf?: boolean) => any[];
|
37
|
+
/**
|
38
|
+
* 搜索指定文本的树结构
|
39
|
+
*/
|
40
|
+
static searchTree: (keywords: string, tree: any[], childProp: string, searchProps: any) => any[];
|
41
|
+
/**
|
42
|
+
* 删除指定子元素
|
43
|
+
*/
|
44
|
+
static removeById: (id: any, idProp: string, tree: any[], childProp: string) => void;
|
45
|
+
/**
|
46
|
+
* 获取树结构扁平化后的节点信息
|
47
|
+
*/
|
48
|
+
static getFlat: (tree: any[], childProp: string) => any[];
|
49
|
+
/**
|
50
|
+
* 对树结点的数据进行重新映射,映射得到新的Tree数组
|
51
|
+
*/
|
52
|
+
static map: (tree: any[], prevChildProp: string, childProp: string, fun: Function) => any[];
|
53
|
+
}
|
54
|
+
export default TreeHelper;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
/**
|
2
|
+
* 类型帮助类
|
3
|
+
*/
|
4
|
+
declare class TypeHelper {
|
5
|
+
/**
|
6
|
+
* 判断输入类型是否是字符串类型 null -> false
|
7
|
+
*/
|
8
|
+
static isString: (input: any) => boolean;
|
9
|
+
/**
|
10
|
+
* 判断输入类型是否是Object类型
|
11
|
+
*/
|
12
|
+
static isObject: (input: any) => boolean;
|
13
|
+
/**
|
14
|
+
* 判断输入类型是否是Array类型
|
15
|
+
*/
|
16
|
+
static isArray: (input: any) => boolean;
|
17
|
+
/**
|
18
|
+
* 判断输入类型是否是Number类型,null -> false
|
19
|
+
*/
|
20
|
+
static isNumber: (input: any) => boolean;
|
21
|
+
/**
|
22
|
+
* 判断输入类型是否是isBoolean类型
|
23
|
+
*/
|
24
|
+
static isBoolean: (input: any) => boolean;
|
25
|
+
}
|
26
|
+
export default TypeHelper;
|
@@ -0,0 +1,96 @@
|
|
1
|
+
/**
|
2
|
+
* Url帮助类
|
3
|
+
*/
|
4
|
+
declare class UrlHelper {
|
5
|
+
/**
|
6
|
+
* 获取指定地址路由对象
|
7
|
+
*/
|
8
|
+
static getToRoute(url: string, withReturnUrl?: boolean): any;
|
9
|
+
/**
|
10
|
+
* 获取要跳转的Url地址信息,自动涵盖后退地址
|
11
|
+
*/
|
12
|
+
static getToUrl(url: string, withReturnUrl?: boolean): string;
|
13
|
+
/**
|
14
|
+
* 获取菜单参数
|
15
|
+
*/
|
16
|
+
static getM(url: string): any;
|
17
|
+
/**
|
18
|
+
* 获取后退地址路由
|
19
|
+
*/
|
20
|
+
static getBackRoute(): any;
|
21
|
+
/**
|
22
|
+
* 获取要后退的地址URL
|
23
|
+
*/
|
24
|
+
static getBackUrl(): string;
|
25
|
+
/**
|
26
|
+
* 获取指定地址的路由对象,自动合并qs,并解码
|
27
|
+
*/
|
28
|
+
static getRoute(url: string, queryObj?: object): any;
|
29
|
+
/**
|
30
|
+
* 处理实体,得到url query参数形式
|
31
|
+
* 如:app=Tool&compare[language]=json&compare[sql]=App%3D%27Tool%27+and+[Table]+like+%27Ctl_%25%27+order+by+[Table],+Name
|
32
|
+
*/
|
33
|
+
static getQuery(value: any): string;
|
34
|
+
/**
|
35
|
+
* 处理键值对的值
|
36
|
+
*/
|
37
|
+
private static handleQueryValue;
|
38
|
+
/**
|
39
|
+
* 自动根据后面路径,决定是否要合并Url
|
40
|
+
*/
|
41
|
+
static concatUrl: (url: string, path: string) => string;
|
42
|
+
/**
|
43
|
+
* 合并路径和查询对象(自动编码,并支持覆盖现有参数),得到完整URL地址,并会省略默认值
|
44
|
+
* ? 对url参数不编码,只对 queryObj 参数编码,防止用户的参数被改成编码形式
|
45
|
+
* ? 目前,对Url参数对象和目标对象都编码,因为源对象属性是经过解码的
|
46
|
+
*/
|
47
|
+
static getUrl: (url: string, params?: any) => string;
|
48
|
+
/**
|
49
|
+
* 获取超链接配置对象
|
50
|
+
*/
|
51
|
+
static getAnchor: (url: string, params?: any) => {
|
52
|
+
href: any;
|
53
|
+
target: any;
|
54
|
+
};
|
55
|
+
/**
|
56
|
+
* 从Url中提取路径
|
57
|
+
*/
|
58
|
+
static getPath(url: string): string;
|
59
|
+
/**
|
60
|
+
* 获取path中最后一个片段信息
|
61
|
+
*/
|
62
|
+
static getLastSegment(url: string): string;
|
63
|
+
/**
|
64
|
+
* 获取地址中的查询参数
|
65
|
+
*/
|
66
|
+
static getQueryParam(url: string, key: string): string;
|
67
|
+
/**
|
68
|
+
* 从Url中提取查询对象
|
69
|
+
*/
|
70
|
+
static deserialize(url: string): object;
|
71
|
+
/**
|
72
|
+
* 把查询字符串转换成对象(自动解码成源数据)
|
73
|
+
*/
|
74
|
+
static deserializeQs(qs: string, decode?: boolean): any;
|
75
|
+
/**
|
76
|
+
* 把对象转换成查询字符串,自动编码
|
77
|
+
*/
|
78
|
+
static serialize(obj: object, encoding?: boolean): string;
|
79
|
+
/**
|
80
|
+
* URL编码
|
81
|
+
*/
|
82
|
+
static encode(val: string): string;
|
83
|
+
/**
|
84
|
+
* 把指定对象转换成base64字符串
|
85
|
+
*/
|
86
|
+
static base64(obj: object): string;
|
87
|
+
/**
|
88
|
+
* 把指定base64字符串解析为原对象
|
89
|
+
*/
|
90
|
+
static base64Decode(val: string): any;
|
91
|
+
/**
|
92
|
+
* 是否是http或https开头的地址
|
93
|
+
*/
|
94
|
+
static httpOrHttps(url: string): boolean;
|
95
|
+
}
|
96
|
+
export default UrlHelper;
|
package/esm/main.d.ts
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
import SettingService from "./SettingService";
|
2
|
+
/**
|
3
|
+
* 消息提示接口,下游自己定义
|
4
|
+
*/
|
5
|
+
interface IMessageService {
|
6
|
+
/**
|
7
|
+
* 成功消息提示
|
8
|
+
*/
|
9
|
+
success(message: string): void;
|
10
|
+
/**
|
11
|
+
* 错误消息提示
|
12
|
+
*/
|
13
|
+
error(message: string): void;
|
14
|
+
}
|
15
|
+
export { IMessageService, SettingService };
|
@@ -0,0 +1,59 @@
|
|
1
|
+
/**
|
2
|
+
* 使用配置仓储
|
3
|
+
*/
|
4
|
+
declare let useConfigStore: import("pinia").StoreDefinition<"config", {
|
5
|
+
/**
|
6
|
+
* 默认背景
|
7
|
+
*/
|
8
|
+
background: any;
|
9
|
+
/**
|
10
|
+
* 当前主题
|
11
|
+
*/
|
12
|
+
theme: any;
|
13
|
+
/**
|
14
|
+
* 当前布局方式
|
15
|
+
*/
|
16
|
+
layout: any;
|
17
|
+
/**
|
18
|
+
* 当前语言
|
19
|
+
*/
|
20
|
+
language: any;
|
21
|
+
/**
|
22
|
+
* 字体
|
23
|
+
*/
|
24
|
+
font: any;
|
25
|
+
/**
|
26
|
+
* 文件布局方式
|
27
|
+
*/
|
28
|
+
fileLayout: any;
|
29
|
+
/**
|
30
|
+
* 请求器
|
31
|
+
*/
|
32
|
+
requester: import("../drivers").IRequester;
|
33
|
+
}, {}, {
|
34
|
+
/**
|
35
|
+
* 初始化配置值(不一定跟登录用户相关,这也是单独分离的好处)
|
36
|
+
*/
|
37
|
+
init(configs: any[]): void;
|
38
|
+
/**
|
39
|
+
* 获取本地配置
|
40
|
+
*/
|
41
|
+
getLocalConfig(type: string): any;
|
42
|
+
/**
|
43
|
+
* 设置背景
|
44
|
+
*/
|
45
|
+
setBackground(background: string): void;
|
46
|
+
/**
|
47
|
+
* 加载用户配置
|
48
|
+
*/
|
49
|
+
loadConfig(type: string, cached?: boolean): Promise<any>;
|
50
|
+
/**
|
51
|
+
* 全量保存用户配置
|
52
|
+
*/
|
53
|
+
saveConfig(type: string, data: any, cached?: boolean): Promise<any>;
|
54
|
+
/**
|
55
|
+
* 部分保存用户配置
|
56
|
+
*/
|
57
|
+
patchConfig(type: string, pairs: any): Promise<any>;
|
58
|
+
}>;
|
59
|
+
export default useConfigStore;
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/**
|
2
|
+
* 使用驱动仓储
|
3
|
+
*/
|
4
|
+
declare let useDriverStore: import("pinia").StoreDefinition<"driver", {
|
5
|
+
/**
|
6
|
+
* 加载完毕状态记录
|
7
|
+
*/
|
8
|
+
loaded: {
|
9
|
+
apps: boolean;
|
10
|
+
envs: boolean;
|
11
|
+
};
|
12
|
+
/**
|
13
|
+
* 是否加载中状态,用于并发场景 防止重复拉取接口
|
14
|
+
*/
|
15
|
+
loading: {
|
16
|
+
apps: boolean;
|
17
|
+
envs: boolean;
|
18
|
+
};
|
19
|
+
/**
|
20
|
+
* 应用集合,存储到Store中,防止每一个Driver实例重复加载
|
21
|
+
*/
|
22
|
+
apps: any[];
|
23
|
+
/**
|
24
|
+
* 环境集合,存储到Store中,防止每一个Driver实例重复加载
|
25
|
+
*/
|
26
|
+
envs: any[];
|
27
|
+
/**
|
28
|
+
* 请求器
|
29
|
+
*/
|
30
|
+
requester: import("../drivers").IRequester;
|
31
|
+
}, {}, {
|
32
|
+
/**
|
33
|
+
* 加载应用选项
|
34
|
+
*/
|
35
|
+
loadApps(reload?: boolean): Promise<any>;
|
36
|
+
/**
|
37
|
+
* 加载环境选项
|
38
|
+
*/
|
39
|
+
loadEnvs(reload?: boolean): Promise<any>;
|
40
|
+
}>;
|
41
|
+
export default useDriverStore;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import useConfigStore from "./config";
|
2
|
+
import useSettingStore from "./setting";
|
3
|
+
import useLogStore from "./log";
|
4
|
+
import useUserStore from "./user";
|
5
|
+
import useSocketStore from "./socket";
|
6
|
+
import useDriverStore from "./driver";
|
7
|
+
export { useConfigStore, useSettingStore, useLogStore, useUserStore, useSocketStore, useDriverStore };
|
@@ -0,0 +1,20 @@
|
|
1
|
+
/**
|
2
|
+
* 使用日志仓储
|
3
|
+
*/
|
4
|
+
declare let useLogStore: import("pinia").StoreDefinition<"log", {
|
5
|
+
logs: any[];
|
6
|
+
}, {}, {
|
7
|
+
/**
|
8
|
+
* 手动添加日志
|
9
|
+
*/
|
10
|
+
add(code: string, message: string, stack: string, elapsed?: number): void;
|
11
|
+
/**
|
12
|
+
* 删除日志
|
13
|
+
*/
|
14
|
+
remove(index: number): void;
|
15
|
+
/**
|
16
|
+
* 清空日志
|
17
|
+
*/
|
18
|
+
clear(): void;
|
19
|
+
}>;
|
20
|
+
export default useLogStore;
|