halo-fe 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/main.js +3283 -2228
- package/dist/style.css +1 -1
- package/dist/{vendor-crypto-js-B6Qe-gIg.js → vendor-crypto-js-DWn5nTKL.js} +3 -1
- package/dist/vendor-xlsx-js-style-DMPNZPOx.js +11862 -0
- package/esm/coms/Code.vue.d.ts +1 -1
- package/esm/coms/Fill.vue.d.ts +15 -0
- package/esm/coms/RichText.vue.d.ts +24 -0
- package/esm/coms/Scroller.vue.d.ts +28 -0
- package/esm/coms/index.d.ts +5 -1
- package/esm/coms/types/RichTextOptions.d.ts +14 -0
- package/esm/coms/types/RichTextProps.d.ts +12 -0
- package/esm/coms/types/ScrollerProps.d.ts +15 -0
- package/esm/coms/types/index.d.ts +4 -1
- package/esm/drivers/bridges/index.d.ts +1 -0
- package/esm/drivers/cdns/index.d.ts +2 -1
- package/esm/drivers/driver-helper.d.ts +46 -0
- package/esm/drivers/encoders/Encoder.d.ts +6 -1
- package/esm/drivers/encoders/EncoderFactory.d.ts +0 -1
- package/esm/drivers/encoders/IEncoder.d.ts +7 -3
- package/esm/drivers/encoders/implement/Base64Encoder.d.ts +1 -1
- package/esm/drivers/encoders/index.d.ts +2 -1
- package/esm/drivers/factories/Factory.d.ts +9 -0
- package/esm/drivers/factories/IFactory.d.ts +4 -0
- package/esm/drivers/factories/index.d.ts +14 -5
- package/esm/drivers/hashers/HasherFactory.d.ts +0 -1
- package/esm/drivers/https/Http.d.ts +5 -5
- package/esm/drivers/https/HttpFactory.d.ts +0 -2
- package/esm/drivers/https/IHttp.d.ts +4 -4
- package/esm/drivers/https/entities/HttpResponse.d.ts +13 -1
- package/esm/drivers/https/implements/DefaultHttp.d.ts +1 -0
- package/esm/drivers/https/implements/HaloHttp.d.ts +28 -4
- package/esm/drivers/index.d.ts +7 -1
- package/esm/drivers/providers/implements/CookieProvider.d.ts +3 -0
- package/esm/drivers/providers/implements/StorageHelper.d.ts +34 -0
- package/esm/drivers/requesters/IRequester.d.ts +25 -0
- package/esm/drivers/requesters/Requester.d.ts +13 -0
- package/esm/drivers/requesters/RequesterFactory.d.ts +21 -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/implements/DefaultSigner.d.ts +0 -2
- package/esm/drivers/videos/VideoFactory.d.ts +3 -0
- package/esm/drivers/videos/index.d.ts +1 -0
- package/esm/drivers/voices/IVoice.d.ts +2 -1
- package/esm/drivers/voices/Voice.d.ts +8 -0
- package/esm/drivers/voices/VoiceFactory.d.ts +6 -1
- package/esm/drivers/voices/implement/DefaultVoice.d.ts +4 -2
- package/esm/drivers/voices/implement/TencentVoice.d.ts +4 -2
- package/esm/drivers/voices/index.d.ts +1 -0
- package/esm/helpers/ArrayHelper.d.ts +97 -0
- package/esm/helpers/BrowserHelper.d.ts +10 -0
- package/esm/helpers/ComponentHelper.d.ts +18 -0
- package/esm/helpers/DictionaryHelper.d.ts +18 -0
- package/esm/helpers/DomHelper.d.ts +91 -0
- package/esm/helpers/EventHelper.d.ts +30 -0
- package/esm/helpers/FileHelper.d.ts +22 -0
- package/esm/helpers/HtmlHelper.d.ts +10 -0
- package/esm/helpers/ImageHelper.d.ts +10 -0
- package/esm/helpers/JsonHelper.d.ts +35 -0
- package/esm/helpers/MathHelper.d.ts +50 -0
- package/esm/helpers/MicroHelper.d.ts +10 -0
- package/esm/helpers/MountHelper.d.ts +14 -0
- package/esm/helpers/ObjectHelper.d.ts +38 -0
- package/esm/helpers/ScriptHelper.d.ts +31 -0
- package/esm/helpers/ScrollHelper.d.ts +14 -0
- package/esm/helpers/SignHelper.d.ts +14 -0
- package/esm/helpers/StringHelper.d.ts +94 -0
- package/esm/helpers/TaskHelper.d.ts +26 -0
- package/esm/helpers/TimeHelper.d.ts +66 -0
- package/esm/helpers/TreeHelper.d.ts +54 -0
- package/esm/helpers/TypeHelper.d.ts +26 -0
- package/esm/helpers/UrlHelper.d.ts +88 -0
- package/esm/helpers/index.d.ts +25 -26
- package/esm/helpers/json-helper.d.ts +4 -12
- package/esm/helpers/object-helper.d.ts +0 -4
- package/esm/helpers/time-helper.d.ts +3 -7
- package/esm/helpers/types/TreeNodeProp.d.ts +6 -0
- package/esm/helpers/types/index.d.ts +2 -0
- package/esm/helpers/url-helper.d.ts +2 -2
- package/esm/main.d.ts +5 -4
- package/esm/plugins/index.d.ts +2 -2
- package/esm/plugins/types/IMessager.d.ts +1 -1
- package/esm/{services/types/IMessager.d.ts → plugins/types/IMessenger.d.ts} +4 -4
- package/esm/plugins/types/index.d.ts +8 -5
- package/esm/repos/SettingRepo.d.ts +11 -0
- package/esm/repos/index.d.ts +3 -0
- package/esm/services/index.d.ts +14 -1
- package/esm/servs/IServ.d.ts +6 -0
- package/esm/servs/Serv.d.ts +4 -0
- package/esm/servs/ServFactory.d.ts +11 -0
- package/esm/servs/implement/ConfigServ.d.ts +66 -0
- package/esm/servs/implement/DriverServ.d.ts +36 -0
- package/esm/servs/implement/EnvServ.d.ts +14 -0
- package/esm/servs/implement/LogServ.d.ts +19 -0
- package/esm/servs/implement/SettingServ.d.ts +42 -0
- package/esm/servs/implement/SocketServ.d.ts +38 -0
- package/esm/servs/implement/UserServ.d.ts +47 -0
- package/esm/servs/index.d.ts +15 -0
- package/esm/stores/config.d.ts +6 -10
- package/esm/stores/driver.d.ts +6 -2
- package/esm/stores/index.d.ts +2 -3
- package/esm/stores/setting.d.ts +4 -0
- package/esm/stores/user.d.ts +7 -3
- package/esm/svcs/ISvc.d.ts +6 -0
- package/esm/svcs/Svc.d.ts +4 -0
- package/esm/svcs/SvcFactory.d.ts +11 -0
- package/esm/svcs/implement/ConfigSvc.d.ts +75 -0
- package/esm/svcs/implement/DriverSvc.d.ts +36 -0
- package/esm/svcs/implement/EnvSvc.d.ts +14 -0
- package/esm/svcs/implement/LogSvc.d.ts +19 -0
- package/esm/svcs/implement/SettingSvc.d.ts +42 -0
- package/esm/svcs/implement/SocketSvc.d.ts +38 -0
- package/esm/svcs/implement/UserSvc.d.ts +47 -0
- package/esm/svcs/index.d.ts +33 -0
- package/esm/svcs/proxies/driverSvc.d.ts +18 -0
- package/esm/svcs/proxies/index.d.ts +2 -0
- package/esm/thirds/index.d.ts +8 -0
- package/esm/types/CreateOptions.d.ts +18 -0
- package/esm/types/index.d.ts +2 -0
- package/esm/utilities/EventUtility.d.ts +39 -8
- package/esm/utilities/index.d.ts +1 -0
- package/esm/utilities/types/DragEvent.d.ts +11 -0
- package/esm/utilities/types/DragOptions.d.ts +28 -0
- package/esm/utilities/types/Position.d.ts +15 -0
- package/esm/utilities/types/Range.d.ts +10 -0
- package/esm/utilities/types/Rect.d.ts +6 -0
- package/esm/utilities/types/index.d.ts +5 -0
- package/package.json +5 -4
- package/dist/vendor-@vue-l0sNRNKZ.js +0 -1
- package/dist/vendor-pinia-DVLspbiC.js +0 -310
- package/dist/vendor-vue-demi-CIhrFbpB.js +0 -17
- package/esm/services/types/IMessage.d.ts +0 -14
- package/esm/services/types/index.d.ts +0 -2
package/esm/coms/Code.vue.d.ts
CHANGED
@@ -13,9 +13,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
13
13
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<CodeProps>, {
|
14
14
|
config: {};
|
15
15
|
}>>> & {
|
16
|
+
onChange?: (value: string) => any;
|
16
17
|
onScroll?: (scrollTop: number) => any;
|
17
18
|
onMounted?: (monaco: typeof Monaco, editor: Monaco.editor.IStandaloneCodeEditor) => any;
|
18
|
-
onChange?: (value: string) => any;
|
19
19
|
"onUpdate:modelValue"?: (value: any) => any;
|
20
20
|
}, {
|
21
21
|
config: any;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
declare function __VLS_template(): {
|
2
|
+
default?(_: {}): any;
|
3
|
+
};
|
4
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
5
|
+
resize: (...args: any[]) => void;
|
6
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
7
|
+
onResize?: (...args: any[]) => any;
|
8
|
+
}, {}, {}>;
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
10
|
+
export default _default;
|
11
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
12
|
+
new (): {
|
13
|
+
$slots: S;
|
14
|
+
};
|
15
|
+
};
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { RichTextProps } from "./types";
|
2
|
+
declare let __VLS_typeProps: RichTextProps;
|
3
|
+
type __VLS_PublicProps = {
|
4
|
+
modelValue?: string;
|
5
|
+
} & typeof __VLS_typeProps;
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
7
|
+
"update:modelValue": (modelValue: string) => void;
|
8
|
+
change: (...args: any[]) => void;
|
9
|
+
scroll: (...args: any[]) => void;
|
10
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
|
11
|
+
onChange?: (...args: any[]) => any;
|
12
|
+
onScroll?: (...args: any[]) => any;
|
13
|
+
"onUpdate:modelValue"?: (modelValue: string) => any;
|
14
|
+
}, {}, {}>;
|
15
|
+
export default _default;
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
17
|
+
type __VLS_TypePropsToOption<T> = {
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
20
|
+
} : {
|
21
|
+
type: import('vue').PropType<T[K]>;
|
22
|
+
required: true;
|
23
|
+
};
|
24
|
+
};
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import ScrollerProps from "./types/ScrollerProps";
|
2
|
+
declare function __VLS_template(): {
|
3
|
+
default?(_: {}): any;
|
4
|
+
};
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<ScrollerProps>, {
|
6
|
+
scrollTo: (scrollTop: number) => void;
|
7
|
+
update: () => void;
|
8
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
9
|
+
scroll: (...args: any[]) => void;
|
10
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<ScrollerProps>>> & {
|
11
|
+
onScroll?: (...args: any[]) => any;
|
12
|
+
}, {}, {}>;
|
13
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
14
|
+
export default _default;
|
15
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
16
|
+
new (): {
|
17
|
+
$slots: S;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
21
|
+
type __VLS_TypePropsToOption<T> = {
|
22
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
23
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
24
|
+
} : {
|
25
|
+
type: import('vue').PropType<T[K]>;
|
26
|
+
required: true;
|
27
|
+
};
|
28
|
+
};
|
package/esm/coms/index.d.ts
CHANGED
@@ -3,6 +3,10 @@ import HaCol from "./Col.vue";
|
|
3
3
|
import HaCompare from "./Compare.vue";
|
4
4
|
import HaContainer from "./Container.vue";
|
5
5
|
import HaEmpty from "./Empty.vue";
|
6
|
+
import HaFill from "./Fill.vue";
|
6
7
|
import HaProgress from "./Progress.vue";
|
8
|
+
import HaRichText from "./RichText.vue";
|
7
9
|
import HaRow from "./Row.vue";
|
8
|
-
|
10
|
+
import HaScroller from "./Scroller.vue";
|
11
|
+
export * from "./types";
|
12
|
+
export { HaCode, HaCol, HaCompare, HaContainer, HaEmpty, HaFill, HaProgress, HaRichText, HaRow, HaScroller };
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import CodeEmit from "./CodeEmit";
|
2
2
|
import CodeProps from "./CodeProps";
|
3
|
+
import RichTextOptions from "./RichTextOptions";
|
4
|
+
import RichTextProps from "./RichTextProps";
|
3
5
|
import RowProps from "./RowProps";
|
4
|
-
|
6
|
+
import ScrollerProps from "./ScrollerProps";
|
7
|
+
export { type CodeEmit, type CodeProps, type RichTextOptions, type RichTextProps, type RowProps, type ScrollerProps };
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,46 @@
|
|
1
|
+
import ISso from "./ssos/ISso";
|
2
|
+
import ISigner from "./signers/ISigner";
|
3
|
+
import IFeature from "./features/IFeature";
|
4
|
+
import IProvider from "./providers/IProvider";
|
5
|
+
import IExcel from "./excels/IExcel";
|
6
|
+
import ICdn from "./cdns/ICdn";
|
7
|
+
import IEncoder from "./encoders/IEncoder";
|
8
|
+
import IHasher from "./hashers/IHasher";
|
9
|
+
/**
|
10
|
+
* 驱动帮助类
|
11
|
+
*/
|
12
|
+
declare class DriverHelper {
|
13
|
+
/**
|
14
|
+
* 获取SSO
|
15
|
+
*/
|
16
|
+
static getSso(type: string): ISso;
|
17
|
+
/**
|
18
|
+
* 获取签名器
|
19
|
+
*/
|
20
|
+
static getSigner(type: string): ISigner;
|
21
|
+
/**
|
22
|
+
* 获取特征
|
23
|
+
*/
|
24
|
+
static getFeature(type: string): IFeature;
|
25
|
+
/**
|
26
|
+
* 获取并开启 指定类型的驱动程序
|
27
|
+
*/
|
28
|
+
static getProviderAsync(type: string, store?: string): Promise<IProvider>;
|
29
|
+
/**
|
30
|
+
* 获取Excel实例
|
31
|
+
*/
|
32
|
+
static getExcel(type: string): IExcel;
|
33
|
+
/**
|
34
|
+
* 获取CDN实例
|
35
|
+
*/
|
36
|
+
static getCdn(type: string, baseUrl?: string): ICdn;
|
37
|
+
/**
|
38
|
+
* 获取编码器
|
39
|
+
*/
|
40
|
+
static getEncoder(type: string): IEncoder;
|
41
|
+
/**
|
42
|
+
* 获取Hasher
|
43
|
+
*/
|
44
|
+
static getHasher(type: string): IHasher;
|
45
|
+
}
|
46
|
+
export default DriverHelper;
|
@@ -5,7 +5,12 @@ import IEncoder from "./IEncoder";
|
|
5
5
|
declare abstract class Encoder implements IEncoder {
|
6
6
|
type: string;
|
7
7
|
abstract open(conn: string): void;
|
8
|
-
|
8
|
+
encode(value: string | object): string;
|
9
|
+
/**
|
10
|
+
* 编码字符串
|
11
|
+
*/
|
12
|
+
abstract encodeString(value: string): string;
|
13
|
+
decodeObj(value: string): object;
|
9
14
|
abstract decode(value: string): string;
|
10
15
|
}
|
11
16
|
export default Encoder;
|
@@ -11,11 +11,15 @@ interface IEncoder {
|
|
11
11
|
*/
|
12
12
|
open(conn: string): void;
|
13
13
|
/**
|
14
|
-
*
|
14
|
+
* 编码字符串/实体,得到字符串
|
15
15
|
*/
|
16
|
-
encode(value: string): string;
|
16
|
+
encode(value: string | object): string;
|
17
17
|
/**
|
18
|
-
*
|
18
|
+
* 解码字符串,得到实体
|
19
|
+
*/
|
20
|
+
decodeObj(value: string): object;
|
21
|
+
/**
|
22
|
+
* 解码字符串
|
19
23
|
*/
|
20
24
|
decode(value: string): string;
|
21
25
|
}
|
@@ -5,7 +5,7 @@ import Encoder from "../Encoder";
|
|
5
5
|
declare class Base64Encoder extends Encoder {
|
6
6
|
type: string;
|
7
7
|
open(conn: string): void;
|
8
|
-
|
8
|
+
encodeString(value: string): string;
|
9
9
|
decode(value: string): string;
|
10
10
|
}
|
11
11
|
export default Base64Encoder;
|
@@ -4,6 +4,11 @@ import IDriver from "../IDriver";
|
|
4
4
|
* 工厂基类
|
5
5
|
*/
|
6
6
|
declare abstract class Factory<T extends IDriver> implements IFactory<T> {
|
7
|
+
/**
|
8
|
+
* 实例集合
|
9
|
+
* 或者使用:Record<string, string>
|
10
|
+
*/
|
11
|
+
private instances;
|
7
12
|
/**
|
8
13
|
* 获取当前驱动所有实例
|
9
14
|
*/
|
@@ -12,5 +17,9 @@ declare abstract class Factory<T extends IDriver> implements IFactory<T> {
|
|
12
17
|
* 创建指定类型驱动
|
13
18
|
*/
|
14
19
|
create(type: string, conn?: string): Promise<T>;
|
20
|
+
/**
|
21
|
+
* 从缓存中获取指定名称的驱动,不存在则创建并执行初始化
|
22
|
+
*/
|
23
|
+
createIfAbsent(name: string, type?: string, open?: (entity: T) => void): Promise<T>;
|
15
24
|
}
|
16
25
|
export default Factory;
|
@@ -10,5 +10,9 @@ interface IFactory<T> {
|
|
10
10
|
* 创建指定类型的实例
|
11
11
|
*/
|
12
12
|
create(type: string, conn?: string): Promise<T>;
|
13
|
+
/**
|
14
|
+
* 从缓存中获取指定名称的驱动,不存在则创建并执行初始化
|
15
|
+
*/
|
16
|
+
createIfAbsent(name: string, type: string, open?: (entity: T) => void): Promise<T>;
|
13
17
|
}
|
14
18
|
export default IFactory;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import DriverFactory from "./DriverFactory";
|
2
2
|
import { HttpFactory, IHttp } from "../https";
|
3
|
-
import { EncoderFactory } from "../encoders";
|
3
|
+
import { EncoderFactory, IEncoder } from "../encoders";
|
4
4
|
import { CdnFactory } from "../cdns";
|
5
5
|
import { ExplainerFactory } from "../explainers";
|
6
6
|
import { ExcelFactory } from "../excels";
|
@@ -9,6 +9,7 @@ import { HasherFactory } from "../hashers";
|
|
9
9
|
import { ProviderFactory } from "../providers";
|
10
10
|
import { SignerFactory } from "../signers";
|
11
11
|
import { SsoFactory } from "../ssos";
|
12
|
+
import IHasher from "../hashers/IHasher";
|
12
13
|
/**
|
13
14
|
* 默认Http请求对象
|
14
15
|
*/
|
@@ -23,11 +24,19 @@ declare let providerFactory: ProviderFactory;
|
|
23
24
|
declare let signerFactory: SignerFactory;
|
24
25
|
declare let ssoFactory: SsoFactory;
|
25
26
|
/**
|
26
|
-
* 默认
|
27
|
+
* 默认base64编码
|
28
|
+
*/
|
29
|
+
declare let base64: IEncoder;
|
30
|
+
/**
|
31
|
+
* 默认Http请求对象
|
27
32
|
*/
|
28
33
|
declare let http: IHttp;
|
29
34
|
/**
|
30
|
-
*
|
35
|
+
* MD5 hash计算
|
36
|
+
*/
|
37
|
+
declare let md5: IHasher;
|
38
|
+
/**
|
39
|
+
* 初始化默认驱动实例
|
31
40
|
*/
|
32
|
-
declare let
|
33
|
-
export { cdnFactory, encoderFactory, excelFactory, explainerFactory, featureFactory, hasherFactory, httpFactory, providerFactory, signerFactory, ssoFactory, DriverFactory, http,
|
41
|
+
declare let initDriver: () => Promise<void>;
|
42
|
+
export { cdnFactory, encoderFactory, excelFactory, explainerFactory, featureFactory, hasherFactory, httpFactory, providerFactory, signerFactory, ssoFactory, DriverFactory, base64, http, md5, initDriver };
|
@@ -7,14 +7,14 @@ import HttpResponse from "./entities/HttpResponse";
|
|
7
7
|
declare abstract class Http implements IHttp {
|
8
8
|
type: string;
|
9
9
|
abstract open(conn: string): Promise<void>;
|
10
|
-
onRequest: (request: HttpRequest) => void
|
11
|
-
onResponse: (response: HttpResponse) => void
|
12
|
-
get(path: string): Promise<any>;
|
13
|
-
sendGet(path: string): Promise<HttpResponse>;
|
10
|
+
onRequest: (request: HttpRequest) => Promise<void>;
|
11
|
+
onResponse: (response: HttpResponse) => Promise<void>;
|
12
|
+
get(path: string, params?: any): Promise<any>;
|
13
|
+
sendGet(path: string, params?: any): Promise<HttpResponse>;
|
14
14
|
post(path: string, body: any): Promise<any>;
|
15
15
|
sendPost(path: string, body?: any): Promise<HttpResponse>;
|
16
16
|
patch(path: string): Promise<any>;
|
17
|
-
sendPatch(path: string, pairs
|
17
|
+
sendPatch(path: string, pairs?: any): Promise<HttpResponse>;
|
18
18
|
abstract send(request: HttpRequest): Promise<HttpResponse>;
|
19
19
|
/**
|
20
20
|
* 获取请求消息
|
@@ -5,12 +5,10 @@ import Factory from "../factories/Factory";
|
|
5
5
|
*/
|
6
6
|
declare class HttpFactory extends Factory<IHttp> {
|
7
7
|
getInstances(): IHttp[];
|
8
|
-
private _default;
|
9
8
|
/**
|
10
9
|
* 获取默认请求器
|
11
10
|
*/
|
12
11
|
getDefault(): Promise<IHttp>;
|
13
|
-
private halo;
|
14
12
|
/**
|
15
13
|
* 获取本地请求实例
|
16
14
|
* 获取完毕后,下游第一行代码就要配置消息服务
|
@@ -12,19 +12,19 @@ interface IHttp extends IDriver {
|
|
12
12
|
/**
|
13
13
|
* 请求时执行
|
14
14
|
*/
|
15
|
-
onRequest: (request: HttpRequest) => void
|
15
|
+
onRequest: (request: HttpRequest) => Promise<void>;
|
16
16
|
/**
|
17
17
|
* 响应时执行
|
18
18
|
*/
|
19
|
-
onResponse: (response: HttpResponse) => void
|
19
|
+
onResponse: (response: HttpResponse) => Promise<void>;
|
20
20
|
/**
|
21
21
|
* 发送GET请求,并得到响应体
|
22
22
|
*/
|
23
|
-
get(path: string): Promise<any>;
|
23
|
+
get(path: string, params?: any): Promise<any>;
|
24
24
|
/**
|
25
25
|
* 发送GET请求
|
26
26
|
*/
|
27
|
-
sendGet(path: string): Promise<HttpResponse>;
|
27
|
+
sendGet(path: string, params?: any): Promise<HttpResponse>;
|
28
28
|
/**
|
29
29
|
* 发送Post请求,并得到响应体
|
30
30
|
*/
|
@@ -5,9 +5,21 @@ import HttpMessage from "./HttpMessage";
|
|
5
5
|
*/
|
6
6
|
declare class HttpResponse extends HttpMessage {
|
7
7
|
/**
|
8
|
-
*
|
8
|
+
* 是否成功
|
9
|
+
*/
|
10
|
+
success: boolean;
|
11
|
+
/**
|
12
|
+
* 错误消息
|
13
|
+
*/
|
14
|
+
message: string;
|
15
|
+
/**
|
16
|
+
* 请求耗时(ms)
|
9
17
|
*/
|
10
18
|
elapsed: number;
|
19
|
+
/**
|
20
|
+
* 响应状态码
|
21
|
+
*/
|
22
|
+
status: number;
|
11
23
|
/**
|
12
24
|
* 对应的请求信息
|
13
25
|
*/
|
@@ -2,6 +2,8 @@ import Http from "../Http";
|
|
2
2
|
import HttpRequest from "../entities/HttpRequest";
|
3
3
|
import HttpResponse from "../entities/HttpResponse";
|
4
4
|
import IHttp from "../IHttp";
|
5
|
+
import { ISso } from "../../ssos";
|
6
|
+
import { ISigner } from "../../signers";
|
5
7
|
/**
|
6
8
|
* 框架请求器
|
7
9
|
*/
|
@@ -11,10 +13,34 @@ declare class HaloHttp extends Http {
|
|
11
13
|
* 基准地址
|
12
14
|
*/
|
13
15
|
baseUrl: string;
|
16
|
+
/**
|
17
|
+
* 当前用户信息
|
18
|
+
*/
|
19
|
+
user: any;
|
20
|
+
/**
|
21
|
+
* 请求语言
|
22
|
+
*/
|
23
|
+
language: string;
|
24
|
+
/**
|
25
|
+
* 当前环境
|
26
|
+
*/
|
27
|
+
env: string;
|
28
|
+
/**
|
29
|
+
* 当前终端
|
30
|
+
*/
|
31
|
+
platform: string;
|
14
32
|
/**
|
15
33
|
* 默认请求器
|
16
34
|
*/
|
17
35
|
http: IHttp;
|
36
|
+
/**
|
37
|
+
* 单点登录配置
|
38
|
+
*/
|
39
|
+
sso: ISso;
|
40
|
+
/**
|
41
|
+
* 单点登录配置
|
42
|
+
*/
|
43
|
+
signer: ISigner;
|
18
44
|
/**
|
19
45
|
* 开启
|
20
46
|
*/
|
@@ -24,11 +50,9 @@ declare class HaloHttp extends Http {
|
|
24
50
|
*/
|
25
51
|
send(request: HttpRequest): Promise<HttpResponse>;
|
26
52
|
/**
|
27
|
-
*
|
53
|
+
* 请求预处理
|
28
54
|
*/
|
29
|
-
|
30
|
-
[key: string]: string;
|
31
|
-
}>;
|
55
|
+
beforeRequest(request: HttpRequest): Promise<void>;
|
32
56
|
/**
|
33
57
|
* 处理网络错误和响应错误场景
|
34
58
|
*/
|
package/esm/drivers/index.d.ts
CHANGED
@@ -1,8 +1,14 @@
|
|
1
|
+
export * from "./bridges";
|
2
|
+
export * from "./cdns";
|
3
|
+
export * from "./encoders";
|
1
4
|
export * from "./excels";
|
5
|
+
export * from "./explainers";
|
2
6
|
export * from "./factories";
|
3
7
|
export * from "./features";
|
4
8
|
export * from "./hashers";
|
5
|
-
export * from "./providers";
|
6
9
|
export * from "./https";
|
10
|
+
export * from "./providers";
|
7
11
|
export * from "./signers";
|
8
12
|
export * from "./ssos";
|
13
|
+
export * from "./videos";
|
14
|
+
export * from "./voices";
|
@@ -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,25 @@
|
|
1
|
+
import HttpRequest from "./entities/HttpRequest";
|
2
|
+
import HttpResponse from "./entities/HttpResponse";
|
3
|
+
import IDriver from "../IDriver";
|
4
|
+
/**
|
5
|
+
* 请求器接口
|
6
|
+
*/
|
7
|
+
interface IRequester extends IDriver {
|
8
|
+
/**
|
9
|
+
* 开启
|
10
|
+
*/
|
11
|
+
open(conn: string): void;
|
12
|
+
/**
|
13
|
+
* 发送Post请求
|
14
|
+
*/
|
15
|
+
post<T>(path: string, body: any): Promise<T>;
|
16
|
+
/**
|
17
|
+
* 发送Post请求
|
18
|
+
*/
|
19
|
+
post(path: string, body: any): Promise<HttpResponse>;
|
20
|
+
/**
|
21
|
+
* 发送请求
|
22
|
+
*/
|
23
|
+
send(request: HttpRequest): Promise<HttpResponse>;
|
24
|
+
}
|
25
|
+
export default IRequester;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import IRequester from "./IRequester";
|
2
|
+
import HttpRequest from "./entities/HttpRequest";
|
3
|
+
import HttpResponse from "./entities/HttpResponse";
|
4
|
+
/**
|
5
|
+
* 请求器基类
|
6
|
+
*/
|
7
|
+
declare abstract class Requester implements IRequester {
|
8
|
+
type: string;
|
9
|
+
abstract open(conn: string): void;
|
10
|
+
post(path: string, body: any): Promise<HttpResponse>;
|
11
|
+
abstract send(request: HttpRequest): Promise<HttpResponse>;
|
12
|
+
}
|
13
|
+
export default Requester;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import IRequester from "./IRequester";
|
2
|
+
import Factory from "../factories/Factory";
|
3
|
+
/**
|
4
|
+
* 请求器工厂类
|
5
|
+
*/
|
6
|
+
declare class RequesterFactory extends Factory<IRequester> {
|
7
|
+
getInstances(): IRequester[];
|
8
|
+
create(type: string, conn?: string): IRequester;
|
9
|
+
private _default;
|
10
|
+
/**
|
11
|
+
* 获取默认请求器
|
12
|
+
*/
|
13
|
+
getDefault(): IRequester;
|
14
|
+
private local;
|
15
|
+
/**
|
16
|
+
* 获取本地请求实例
|
17
|
+
* 获取完毕后,下游第一行代码就要配置消息服务
|
18
|
+
*/
|
19
|
+
getLocal(): IRequester;
|
20
|
+
}
|
21
|
+
export default RequesterFactory;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
/**
|
2
|
+
* Http请求
|
3
|
+
*/
|
4
|
+
declare class HttpRequest {
|
5
|
+
/**
|
6
|
+
* 请求路径
|
7
|
+
*/
|
8
|
+
path: string;
|
9
|
+
/**
|
10
|
+
* 请求方法
|
11
|
+
*/
|
12
|
+
method: string;
|
13
|
+
/**
|
14
|
+
* 实际请求地址
|
15
|
+
*/
|
16
|
+
url?: string;
|
17
|
+
/**
|
18
|
+
* 请求头
|
19
|
+
*/
|
20
|
+
headers?: [string, string];
|
21
|
+
/**
|
22
|
+
* 内容类型
|
23
|
+
*/
|
24
|
+
contentType: string;
|
25
|
+
/**
|
26
|
+
* 请求数据
|
27
|
+
*/
|
28
|
+
data: any;
|
29
|
+
/**
|
30
|
+
* 请求体
|
31
|
+
*/
|
32
|
+
body: string;
|
33
|
+
}
|
34
|
+
export default HttpRequest;
|