halo-fe 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. package/README.md +3 -0
  2. package/dist/main.js +2539 -0
  3. package/dist/vendor-@monaco-editor-DKC4UNw_.js +258 -0
  4. package/dist/vendor-@vue-l0sNRNKZ.js +1 -0
  5. package/dist/vendor-axios-ud9O0vdJ.js +1670 -0
  6. package/dist/vendor-clone-NGbTzSwJ.js +159 -0
  7. package/dist/vendor-crypto-js-B6Qe-gIg.js +4995 -0
  8. package/dist/vendor-file-saver-DKXzEV2Q.js +74 -0
  9. package/dist/vendor-moment-h96o7c8I.js +2578 -0
  10. package/dist/vendor-pinia-DVLspbiC.js +310 -0
  11. package/dist/vendor-sprintf-js-BPTdvBYM.js +148 -0
  12. package/dist/vendor-state-local-CEworIRt.js +131 -0
  13. package/dist/vendor-underscore-DVTek3G4.js +1070 -0
  14. package/dist/vendor-underscore.string-vrHhfBaT.js +425 -0
  15. package/dist/vendor-util-deprecate-BfbfwJhs.js +28 -0
  16. package/dist/vendor-vue-demi-CIhrFbpB.js +17 -0
  17. package/esm/drivers/IDriver.d.ts +10 -0
  18. package/esm/drivers/cdns/Cdn.d.ts +14 -0
  19. package/esm/drivers/cdns/CdnFactory.d.ts +11 -0
  20. package/esm/drivers/cdns/ICdn.d.ts +34 -0
  21. package/esm/drivers/cdns/implements/BootCdn.d.ts +12 -0
  22. package/esm/drivers/cdns/implements/JsdelivrCdn.d.ts +13 -0
  23. package/esm/drivers/cdns/implements/LocalCdn.d.ts +12 -0
  24. package/esm/drivers/cdns/implements/StaticFileCdn.d.ts +16 -0
  25. package/esm/drivers/cdns/implements/UnpkgCdn.d.ts +10 -0
  26. package/esm/drivers/cdns/index.d.ts +0 -0
  27. package/esm/drivers/driver-helper.d.ts +46 -0
  28. package/esm/drivers/encoders/Encoder.d.ts +11 -0
  29. package/esm/drivers/encoders/EncoderFactory.d.ts +16 -0
  30. package/esm/drivers/encoders/IEncoder.d.ts +22 -0
  31. package/esm/drivers/encoders/implement/Base64Encoder.d.ts +11 -0
  32. package/esm/drivers/encoders/index.d.ts +0 -0
  33. package/esm/drivers/excels/ExcelFactory.d.ts +11 -0
  34. package/esm/drivers/excels/IExcel.d.ts +18 -0
  35. package/esm/drivers/excels/implements/XlsxExcel.d.ts +10 -0
  36. package/esm/drivers/excels/index.d.ts +2 -0
  37. package/esm/drivers/explainers/Explainer.d.ts +4 -0
  38. package/esm/drivers/explainers/ExplainerFactory.d.ts +1 -0
  39. package/esm/drivers/explainers/IExplainer.d.ts +3 -0
  40. package/esm/drivers/explainers/implement/JsonExplainer.d.ts +4 -0
  41. package/esm/drivers/explainers/index.d.ts +0 -0
  42. package/esm/drivers/factories/DriverFactory.d.ts +19 -0
  43. package/esm/drivers/factories/Factory.d.ts +8 -0
  44. package/esm/drivers/factories/IFactory.d.ts +10 -0
  45. package/esm/drivers/factories/index.d.ts +2 -0
  46. package/esm/drivers/features/FeatureFactory.d.ts +11 -0
  47. package/esm/drivers/features/IFeature.d.ts +23 -0
  48. package/esm/drivers/features/implements/ExpressionFeature.d.ts +12 -0
  49. package/esm/drivers/features/implements/I18NFeature.d.ts +12 -0
  50. package/esm/drivers/features/implements/SortFeature.d.ts +13 -0
  51. package/esm/drivers/features/index.d.ts +2 -0
  52. package/esm/drivers/hashers/Hasher.d.ts +10 -0
  53. package/esm/drivers/hashers/HasherFactory.d.ts +13 -0
  54. package/esm/drivers/hashers/IHasher.d.ts +19 -0
  55. package/esm/drivers/hashers/implement/Md5Hasher.d.ts +10 -0
  56. package/esm/drivers/hashers/implement/Sha256Hasher.d.ts +10 -0
  57. package/esm/drivers/hashers/index.d.ts +2 -0
  58. package/esm/drivers/index.d.ts +10 -0
  59. package/esm/drivers/providers/IProvider.d.ts +47 -0
  60. package/esm/drivers/providers/ProviderFactory.d.ts +11 -0
  61. package/esm/drivers/providers/implements/IndexedDbProvider.d.ts +55 -0
  62. package/esm/drivers/providers/index.d.ts +2 -0
  63. package/esm/drivers/requesters/IRequester.d.ts +21 -0
  64. package/esm/drivers/requesters/Requester.d.ts +12 -0
  65. package/esm/drivers/requesters/RequesterFactory.d.ts +23 -0
  66. package/esm/drivers/requesters/entities/HttpRequest.d.ts +34 -0
  67. package/esm/drivers/requesters/entities/HttpResponse.d.ts +19 -0
  68. package/esm/drivers/requesters/implements/DefaultRequester.d.ts +12 -0
  69. package/esm/drivers/requesters/implements/LocalRequester.d.ts +43 -0
  70. package/esm/drivers/requesters/implements/MkRequester.d.ts +40 -0
  71. package/esm/drivers/requesters/index.d.ts +5 -0
  72. package/esm/drivers/signers/ISigner.d.ts +33 -0
  73. package/esm/drivers/signers/SignerFactory.d.ts +11 -0
  74. package/esm/drivers/signers/implements/DefaultSigner.d.ts +18 -0
  75. package/esm/drivers/signers/index.d.ts +2 -0
  76. package/esm/drivers/ssos/ISso.d.ts +41 -0
  77. package/esm/drivers/ssos/SsoFactory.d.ts +11 -0
  78. package/esm/drivers/ssos/implements/AnonymousSso.d.ts +18 -0
  79. package/esm/drivers/ssos/implements/BearerSso.d.ts +24 -0
  80. package/esm/drivers/ssos/implements/NioSso.d.ts +23 -0
  81. package/esm/drivers/ssos/implements/SecretSso.d.ts +20 -0
  82. package/esm/drivers/ssos/implements/WeiXinSso.d.ts +20 -0
  83. package/esm/drivers/ssos/index.d.ts +2 -0
  84. package/esm/helpers/array-helper.d.ts +97 -0
  85. package/esm/helpers/component-helper.d.ts +10 -0
  86. package/esm/helpers/cookie-helper.d.ts +6 -0
  87. package/esm/helpers/dictionary-helper.d.ts +18 -0
  88. package/esm/helpers/dom-helper.d.ts +86 -0
  89. package/esm/helpers/event-helper.d.ts +30 -0
  90. package/esm/helpers/file-helper.d.ts +22 -0
  91. package/esm/helpers/html-helper.d.ts +10 -0
  92. package/esm/helpers/i18n-helper.d.ts +14 -0
  93. package/esm/helpers/image-helper.d.ts +10 -0
  94. package/esm/helpers/index.d.ts +26 -0
  95. package/esm/helpers/json-helper.d.ts +31 -0
  96. package/esm/helpers/math-helper.d.ts +46 -0
  97. package/esm/helpers/micro-helper.d.ts +10 -0
  98. package/esm/helpers/mount-helper.d.ts +14 -0
  99. package/esm/helpers/object-helper.d.ts +34 -0
  100. package/esm/helpers/script-helper.d.ts +31 -0
  101. package/esm/helpers/scroll-helper.d.ts +14 -0
  102. package/esm/helpers/sign-helper.d.ts +14 -0
  103. package/esm/helpers/storage-helper.d.ts +34 -0
  104. package/esm/helpers/string-helper.d.ts +94 -0
  105. package/esm/helpers/task-helper.d.ts +26 -0
  106. package/esm/helpers/time-helper.d.ts +62 -0
  107. package/esm/helpers/tree-helper.d.ts +54 -0
  108. package/esm/helpers/type-helper.d.ts +26 -0
  109. package/esm/helpers/url-helper.d.ts +96 -0
  110. package/esm/main.d.ts +3 -0
  111. package/esm/services/SettingService.d.ts +5 -0
  112. package/esm/services/index.d.ts +15 -0
  113. package/esm/stores/config.d.ts +59 -0
  114. package/esm/stores/driver.d.ts +41 -0
  115. package/esm/stores/env.d.ts +12 -0
  116. package/esm/stores/index.d.ts +7 -0
  117. package/esm/stores/log.d.ts +20 -0
  118. package/esm/stores/setting.d.ts +47 -0
  119. package/esm/stores/socket.d.ts +27 -0
  120. package/esm/stores/user.d.ts +44 -0
  121. package/esm/thirds/index.d.ts +8 -0
  122. package/esm/vite.config.d.ts +6 -0
  123. package/package.json +52 -0
@@ -0,0 +1,33 @@
1
+ /**
2
+ * 签名接口
3
+ */
4
+ interface ISigner {
5
+ /**
6
+ * 类型
7
+ */
8
+ type: string;
9
+ /**
10
+ * 开启连接
11
+ */
12
+ open(auth: {
13
+ url: string;
14
+ app_id: string;
15
+ }): void;
16
+ /**
17
+ * 根据回调地址获取登录地址
18
+ */
19
+ loginUrl(callback: string): string;
20
+ /**
21
+ * 回调
22
+ */
23
+ callback(token: string): void;
24
+ /**
25
+ * 获取签名
26
+ */
27
+ getSign(userId: string, url: string, body: any, timestamp: number, secret: string): Promise<string>;
28
+ /**
29
+ * 释放资源
30
+ */
31
+ dispose(): any;
32
+ }
33
+ export default ISigner;
@@ -0,0 +1,11 @@
1
+ import ISigner from "./ISigner";
2
+ /**
3
+ * 签名工厂类
4
+ */
5
+ declare class SignerFactory {
6
+ /**
7
+ * 获取指定签名实例
8
+ */
9
+ static create(type: string): ISigner;
10
+ }
11
+ export default SignerFactory;
@@ -0,0 +1,18 @@
1
+ import ISigner from "../ISigner";
2
+ import IHasher from "../../hashers/IHasher";
3
+ /**
4
+ * 默认签名器
5
+ */
6
+ declare class DefaultSigner implements ISigner {
7
+ type: string;
8
+ hasher: IHasher;
9
+ open(auth: {
10
+ url: string;
11
+ app_id: string;
12
+ }): void;
13
+ callback(token: string): void;
14
+ getSign(userId: string, url: string, body: object, timestamp: number, secret: string): Promise<string>;
15
+ loginUrl(callback: string): string;
16
+ dispose(): void;
17
+ }
18
+ export default DefaultSigner;
@@ -0,0 +1,2 @@
1
+ import type ISigner from "./ISigner";
2
+ export { ISigner, };
@@ -0,0 +1,41 @@
1
+ /**
2
+ * SSO接口
3
+ */
4
+ interface ISso {
5
+ /**
6
+ * 类型
7
+ */
8
+ type: string;
9
+ /**
10
+ * 开启连接
11
+ */
12
+ open(auth: {
13
+ url: string;
14
+ app_id: string;
15
+ }): void;
16
+ /**
17
+ * 登录
18
+ */
19
+ login(form: any): Promise<any>;
20
+ /**
21
+ * 根据回调地址获取登录地址
22
+ */
23
+ loginUrl(callback_url: string): string;
24
+ /**
25
+ * 获取用户信息
26
+ */
27
+ getUser(): {
28
+ userId: string;
29
+ token: string;
30
+ secret: string;
31
+ };
32
+ /**
33
+ * 获取授权头,不能泄露域账号等用户标识
34
+ */
35
+ getAuthorization(token: string, timestamp: number, sign: string, env: string): string;
36
+ /**
37
+ * 退出
38
+ */
39
+ logout(): void;
40
+ }
41
+ export default ISso;
@@ -0,0 +1,11 @@
1
+ import ISso from "./ISso";
2
+ /**
3
+ * SSO工厂类
4
+ */
5
+ declare class SsoFactory {
6
+ /**
7
+ * 获取指定SSO实例
8
+ */
9
+ static getSso(type: string): ISso;
10
+ }
11
+ export default SsoFactory;
@@ -0,0 +1,18 @@
1
+ import ISso from "../ISso";
2
+ declare class AnonymousSso implements ISso {
3
+ type: string;
4
+ open(auth: {
5
+ url: string;
6
+ app_id: string;
7
+ }): void;
8
+ login(form: any): Promise<any>;
9
+ loginUrl(callback_url: string): string;
10
+ getUser(): {
11
+ userId: string;
12
+ token: string;
13
+ secret: string;
14
+ };
15
+ getAuthorization(token: string, timestamp: number, signature: string, env: string): string;
16
+ logout(): void;
17
+ }
18
+ export default AnonymousSso;
@@ -0,0 +1,24 @@
1
+ import ISso from "../ISso";
2
+ import { IRequester } from "../../requesters";
3
+ /**
4
+ * 默认登录授权
5
+ */
6
+ declare class BearerSso implements ISso {
7
+ type: string;
8
+ static loginKey: string;
9
+ requester: IRequester;
10
+ open(auth: {
11
+ url: string;
12
+ app_id: string;
13
+ }): void;
14
+ login(form: any): Promise<any>;
15
+ loginUrl(callback_url: string): string;
16
+ getUser(): {
17
+ userId: string;
18
+ token: string;
19
+ secret: string;
20
+ };
21
+ getAuthorization(token: string, timestamp: number, signature: string, env?: string): string;
22
+ logout(): void;
23
+ }
24
+ export default BearerSso;
@@ -0,0 +1,23 @@
1
+ import ISso from "../ISso";
2
+ /**
3
+ * NIO SSO实现
4
+ */
5
+ declare class NioSso implements ISso {
6
+ type: string;
7
+ url: string;
8
+ app_id: string;
9
+ open(auth: {
10
+ url: string;
11
+ app_id: string;
12
+ }): void;
13
+ login(form: any): Promise<any>;
14
+ loginUrl(callback_url: string): string;
15
+ getUser(): {
16
+ userId: string;
17
+ token: string;
18
+ secret: string;
19
+ };
20
+ getAuthorization(token: string, timestamp: number, signature: string, env: string): string;
21
+ logout(): void;
22
+ }
23
+ export default NioSso;
@@ -0,0 +1,20 @@
1
+ import ISso from "../ISso";
2
+ import { IRequester } from "../../requesters";
3
+ declare class SecretSso implements ISso {
4
+ type: string;
5
+ requester: IRequester;
6
+ open(auth: {
7
+ url: string;
8
+ app_id: string;
9
+ }): void;
10
+ login(form: any): Promise<any>;
11
+ loginUrl(callback_url: string): string;
12
+ getUser(): {
13
+ userId: string;
14
+ token: string;
15
+ secret: string;
16
+ };
17
+ getAuthorization(token: string, timestamp: number, signature: string, env: string): string;
18
+ logout(): void;
19
+ }
20
+ export default SecretSso;
@@ -0,0 +1,20 @@
1
+ import ISso from "../ISso";
2
+ /**
3
+ * 微信登录
4
+ */
5
+ declare class WeiXinSso implements ISso {
6
+ type: string;
7
+ open(auth: {
8
+ url: string;
9
+ }): void;
10
+ login(form: any): Promise<any>;
11
+ loginUrl(callback_url: string): string;
12
+ getUser(): {
13
+ userId: string;
14
+ token: string;
15
+ secret: string;
16
+ };
17
+ getAuthorization(token: string, timestamp: number, signature: string, env: string): string;
18
+ logout(): void;
19
+ }
20
+ export default WeiXinSso;
@@ -0,0 +1,2 @@
1
+ import type ISso from "./ISso";
2
+ export { ISso, };
@@ -0,0 +1,97 @@
1
+ /**
2
+ * 数组帮助类
3
+ */
4
+ declare class ArrayHelper {
5
+ /**
6
+ * 获取指定数组分成每片指定长度后的集合
7
+ */
8
+ static getChunks: (arr: any[], chunkSize: number) => any[];
9
+ /**
10
+ * 取两个集合的交集
11
+ */
12
+ static intersect: (arr1: any[], arr2: any[]) => any[];
13
+ /**
14
+ * 排除指定元素(差集)
15
+ */
16
+ static except: (from: any[], target: any[] | any, equals?: (a: any, b: any) => boolean) => any[];
17
+ /**
18
+ * 是否包含
19
+ */
20
+ static contains: (arr: any[], element: any) => boolean;
21
+ /**
22
+ * 判断指定集合中的指定属性的值,是否包含关键词
23
+ */
24
+ static filterContains: (arr: any[], props: string[], keywords: string) => any[];
25
+ /**
26
+ * 判断2个数组是否每个元素都相同
27
+ */
28
+ static same: (arr1: any[], arr2: any[]) => boolean;
29
+ /**
30
+ * 求最大值,数据类型的比较函数要自己转换为数值类型
31
+ */
32
+ static max: (arr: any[], func: Function) => any;
33
+ /**
34
+ * 求最小值,数据类型的比较函数要自己转换为数值类型
35
+ */
36
+ static min: (arr: any[], func: Function) => any;
37
+ /**
38
+ * 求和
39
+ */
40
+ static sum: (arr: any[], func: Function, digits?: number) => number;
41
+ /**
42
+ * 求平均值
43
+ */
44
+ static avg: (arr: any[], func: Function, digits?: number) => number;
45
+ /**
46
+ * 对数组元素根据指定函数进行去重,并返回去重后的值的新数组 n=>n.value
47
+ */
48
+ static distinct: (arr: any[], selector: Function) => any[];
49
+ /**
50
+ * 不存在某元素时才添加某元素
51
+ */
52
+ static pushIfNotExist: (arr: any[], element: any) => void;
53
+ /**
54
+ * 连接值构建成新数组,重复项也会自动构建,不存在的值,会自动创建为一个新项
55
+ */
56
+ static fromValues: (arrValues: any[], arr: any[], propertyValue: string, propertyText: string) => any[];
57
+ /**
58
+ * 删除指定元素,并返回删除后的字符串
59
+ */
60
+ static removeIndex: (str: string, index: number, split: string) => string;
61
+ /**
62
+ * 分割指定字符串为数组,字符串为空,返回空数组
63
+ * @param input
64
+ * @param split
65
+ * @param element 转换后添加的默认元素
66
+ */
67
+ static split: (input: string, split: string, element?: any) => any[];
68
+ /**
69
+ * 合并多个数组中的每一项到新的二维数组中,没值的元素被有值的元素代替
70
+ */
71
+ static combine: (...args: any[]) => any[];
72
+ /**
73
+ * 在指定元素前插入新元素,返回插入元素的索引
74
+ */
75
+ static insert: (array: object[], selectedRow: object, row: object) => number;
76
+ /**
77
+ * 在指定元素后插入新元素,返回插入元素的索引
78
+ */
79
+ static append: (array: object[], selectedRow: object, row: object) => number;
80
+ /**
81
+ * 删除执行数组中的指定对象或者集合
82
+ */
83
+ static remove: (array: any[], elements: any[] | any) => void;
84
+ /**
85
+ * 按照指定函数对数组排序
86
+ */
87
+ static orderBy: (array: any[], funcs: any, asc?: boolean) => any[];
88
+ /**
89
+ * 分组
90
+ */
91
+ static groupByArray: (array: any[], keyFunc: (item: any) => any) => any[];
92
+ /**
93
+ * 分组,封装成字典而不是集合,大数据场景速度提升百倍
94
+ */
95
+ static groupBy: (array: any[], keyFunc: (item: any) => any, valueHandler?: (item: any) => any) => object;
96
+ }
97
+ export default ArrayHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 组件帮助类
3
+ */
4
+ declare class ComponentHelper {
5
+ /**
6
+ * 根据动态加载的组件对象,得到组件集合
7
+ */
8
+ static getComponents(components: object, replace: string, prefix?: string): object;
9
+ }
10
+ export default ComponentHelper;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Cookie帮助类
3
+ */
4
+ declare class CookieHelper {
5
+ }
6
+ export default CookieHelper;
@@ -0,0 +1,18 @@
1
+ /**
2
+ * 字典帮助类
3
+ */
4
+ declare class DictionaryHelper {
5
+ /**
6
+ * 从指定字典中提取忽略大小写的key的值
7
+ */
8
+ static getValueIgnoreCase(key: string, value: object): string;
9
+ /**
10
+ * 对字典进行排序,并得到新字典
11
+ */
12
+ static sort(obj: object): any;
13
+ /**
14
+ * 连接字典
15
+ */
16
+ static join(obj: object, valueHandler?: (value: string) => string, delimiter?: string, join?: string): string;
17
+ }
18
+ export default DictionaryHelper;
@@ -0,0 +1,86 @@
1
+ /**
2
+ * Dom帮助类
3
+ */
4
+ declare class DomHelper {
5
+ /**
6
+ * 根据字符串Ascii码得到固定颜色字典
7
+ */
8
+ static getColors(values: string[]): object;
9
+ /**
10
+ * 获取样式名
11
+ */
12
+ static getClass(...args: any[]): string;
13
+ /**
14
+ * 添加类
15
+ */
16
+ static addClass: (dom: Element, cls: string, choice?: any) => void;
17
+ /**
18
+ * 删除类
19
+ */
20
+ static removeClass: (selector: string | Element, className: string, except?: Element) => void;
21
+ /**
22
+ * 根据计算后的样式进行DOM过滤
23
+ */
24
+ static filterStyle(doms: any[], fun: (style: CSSStyleDeclaration) => boolean): any[];
25
+ /**
26
+ * 添加样式
27
+ */
28
+ static addStyle(dom: HTMLElement, prop: string, value: string): void;
29
+ /**
30
+ * 查找指定父节点
31
+ */
32
+ static parentUntil(dom: any, cls: string): any;
33
+ /**
34
+ * 查找第一个绝对定位的元素或backdrop元素,否则使用html元素
35
+ */
36
+ static parentAbsolute(dom: any): any;
37
+ /**
38
+ * 查找孩子节点
39
+ */
40
+ static find(dom: Element, cls: string): Element;
41
+ /**
42
+ * 获取dom宽度或高度
43
+ */
44
+ private static getWidthOrHeight;
45
+ /**
46
+ * 统计所有控件宽度,含外边距
47
+ */
48
+ static getWidth(value: Element | Element[]): number;
49
+ /**
50
+ * 获取元素可用宽度(移除内填充)
51
+ */
52
+ static getAvailableWidth(value: Element | Element[]): number;
53
+ /**
54
+ * 统计所有非固定定位控件高度,含内填充和外边距
55
+ */
56
+ static getHeight(value: Element | Element[]): number;
57
+ /**
58
+ * 获取元素可用高度(移除内填充)
59
+ */
60
+ static getAvailableHeight(value: Element | Element[]): number;
61
+ /**
62
+ * 获取指定元素在视口内的位置
63
+ */
64
+ static getViewportStyle(target: Element, title: string, subMenu: string, viewport: Element, position: string): any;
65
+ /**
66
+ * 获取指定选择器最大的索引
67
+ */
68
+ static getMaxIndex(selector: string): number;
69
+ /**
70
+ * 判断当前鼠标位置是否在指定范围之内
71
+ */
72
+ static inRange(event: MouseEvent, x: number, y: number, width: number, height: number): boolean;
73
+ /**
74
+ * 创建指定标签的dom,并设置内容
75
+ */
76
+ static create(name: string, cls?: string, html?: string): HTMLElement;
77
+ /**
78
+ * 不存在时创建dom,并自动追加到文档
79
+ */
80
+ static createIfAbsent(name: string, cls: string, html?: string): HTMLElement;
81
+ /**
82
+ * 获取文本宽度
83
+ */
84
+ static getTextWidth(value: string): number;
85
+ }
86
+ export default DomHelper;
@@ -0,0 +1,30 @@
1
+ /**
2
+ * 事件帮助类
3
+ */
4
+ declare class EventHelper {
5
+ /**
6
+ * 批量绑定事件,执行指定处理函数
7
+ */
8
+ static bind: (events: any[], dom: any, func: Function) => void;
9
+ /**
10
+ * 批量绑定事件,执行指定处理函数
11
+ */
12
+ static unbind: (events: any[], dom: any, func: Function) => void;
13
+ /**
14
+ * 绑定点击处理函数
15
+ */
16
+ static click: (dom: any, func: Function) => void;
17
+ /**
18
+ * 解除点击监听
19
+ */
20
+ static unclick: (dom: any, func: Function) => void;
21
+ /**
22
+ * 绑定滚动处理函数
23
+ */
24
+ static scroll: (dom: any, func: Function) => void;
25
+ /**
26
+ * 移除滚动处理函数,防止内存泄漏
27
+ */
28
+ static unscroll: (dom: any, func: Function) => void;
29
+ }
30
+ export default EventHelper;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * 文件帮助类
3
+ */
4
+ declare class FileHelper {
5
+ /**
6
+ * 保存文件
7
+ */
8
+ static save: (base64: string, fileName: string) => void;
9
+ /**
10
+ * 获取文件扩展名
11
+ */
12
+ static getExtension: (name: string) => string;
13
+ /**
14
+ * 判断当前文件名是否是excel文件
15
+ */
16
+ static isExcel: (name: string) => boolean;
17
+ /**
18
+ * 判断当前文件是否是图片文件
19
+ */
20
+ static isImage: (url: string) => boolean;
21
+ }
22
+ export default FileHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Html帮助类
3
+ */
4
+ declare class HtmlHelper {
5
+ /**
6
+ * 获取Html内容
7
+ */
8
+ static getHtml: (value: string) => string;
9
+ }
10
+ export default HtmlHelper;
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 多语言帮助类
3
+ */
4
+ declare class I18nHelper {
5
+ /**
6
+ * 获取浏览器默认语言
7
+ */
8
+ static getBrowserLanguage(): "en" | "zh-cn";
9
+ /**
10
+ * 获取当前语言
11
+ */
12
+ static getCurrentLanguage(): any;
13
+ }
14
+ export default I18nHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 图片帮助类
3
+ */
4
+ declare class ImageHelper {
5
+ /**
6
+ * 获取base64图片地址
7
+ */
8
+ static base64: (base64: string) => string;
9
+ }
10
+ export default ImageHelper;
@@ -0,0 +1,26 @@
1
+ import ComponentHelper from './component-helper';
2
+ import ArrayHelper from "./array-helper";
3
+ import CookieHelper from "./cookie-helper";
4
+ import DomHelper from "./dom-helper";
5
+ import DictionaryHelper from "./dictionary-helper";
6
+ import EventHelper from "./event-helper";
7
+ import FileHelper from "./file-helper";
8
+ import HtmlHelper from "./html-helper";
9
+ import ImageHelper from "./image-helper";
10
+ import MathHelper from "./math-helper";
11
+ import MicroHelper from "./micro-helper";
12
+ import MountHelper from "./mount-helper";
13
+ import ObjectHelper from "./object-helper";
14
+ import StringHelper from "./string-helper";
15
+ import ScriptHelper from "./script-helper";
16
+ import TaskHelper from "./task-helper";
17
+ import TypeHelper from "./type-helper";
18
+ import TimeHelper from "./time-helper";
19
+ import TreeHelper from "./tree-helper";
20
+ import StorageHelper from "./storage-helper";
21
+ import ScrollHelper from "./scroll-helper";
22
+ import JsonHelper from "./json-helper";
23
+ import I18nHelper from "./i18n-helper";
24
+ import UrlHelper from "./url-helper";
25
+ import SignHelper from "./sign-helper";
26
+ export { ComponentHelper, ArrayHelper, CookieHelper, DomHelper, DictionaryHelper, EventHelper, FileHelper, HtmlHelper, ImageHelper, MathHelper, MountHelper, ObjectHelper, MicroHelper, StringHelper, ScriptHelper, TaskHelper, TypeHelper, TimeHelper, TreeHelper, StorageHelper, ScrollHelper, JsonHelper, I18nHelper, UrlHelper, SignHelper };
@@ -0,0 +1,31 @@
1
+ declare type Prop = {
2
+ key: string;
3
+ type: string;
4
+ remark: string;
5
+ };
6
+ /**
7
+ * JSON帮助类
8
+ */
9
+ declare class JsonHelper {
10
+ /**
11
+ * 从树集合构建出Json对象
12
+ */
13
+ static buildObject(tree: any[], childProp: string, fun: (node: any) => Prop): string;
14
+ /**
15
+ * 把字符串格式化为Json字符串
16
+ */
17
+ static stringify(value: string): string;
18
+ /**
19
+ * 把字符串格式化为Json字符串
20
+ */
21
+ static stringifyString(value: string): string;
22
+ /**
23
+ * 根据props中的.自动分割得到属性值
24
+ */
25
+ static getValue(value: string, props: string): string;
26
+ /**
27
+ * 把json字符串合并到目标对象上
28
+ */
29
+ static mergeTo(target: any, from: string): void;
30
+ }
31
+ export default JsonHelper;
@@ -0,0 +1,46 @@
1
+ /**
2
+ * 数学帮助类
3
+ */
4
+ declare class MathHelper {
5
+ /**
6
+ * 过滤某一页数据
7
+ */
8
+ static filterPage: (rows: any[], page: number, size: number) => any[];
9
+ /**
10
+ * 总页数
11
+ */
12
+ static pageCount: (count: number, size: number) => number;
13
+ /**
14
+ * 四舍五入
15
+ */
16
+ static round: (value: number, digits: number) => string;
17
+ /**
18
+ * 天花板函数
19
+ */
20
+ static ceil: (value: number) => number;
21
+ /**
22
+ * 获取百分比
23
+ */
24
+ static getPercentage: (current: number, total: number) => number;
25
+ /**
26
+ * 获取百分比,保留2位小数
27
+ */
28
+ static getPercentageText: (current: number, total: number) => string;
29
+ /**
30
+ * 获取进度文本
31
+ */
32
+ static getProgressText: (current: number, total: number) => string;
33
+ /**
34
+ * 获取大小
35
+ */
36
+ static size: (bytes: number) => string;
37
+ /**
38
+ * 生成指定范围内的随机数
39
+ */
40
+ static random(start: number, end: number): number;
41
+ /**
42
+ * 获取最大值
43
+ */
44
+ static max(...values: number[]): number;
45
+ }
46
+ export default MathHelper;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 微前端帮助类
3
+ */
4
+ declare class MicroHelper {
5
+ /**
6
+ * 加载乾坤子应用
7
+ */
8
+ static load: (name: any, entry: any, dom: any, props: any) => void;
9
+ }
10
+ export default MicroHelper;