halo-fe 1.0.4 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. package/dist/main.js +3283 -2220
  2. package/dist/style.css +1 -1
  3. package/dist/{vendor-crypto-js-B6Qe-gIg.js → vendor-crypto-js-DWn5nTKL.js} +3 -1
  4. package/dist/vendor-xlsx-js-style-DMPNZPOx.js +11862 -0
  5. package/esm/coms/Code.vue.d.ts +1 -1
  6. package/esm/coms/Fill.vue.d.ts +15 -0
  7. package/esm/coms/RichText.vue.d.ts +24 -0
  8. package/esm/coms/Scroller.vue.d.ts +28 -0
  9. package/esm/coms/index.d.ts +5 -1
  10. package/esm/coms/types/RichTextOptions.d.ts +14 -0
  11. package/esm/coms/types/RichTextProps.d.ts +12 -0
  12. package/esm/coms/types/ScrollerProps.d.ts +15 -0
  13. package/esm/coms/types/index.d.ts +4 -1
  14. package/esm/drivers/bridges/IBridge.d.ts +5 -0
  15. package/esm/drivers/bridges/index.d.ts +1 -0
  16. package/esm/drivers/cdns/index.d.ts +2 -1
  17. package/esm/drivers/driver-helper.d.ts +46 -0
  18. package/esm/drivers/encoders/Encoder.d.ts +6 -1
  19. package/esm/drivers/encoders/EncoderFactory.d.ts +0 -1
  20. package/esm/drivers/encoders/IEncoder.d.ts +7 -3
  21. package/esm/drivers/encoders/implement/Base64Encoder.d.ts +1 -1
  22. package/esm/drivers/encoders/index.d.ts +2 -1
  23. package/esm/drivers/factories/Factory.d.ts +9 -0
  24. package/esm/drivers/factories/IFactory.d.ts +4 -0
  25. package/esm/drivers/factories/index.d.ts +33 -5
  26. package/esm/drivers/hashers/HasherFactory.d.ts +0 -1
  27. package/esm/drivers/https/Http.d.ts +5 -5
  28. package/esm/drivers/https/HttpFactory.d.ts +0 -2
  29. package/esm/drivers/https/IHttp.d.ts +4 -4
  30. package/esm/drivers/https/entities/HttpResponse.d.ts +13 -1
  31. package/esm/drivers/https/implements/DefaultHttp.d.ts +1 -0
  32. package/esm/drivers/https/implements/HaloHttp.d.ts +28 -4
  33. package/esm/drivers/index.d.ts +7 -1
  34. package/esm/drivers/providers/implements/CookieProvider.d.ts +3 -0
  35. package/esm/drivers/providers/implements/StorageHelper.d.ts +34 -0
  36. package/esm/drivers/requesters/IRequester.d.ts +25 -0
  37. package/esm/drivers/requesters/Requester.d.ts +13 -0
  38. package/esm/drivers/requesters/RequesterFactory.d.ts +21 -0
  39. package/esm/drivers/requesters/entities/HttpRequest.d.ts +34 -0
  40. package/esm/drivers/requesters/entities/HttpResponse.d.ts +19 -0
  41. package/esm/drivers/requesters/implements/DefaultRequester.d.ts +12 -0
  42. package/esm/drivers/requesters/implements/LocalRequester.d.ts +43 -0
  43. package/esm/drivers/requesters/implements/MkRequester.d.ts +40 -0
  44. package/esm/drivers/requesters/index.d.ts +5 -0
  45. package/esm/drivers/signers/implements/DefaultSigner.d.ts +0 -2
  46. package/esm/drivers/ssos/ISso.d.ts +1 -1
  47. package/esm/drivers/ssos/implements/BearerSso.d.ts +1 -1
  48. package/esm/drivers/videos/VideoFactory.d.ts +3 -0
  49. package/esm/drivers/videos/index.d.ts +1 -0
  50. package/esm/drivers/voices/IVoice.d.ts +15 -0
  51. package/esm/drivers/voices/Voice.d.ts +8 -0
  52. package/esm/drivers/voices/VoiceFactory.d.ts +6 -0
  53. package/esm/drivers/voices/implement/DefaultVoice.d.ts +8 -0
  54. package/esm/drivers/voices/implement/TencentVoice.d.ts +11 -0
  55. package/esm/drivers/voices/index.d.ts +1 -0
  56. package/esm/helpers/ArrayHelper.d.ts +97 -0
  57. package/esm/helpers/BrowserHelper.d.ts +10 -0
  58. package/esm/helpers/ComponentHelper.d.ts +18 -0
  59. package/esm/helpers/DictionaryHelper.d.ts +18 -0
  60. package/esm/helpers/DomHelper.d.ts +91 -0
  61. package/esm/helpers/EventHelper.d.ts +30 -0
  62. package/esm/helpers/FileHelper.d.ts +22 -0
  63. package/esm/helpers/HtmlHelper.d.ts +10 -0
  64. package/esm/helpers/ImageHelper.d.ts +10 -0
  65. package/esm/helpers/JsonHelper.d.ts +35 -0
  66. package/esm/helpers/MathHelper.d.ts +50 -0
  67. package/esm/helpers/MicroHelper.d.ts +10 -0
  68. package/esm/helpers/MountHelper.d.ts +14 -0
  69. package/esm/helpers/ObjectHelper.d.ts +38 -0
  70. package/esm/helpers/ScriptHelper.d.ts +31 -0
  71. package/esm/helpers/ScrollHelper.d.ts +14 -0
  72. package/esm/helpers/SignHelper.d.ts +14 -0
  73. package/esm/helpers/StringHelper.d.ts +94 -0
  74. package/esm/helpers/TaskHelper.d.ts +26 -0
  75. package/esm/helpers/TimeHelper.d.ts +66 -0
  76. package/esm/helpers/TreeHelper.d.ts +54 -0
  77. package/esm/helpers/TypeHelper.d.ts +26 -0
  78. package/esm/helpers/UrlHelper.d.ts +88 -0
  79. package/esm/helpers/index.d.ts +25 -26
  80. package/esm/helpers/json-helper.d.ts +4 -12
  81. package/esm/helpers/object-helper.d.ts +0 -4
  82. package/esm/helpers/types/TreeNodeProp.d.ts +6 -0
  83. package/esm/helpers/types/index.d.ts +2 -0
  84. package/esm/helpers/url-helper.d.ts +2 -2
  85. package/esm/main.d.ts +7 -6
  86. package/esm/plugins/index.d.ts +3 -2
  87. package/esm/plugins/types/IMessager.d.ts +34 -0
  88. package/esm/plugins/types/IMessenger.d.ts +34 -0
  89. package/esm/plugins/types/index.d.ts +10 -0
  90. package/esm/repos/SettingRepo.d.ts +11 -0
  91. package/esm/repos/index.d.ts +3 -0
  92. package/esm/services/index.d.ts +12 -6
  93. package/esm/servs/IServ.d.ts +6 -0
  94. package/esm/servs/Serv.d.ts +4 -0
  95. package/esm/servs/ServFactory.d.ts +11 -0
  96. package/esm/servs/implement/ConfigServ.d.ts +66 -0
  97. package/esm/servs/implement/DriverServ.d.ts +36 -0
  98. package/esm/servs/implement/EnvServ.d.ts +14 -0
  99. package/esm/servs/implement/LogServ.d.ts +19 -0
  100. package/esm/servs/implement/SettingServ.d.ts +42 -0
  101. package/esm/servs/implement/SocketServ.d.ts +38 -0
  102. package/esm/servs/implement/UserServ.d.ts +47 -0
  103. package/esm/servs/index.d.ts +15 -0
  104. package/esm/stores/config.d.ts +6 -10
  105. package/esm/stores/driver.d.ts +6 -2
  106. package/esm/stores/index.d.ts +2 -3
  107. package/esm/stores/setting.d.ts +4 -0
  108. package/esm/stores/user.d.ts +7 -3
  109. package/esm/svcs/ISvc.d.ts +6 -0
  110. package/esm/svcs/Svc.d.ts +4 -0
  111. package/esm/svcs/SvcFactory.d.ts +11 -0
  112. package/esm/svcs/implement/ConfigSvc.d.ts +75 -0
  113. package/esm/svcs/implement/DriverSvc.d.ts +36 -0
  114. package/esm/svcs/implement/EnvSvc.d.ts +14 -0
  115. package/esm/svcs/implement/LogSvc.d.ts +19 -0
  116. package/esm/svcs/implement/SettingSvc.d.ts +42 -0
  117. package/esm/svcs/implement/SocketSvc.d.ts +38 -0
  118. package/esm/svcs/implement/UserSvc.d.ts +47 -0
  119. package/esm/svcs/index.d.ts +33 -0
  120. package/esm/svcs/proxies/driverSvc.d.ts +18 -0
  121. package/esm/svcs/proxies/index.d.ts +2 -0
  122. package/esm/thirds/index.d.ts +8 -0
  123. package/esm/types/CreateOptions.d.ts +18 -0
  124. package/esm/types/index.d.ts +2 -0
  125. package/esm/utilities/EventUtility.d.ts +39 -8
  126. package/esm/utilities/index.d.ts +1 -0
  127. package/esm/utilities/types/DragEvent.d.ts +11 -0
  128. package/esm/utilities/types/DragOptions.d.ts +28 -0
  129. package/esm/utilities/types/Position.d.ts +15 -0
  130. package/esm/utilities/types/Range.d.ts +10 -0
  131. package/esm/utilities/types/Rect.d.ts +6 -0
  132. package/esm/utilities/types/index.d.ts +5 -0
  133. package/package.json +5 -4
  134. package/dist/vendor-@vue-l0sNRNKZ.js +0 -1
  135. package/dist/vendor-pinia-DVLspbiC.js +0 -310
  136. package/dist/vendor-vue-demi-CIhrFbpB.js +0 -17
  137. package/esm/services/types/IMessage.d.ts +0 -14
  138. package/esm/services/types/IMessager.d.ts +0 -14
  139. package/esm/services/types/index.d.ts +0 -2
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 事件挂载帮助类
3
+ */
4
+ declare class MountHelper {
5
+ /**
6
+ * 激发主框架事件
7
+ */
8
+ static emit: (event: string, payload: any) => void;
9
+ /**
10
+ * 批量激发主框架事件
11
+ */
12
+ static emits: (events: any) => void;
13
+ }
14
+ export default MountHelper;
@@ -0,0 +1,38 @@
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
+ * 获取对象不区分大小写的key
35
+ */
36
+ static getKey(value: object, key: string): string;
37
+ }
38
+ 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,14 @@
1
+ /**
2
+ * 签名帮助类
3
+ */
4
+ declare class SignHelper {
5
+ /**
6
+ * 清空对象中的空值
7
+ */
8
+ static clean(obj: object): void;
9
+ /**
10
+ * 签名字典
11
+ */
12
+ static signDictionary(dictionary: object, encoding?: boolean): string;
13
+ }
14
+ export default SignHelper;
@@ -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,66 @@
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) => Date;
49
+ /**
50
+ * 添加月份
51
+ */
52
+ static addMonths: (value: any, months: number) => Date;
53
+ /**
54
+ * 添加小时
55
+ */
56
+ static addHours: (value: any, hours: number) => Date;
57
+ /**
58
+ * 判断指定时间是否是周末
59
+ */
60
+ static isWeekend: (value: any) => boolean;
61
+ /**
62
+ * 把中国时间,转换为当地时间
63
+ */
64
+ static localeTime: (time: any) => Date;
65
+ }
66
+ 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,88 @@
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(value: string): string;
83
+ /**
84
+ * 是否是http或https开头的地址
85
+ */
86
+ static httpOrHttps(url: string): boolean;
87
+ }
88
+ export default UrlHelper;
@@ -1,26 +1,25 @@
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 };
1
+ import ComponentHelper from './ComponentHelper';
2
+ import ArrayHelper from "./ArrayHelper";
3
+ import DomHelper from "./DomHelper";
4
+ import DictionaryHelper from "./DictionaryHelper";
5
+ import EventHelper from "./EventHelper";
6
+ import FileHelper from "./FileHelper";
7
+ import HtmlHelper from "./HtmlHelper";
8
+ import ImageHelper from "./ImageHelper";
9
+ import MathHelper from "./MathHelper";
10
+ import MicroHelper from "./MicroHelper";
11
+ import MountHelper from "./MountHelper";
12
+ import ObjectHelper from "./ObjectHelper";
13
+ import StringHelper from "./StringHelper";
14
+ import ScriptHelper from "./ScriptHelper";
15
+ import TaskHelper from "./TaskHelper";
16
+ import TypeHelper from "./TypeHelper";
17
+ import TimeHelper from "./TimeHelper";
18
+ import TreeHelper from "./TreeHelper";
19
+ import StorageHelper from "../drivers/providers/implements/StorageHelper";
20
+ import ScrollHelper from "./ScrollHelper";
21
+ import JsonHelper from "./JsonHelper";
22
+ import BrowserHelper from "./BrowserHelper";
23
+ import UrlHelper from "./UrlHelper";
24
+ import SignHelper from "./SignHelper";
25
+ export { ComponentHelper, ArrayHelper, DomHelper, DictionaryHelper, EventHelper, FileHelper, HtmlHelper, ImageHelper, MathHelper, MountHelper, ObjectHelper, MicroHelper, StringHelper, ScriptHelper, TaskHelper, TypeHelper, TimeHelper, TreeHelper, StorageHelper, ScrollHelper, JsonHelper, BrowserHelper, UrlHelper, SignHelper };
@@ -8,21 +8,17 @@ declare type Prop = {
8
8
  */
9
9
  declare class JsonHelper {
10
10
  /**
11
- * 把字符串格式化为Json字符串
11
+ * 从树集合构建出Json对象
12
12
  */
13
- static stringify(value: any): string;
13
+ static buildObject(tree: any[], childProp: string, fun: (node: any) => Prop): string;
14
14
  /**
15
- * 对非字符串进行序列化
15
+ * 把字符串格式化为Json字符串
16
16
  */
17
- static stringifyWithString(value: any): string;
17
+ static stringify(value: string): string;
18
18
  /**
19
19
  * 把字符串格式化为Json字符串
20
20
  */
21
21
  static stringifyString(value: string): string;
22
- /**
23
- * 反序列化成json对象
24
- */
25
- static parse(value: string): any;
26
22
  /**
27
23
  * 根据props中的.自动分割得到属性值
28
24
  */
@@ -31,9 +27,5 @@ declare class JsonHelper {
31
27
  * 把json字符串合并到目标对象上
32
28
  */
33
29
  static mergeTo(target: any, from: string): void;
34
- /**
35
- * 从树集合构建出Json对象
36
- */
37
- static buildObject(tree: any[], childProp: string, fun: (node: any) => Prop): string;
38
30
  }
39
31
  export default JsonHelper;
@@ -30,9 +30,5 @@ declare class ObjectHelper {
30
30
  * 给对象添加属性集合,并赋值
31
31
  */
32
32
  static addProperties: (obj: object, keys: string[], value: string) => void;
33
- /**
34
- * 获取对象不区分大小写的key
35
- */
36
- static getKey(value: object, key: string): string;
37
33
  }
38
34
  export default ObjectHelper;
@@ -0,0 +1,6 @@
1
+ interface TreeNodeProp {
2
+ key: string;
3
+ type: string;
4
+ remark: string;
5
+ }
6
+ export default TreeNodeProp;
@@ -0,0 +1,2 @@
1
+ import TreeNodeProp from "./TreeNodeProp";
2
+ export { TreeNodeProp };
@@ -83,11 +83,11 @@ declare class UrlHelper {
83
83
  /**
84
84
  * 把指定对象转换成base64字符串
85
85
  */
86
- static base64(obj: object): Promise<string>;
86
+ static base64(obj: object): string;
87
87
  /**
88
88
  * 把指定base64字符串解析为原对象
89
89
  */
90
- static base64Decode(val: string): Promise<any>;
90
+ static base64Decode(val: string): any;
91
91
  /**
92
92
  * 是否是http或https开头的地址
93
93
  */
package/esm/main.d.ts CHANGED
@@ -1,14 +1,15 @@
1
- import { IMessager } from "./services";
1
+ import { IMessenger } from "./plugins";
2
2
  import "./styles/index.scss";
3
3
  export * from "./coms";
4
4
  export * from "./drivers";
5
5
  export * from "./helpers";
6
6
  export * from "./plugins";
7
- export * from "./services";
8
- export * from "./stores";
7
+ export * from "./repos";
8
+ export * from "./svcs";
9
+ export * from "./types";
9
10
  export * from "./utilities";
10
11
  /**
11
- * 初始化框架
12
+ * 初始化前端基础框架
12
13
  */
13
- declare let createHalo: (messager: IMessager) => Promise<void>;
14
- export { createHalo };
14
+ declare let createFe: (messenger: IMessenger) => Promise<void>;
15
+ export { createFe };
@@ -4,5 +4,6 @@ import moment from "moment";
4
4
  /**
5
5
  * 异步加载echarts
6
6
  */
7
- export declare function loadEcharts(): Promise<unknown>;
8
- export { loader, Monaco, moment };
7
+ declare let loadEcharts: () => Promise<unknown>;
8
+ export * from "./types";
9
+ export { loader, Monaco, moment, loadEcharts };
@@ -0,0 +1,34 @@
1
+ /**
2
+ * 消息提示接口,下游自己定义
3
+ */
4
+ interface IMessager {
5
+ /**
6
+ * 显示全局成功消息
7
+ */
8
+ success(message: string): void;
9
+ /**
10
+ * 显示全局警告消息
11
+ */
12
+ warning(message: string | number): void;
13
+ /**
14
+ * 显示全局信息消息
15
+ */
16
+ info(message: string): void;
17
+ /**
18
+ * 显示全局错误消息
19
+ */
20
+ error(message: string): void;
21
+ /**
22
+ * 显示全局错误消息
23
+ */
24
+ confirm(title: string, message: string, options?: any): Promise<any>;
25
+ /**
26
+ * 显示警告框
27
+ */
28
+ alert(title: string, message: string, options?: any): void;
29
+ /**
30
+ * 通知
31
+ */
32
+ notify(title: string, message: string, type: string): void;
33
+ }
34
+ export default IMessager;