@pisell/core 1.0.68 → 1.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/app/app.d.ts +107 -0
- package/es/app/app.js +3 -0
- package/es/communicationManager/index.d.ts +59 -0
- package/es/index.d.ts +8 -0
- package/es/locales/index.d.ts +39 -0
- package/es/locales/ja.d.ts +3 -0
- package/es/locales/pt.d.ts +3 -0
- package/es/logger/index.d.ts +135 -0
- package/es/request/index.d.ts +15 -6
- package/es/request/index.js +45 -0
- package/es/request/sse.d.ts +45 -0
- package/es/request/sse.js +164 -0
- package/lib/app/app.d.ts +107 -0
- package/lib/app/app.js +3 -0
- package/lib/communicationManager/index.d.ts +59 -0
- package/lib/index.d.ts +8 -0
- package/lib/locales/index.d.ts +39 -0
- package/lib/locales/ja.d.ts +3 -0
- package/lib/locales/pt.d.ts +3 -0
- package/lib/logger/index.d.ts +135 -0
- package/lib/request/index.d.ts +15 -6
- package/lib/request/index.js +25 -1
- package/lib/request/sse.d.ts +45 -0
- package/lib/request/sse.js +115 -0
- package/package.json +3 -2
package/es/app/app.d.ts
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { RouterManager } from '../routes';
|
|
2
|
+
import { ApplicationManager } from '../applicationManager';
|
|
3
|
+
import { History, HistoryOptions } from '../history';
|
|
4
|
+
import { Data } from '../data';
|
|
5
|
+
import { Locales, LocalesOptions } from '../locales';
|
|
6
|
+
import { Storage, StorageOptions } from '../storage';
|
|
7
|
+
import { MenuManager } from '../menuManager';
|
|
8
|
+
import LoggerManager, { LoggerOptions } from '../logger';
|
|
9
|
+
import { TasksManager } from '../tasks';
|
|
10
|
+
import IndexDBManager, { DBOptions } from '../indexDB';
|
|
11
|
+
import CMD, { CMDOptions } from "../cmd";
|
|
12
|
+
import AWS, { AWSOptions } from "../aws";
|
|
13
|
+
import CommunicationManager from '../communicationManager';
|
|
14
|
+
declare global {
|
|
15
|
+
interface Window {
|
|
16
|
+
app: App;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export interface Bootstrap {
|
|
20
|
+
hooks: {
|
|
21
|
+
[key: string]: () => Promise<void>;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export interface AppOptions {
|
|
25
|
+
logger?: LoggerOptions;
|
|
26
|
+
db?: DBOptions;
|
|
27
|
+
constants?: any;
|
|
28
|
+
history?: HistoryOptions;
|
|
29
|
+
storage?: StorageOptions;
|
|
30
|
+
locales?: LocalesOptions;
|
|
31
|
+
cmd?: CMDOptions;
|
|
32
|
+
aws?: AWSOptions;
|
|
33
|
+
getPisellos?: () => any;
|
|
34
|
+
sqlite?: () => any;
|
|
35
|
+
}
|
|
36
|
+
declare class App {
|
|
37
|
+
private static instance;
|
|
38
|
+
private plugins;
|
|
39
|
+
globalData: any;
|
|
40
|
+
router: RouterManager;
|
|
41
|
+
applicationManager: ApplicationManager;
|
|
42
|
+
history: History;
|
|
43
|
+
data: Data;
|
|
44
|
+
hooks: import("../hooks").HooksExport;
|
|
45
|
+
locales: Locales;
|
|
46
|
+
models: {
|
|
47
|
+
getStore: () => import("../models").Store;
|
|
48
|
+
StoreProvider: typeof import("react-redux").Provider;
|
|
49
|
+
setConfig: (models: any[]) => void;
|
|
50
|
+
};
|
|
51
|
+
request: {
|
|
52
|
+
get: (url: string, data: any, config: import("../request").RequestSetting | undefined) => Promise<any>;
|
|
53
|
+
post: (url: string, data: any, config: import("../request").RequestSetting | undefined) => Promise<any>;
|
|
54
|
+
put: (url: string, data: any, config: import("../request").RequestSetting | undefined) => Promise<any>;
|
|
55
|
+
remove: (url: string, data: any, config: import("../request").RequestSetting | undefined) => Promise<any>;
|
|
56
|
+
custom: (url: string, config: import("../request").RequestSetting | undefined) => any;
|
|
57
|
+
sse: <TMeta = import("../request/sse").SSEMetaData, TData = import("../request/sse").SSEDataPayload<any>, TComplete = import("../request/sse").SSECompletePayload>(url: string, data: Record<string, any> | undefined, config: import("../request").RequestSetting & {
|
|
58
|
+
method?: "GET" | "POST" | undefined;
|
|
59
|
+
actions?: import("../request/sse").SSEActions<TMeta, TData, TComplete> | undefined;
|
|
60
|
+
}) => Promise<() => void>;
|
|
61
|
+
setConfig: (newConfig: Partial<import("../request").RequestConfig>) => void;
|
|
62
|
+
getConfig: () => import("../request").RequestConfig;
|
|
63
|
+
};
|
|
64
|
+
storage: Storage;
|
|
65
|
+
menuManager: MenuManager;
|
|
66
|
+
cookie: {
|
|
67
|
+
setCookie: (name: string, value: string, domain?: string | undefined) => void;
|
|
68
|
+
getCookie: (name: string) => string | null;
|
|
69
|
+
deleteCookie: (name: string, domain?: string | undefined) => void;
|
|
70
|
+
checkCookie: (name: string) => boolean;
|
|
71
|
+
updateCookie: (name: string, value: string, domain?: string | undefined) => void;
|
|
72
|
+
};
|
|
73
|
+
website: {
|
|
74
|
+
setTitle: (title: string) => void;
|
|
75
|
+
setIcon: (paramsIcon: string) => void;
|
|
76
|
+
setAppleWebAppTitle: (title: string) => void;
|
|
77
|
+
};
|
|
78
|
+
logger: LoggerManager;
|
|
79
|
+
pubsub: import("../pubsub").PubSub;
|
|
80
|
+
cmd: CMD;
|
|
81
|
+
aws: AWS;
|
|
82
|
+
tasksManager: TasksManager;
|
|
83
|
+
getPisellos: any;
|
|
84
|
+
sqlite: any;
|
|
85
|
+
bootstrap?: Bootstrap;
|
|
86
|
+
dbManager: IndexDBManager | null;
|
|
87
|
+
constants: {
|
|
88
|
+
channel: string;
|
|
89
|
+
[key: string]: string;
|
|
90
|
+
};
|
|
91
|
+
comm: CommunicationManager;
|
|
92
|
+
private constructor();
|
|
93
|
+
static getInstance(options?: AppOptions): App;
|
|
94
|
+
setGlobalData(globalData: any): void;
|
|
95
|
+
usePlugin(name: string, plugin: any): void;
|
|
96
|
+
usePlugins(plugins: {
|
|
97
|
+
name: string;
|
|
98
|
+
plugin: any;
|
|
99
|
+
}[]): void;
|
|
100
|
+
getPlugin(name: string): any;
|
|
101
|
+
getGlobalData(): any;
|
|
102
|
+
install(): void;
|
|
103
|
+
unInstall(): void;
|
|
104
|
+
setBootstrap(bootstrap: Bootstrap): void;
|
|
105
|
+
getBootstrap(): Bootstrap | undefined;
|
|
106
|
+
}
|
|
107
|
+
export default App;
|
package/es/app/app.js
CHANGED
|
@@ -70,6 +70,8 @@ var App = /*#__PURE__*/function () {
|
|
|
70
70
|
_defineProperty(this, "tasksManager", void 0);
|
|
71
71
|
// getPisellos
|
|
72
72
|
_defineProperty(this, "getPisellos", void 0);
|
|
73
|
+
// sqlLite
|
|
74
|
+
_defineProperty(this, "sqlite", void 0);
|
|
73
75
|
_defineProperty(this, "bootstrap", void 0);
|
|
74
76
|
_defineProperty(this, "dbManager", null);
|
|
75
77
|
_defineProperty(this, "constants", {
|
|
@@ -94,6 +96,7 @@ var App = /*#__PURE__*/function () {
|
|
|
94
96
|
this.cmd = new CMD(this, options === null || options === void 0 ? void 0 : options.cmd);
|
|
95
97
|
this.aws = new AWS(this, options === null || options === void 0 ? void 0 : options.aws);
|
|
96
98
|
this.getPisellos = options === null || options === void 0 ? void 0 : options.getPisellos;
|
|
99
|
+
this.sqlite = options === null || options === void 0 ? void 0 : options.sqlite;
|
|
97
100
|
if (options !== null && options !== void 0 && options.constants) {
|
|
98
101
|
this.constants = options.constants || {};
|
|
99
102
|
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import App from '../app';
|
|
2
|
+
/**
|
|
3
|
+
* 插件基础类型,通信插件(如 socket、ably)需符合此结构
|
|
4
|
+
* 具体插件可扩展自有方法以支持链式调用
|
|
5
|
+
*/
|
|
6
|
+
export interface CommunicationPlugin {
|
|
7
|
+
destroy?: () => Promise<void>;
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* 插件注册选项
|
|
12
|
+
*/
|
|
13
|
+
export interface RegisterOptions {
|
|
14
|
+
/**
|
|
15
|
+
* 是否强制覆盖已存在的同名插件
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
force?: boolean;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* 通信管理器:支持注入、获取、移除多种通信插件(如 socket、ably 等)
|
|
22
|
+
* 管理器自身方法支持链式调用
|
|
23
|
+
*/
|
|
24
|
+
export default class CommunicationManager {
|
|
25
|
+
private app;
|
|
26
|
+
private plugins;
|
|
27
|
+
constructor(app: App);
|
|
28
|
+
/**
|
|
29
|
+
* 注入插件
|
|
30
|
+
* @param name 插件名称,如 'socket'、'ably'
|
|
31
|
+
* @param plugin 插件实例
|
|
32
|
+
* @param options 注册选项,可通过 force 强制覆盖已存在的插件
|
|
33
|
+
* @throws 当插件已存在且未设置 force 时抛出错误
|
|
34
|
+
*/
|
|
35
|
+
register<T extends CommunicationPlugin>(name: string, plugin: T, options?: RegisterOptions): void;
|
|
36
|
+
/**
|
|
37
|
+
* 根据名称获取插件,可对返回值进行链式调用(由插件自身实现)
|
|
38
|
+
* @param name 插件名称
|
|
39
|
+
* @returns 插件实例,未注册时返回 undefined
|
|
40
|
+
*/
|
|
41
|
+
getPlugin<T extends CommunicationPlugin = CommunicationPlugin>(name: string): T | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* 移除指定插件
|
|
44
|
+
* @param name 插件名称
|
|
45
|
+
*/
|
|
46
|
+
remove(name: string): Promise<void>;
|
|
47
|
+
/**
|
|
48
|
+
* 移除所有插件
|
|
49
|
+
*/
|
|
50
|
+
removeAll(): Promise<void>;
|
|
51
|
+
/**
|
|
52
|
+
* 检查是否已注册指定插件
|
|
53
|
+
*/
|
|
54
|
+
has(name: string): boolean;
|
|
55
|
+
/**
|
|
56
|
+
* 获取已注册的插件名称列表
|
|
57
|
+
*/
|
|
58
|
+
getPluginNames(): string[];
|
|
59
|
+
}
|
package/es/index.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as request } from './request';
|
|
2
|
+
export { default as hooks } from './hooks';
|
|
3
|
+
export { default as models } from './models';
|
|
4
|
+
export { default as pubsub } from './pubsub';
|
|
5
|
+
export { default as socket } from './socket';
|
|
6
|
+
export * from './applicationManager';
|
|
7
|
+
export * from './app';
|
|
8
|
+
export * from './communicationManager';
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Locale, LibraryItem, LoadLibraryByUrlParams } from "./type";
|
|
2
|
+
import App from "../app";
|
|
3
|
+
export interface LocalesOptions {
|
|
4
|
+
locale?: Locale;
|
|
5
|
+
library?: {
|
|
6
|
+
[key in Locale]: LibraryItem;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export declare class Locales {
|
|
10
|
+
private app;
|
|
11
|
+
locale: string;
|
|
12
|
+
library: {
|
|
13
|
+
[key in Locale]: LibraryItem;
|
|
14
|
+
};
|
|
15
|
+
constructor(app: App, options?: LocalesOptions);
|
|
16
|
+
getLocale: () => string;
|
|
17
|
+
getCurrentTexts: (locale?: Locale) => {
|
|
18
|
+
[key: string]: string;
|
|
19
|
+
};
|
|
20
|
+
setLocale: (locale: Locale, reload?: boolean) => void;
|
|
21
|
+
getText: (id: string, locale?: Locale) => string;
|
|
22
|
+
isCN: () => boolean;
|
|
23
|
+
loadLibraryByUrl: (urls: LoadLibraryByUrlParams) => Promise<{
|
|
24
|
+
[x: string]: LibraryItem;
|
|
25
|
+
}>;
|
|
26
|
+
loadLibraryByItems(libraryList: LibraryItem[]): void;
|
|
27
|
+
loadLibrary: (urls: LoadLibraryByUrlParams) => Promise<{
|
|
28
|
+
[x: string]: LibraryItem;
|
|
29
|
+
}>;
|
|
30
|
+
translation: (text: string | {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
}, locale?: Locale) => string | number;
|
|
33
|
+
getLibraryByData: (data: LibraryItem[]) => LibraryItem;
|
|
34
|
+
createTextsByLibrary: (id: string, library?: {
|
|
35
|
+
[x: string]: LibraryItem;
|
|
36
|
+
} | undefined) => {
|
|
37
|
+
[x: string]: string;
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import App from "../app";
|
|
2
|
+
export declare type LogConsoleType = "info" | "warning" | "error" | "debug";
|
|
3
|
+
/**
|
|
4
|
+
* 日志项接口
|
|
5
|
+
*/
|
|
6
|
+
interface LogItem {
|
|
7
|
+
logId?: string | number;
|
|
8
|
+
type: LogConsoleType;
|
|
9
|
+
title: string;
|
|
10
|
+
date?: string;
|
|
11
|
+
metadata?: any;
|
|
12
|
+
feishu?: any;
|
|
13
|
+
}
|
|
14
|
+
interface LogFile {
|
|
15
|
+
fileName: string;
|
|
16
|
+
date: string;
|
|
17
|
+
fileContent: LogFileContent;
|
|
18
|
+
}
|
|
19
|
+
interface LogFileContent {
|
|
20
|
+
metadata: any;
|
|
21
|
+
logs: LogItem[];
|
|
22
|
+
}
|
|
23
|
+
export interface LoggerOptions {
|
|
24
|
+
prefix?: string;
|
|
25
|
+
checkInterval?: number;
|
|
26
|
+
feishuConfig?: any;
|
|
27
|
+
retentionDays?: number;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* 日志管理器类
|
|
31
|
+
*/
|
|
32
|
+
declare class LoggerManager {
|
|
33
|
+
private logBuffer;
|
|
34
|
+
private timer;
|
|
35
|
+
private checkInterval;
|
|
36
|
+
private prefix;
|
|
37
|
+
private metadata;
|
|
38
|
+
private db;
|
|
39
|
+
private app;
|
|
40
|
+
private feishuConfig;
|
|
41
|
+
private retentionDays;
|
|
42
|
+
private metadataFunction;
|
|
43
|
+
private status;
|
|
44
|
+
/**
|
|
45
|
+
* 构造函数
|
|
46
|
+
* @param prefix 日志前缀
|
|
47
|
+
* @param checkInterval 检查间隔时间,默认5分钟
|
|
48
|
+
*/
|
|
49
|
+
constructor(app: App, options?: LoggerOptions);
|
|
50
|
+
init(): Promise<void>;
|
|
51
|
+
/**
|
|
52
|
+
* 初始化 IndexDB
|
|
53
|
+
*/
|
|
54
|
+
private initDB;
|
|
55
|
+
/**
|
|
56
|
+
* 设置元数据
|
|
57
|
+
* @param metadata 元数据
|
|
58
|
+
*/
|
|
59
|
+
setMetadata(metadata: any): void;
|
|
60
|
+
setMetadataFunction(metadataFunction: () => any): void;
|
|
61
|
+
/**
|
|
62
|
+
* 初始化定时器
|
|
63
|
+
*/
|
|
64
|
+
initTimer(): void;
|
|
65
|
+
private setStatus;
|
|
66
|
+
stop(): void;
|
|
67
|
+
/**
|
|
68
|
+
* 添加日志
|
|
69
|
+
* @param log 日志项
|
|
70
|
+
*/
|
|
71
|
+
addLog(log: LogItem): void;
|
|
72
|
+
/**
|
|
73
|
+
* 发送飞书通知
|
|
74
|
+
* @param log 日志项
|
|
75
|
+
*/
|
|
76
|
+
private sendFeishuNotification;
|
|
77
|
+
/**
|
|
78
|
+
* 创建日志文件名
|
|
79
|
+
* @returns 日志文件名
|
|
80
|
+
*/
|
|
81
|
+
private createFileName;
|
|
82
|
+
/**
|
|
83
|
+
* 创建AWS日志文件名
|
|
84
|
+
* @param isManual 紧急上传
|
|
85
|
+
* @returns 日志文件名
|
|
86
|
+
*/
|
|
87
|
+
createAWSFileName(urgent?: boolean): Promise<any>;
|
|
88
|
+
/**
|
|
89
|
+
* 创建日志文件
|
|
90
|
+
* @param _fileName 文件名
|
|
91
|
+
* @returns 日志文件对象
|
|
92
|
+
*/
|
|
93
|
+
private createFile;
|
|
94
|
+
/**
|
|
95
|
+
* 存储日志到持久化存储
|
|
96
|
+
*/
|
|
97
|
+
storeLog(urgent?: boolean): Promise<void>;
|
|
98
|
+
uploadIndexDBLog(): Promise<void>;
|
|
99
|
+
private storeLogToIndexDB;
|
|
100
|
+
/**
|
|
101
|
+
* 清理旧日志,只保留最近指定天数的日志
|
|
102
|
+
*/
|
|
103
|
+
private cleanupOldLogs;
|
|
104
|
+
/**
|
|
105
|
+
* 获取日志文件列表
|
|
106
|
+
* @returns 日志文件列表
|
|
107
|
+
*/
|
|
108
|
+
getLogFiles(): Promise<LogFile[]>;
|
|
109
|
+
/**
|
|
110
|
+
* 获取指定日志文件的内容
|
|
111
|
+
* @param fileName 日志文件名
|
|
112
|
+
* @returns 日志文件内容
|
|
113
|
+
*/
|
|
114
|
+
getLogFile(fileName: string): Promise<LogFile | null>;
|
|
115
|
+
/**
|
|
116
|
+
* 清空指定日志文件
|
|
117
|
+
* @param fileName 日志文件名,不指定则清空所有日志
|
|
118
|
+
* @returns 是否成功
|
|
119
|
+
*/
|
|
120
|
+
clearLogs(fileName?: string): Promise<boolean>;
|
|
121
|
+
/**
|
|
122
|
+
* 设置日志保留天数
|
|
123
|
+
* @param days 保留天数
|
|
124
|
+
*/
|
|
125
|
+
setRetentionDays(days: number): void;
|
|
126
|
+
/**
|
|
127
|
+
* 手动触发清理旧日志
|
|
128
|
+
*/
|
|
129
|
+
manualCleanup(): Promise<void>;
|
|
130
|
+
/**
|
|
131
|
+
* 销毁实例
|
|
132
|
+
*/
|
|
133
|
+
destroy(): void;
|
|
134
|
+
}
|
|
135
|
+
export default LoggerManager;
|
package/es/request/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { RequestWrapperProps, RequestConfig } from "./type";
|
|
1
|
+
import { RequestWrapperProps, RequestConfig, RequestSetting } from "./type";
|
|
2
|
+
import { SSEConfig, SSEActions, SSEMetaData, SSEDataPayload, SSECompletePayload } from "./sse";
|
|
2
3
|
export declare const createRequest: (props: RequestWrapperProps) => Promise<unknown>;
|
|
3
4
|
/**
|
|
4
5
|
* 请求
|
|
@@ -11,13 +12,21 @@ export declare const post: (url: RequestWrapperProps["url"], data: RequestWrappe
|
|
|
11
12
|
export declare const put: (url: RequestWrapperProps["url"], data: RequestWrapperProps["data"], config: RequestWrapperProps["config"]) => Promise<any>;
|
|
12
13
|
export declare const remove: (url: RequestWrapperProps["url"], data: RequestWrapperProps["data"], config: RequestWrapperProps["config"]) => Promise<any>;
|
|
13
14
|
export declare const custom: (url: RequestWrapperProps["url"], config: RequestWrapperProps["config"]) => any;
|
|
15
|
+
export declare const sse: <TMeta = SSEMetaData, TData = SSEDataPayload<any>, TComplete = SSECompletePayload>(url: SSEConfig["url"], data: Record<string, any> | undefined, config: RequestSetting & {
|
|
16
|
+
method?: SSEConfig["method"];
|
|
17
|
+
actions?: SSEActions<TMeta, TData, TComplete> | undefined;
|
|
18
|
+
}) => Promise<() => void>;
|
|
14
19
|
export * from "./type";
|
|
15
20
|
declare const _default: {
|
|
16
|
-
get: (url: string, data: any, config:
|
|
17
|
-
post: (url: string, data: any, config:
|
|
18
|
-
put: (url: string, data: any, config:
|
|
19
|
-
remove: (url: string, data: any, config:
|
|
20
|
-
custom: (url: string, config:
|
|
21
|
+
get: (url: string, data: any, config: RequestSetting | undefined) => Promise<any>;
|
|
22
|
+
post: (url: string, data: any, config: RequestSetting | undefined) => Promise<any>;
|
|
23
|
+
put: (url: string, data: any, config: RequestSetting | undefined) => Promise<any>;
|
|
24
|
+
remove: (url: string, data: any, config: RequestSetting | undefined) => Promise<any>;
|
|
25
|
+
custom: (url: string, config: RequestSetting | undefined) => any;
|
|
26
|
+
sse: <TMeta = SSEMetaData, TData = SSEDataPayload<any>, TComplete = SSECompletePayload>(url: string, data: Record<string, any> | undefined, config: RequestSetting & {
|
|
27
|
+
method?: "GET" | "POST" | undefined;
|
|
28
|
+
actions?: SSEActions<TMeta, TData, TComplete> | undefined;
|
|
29
|
+
}) => Promise<() => void>;
|
|
21
30
|
setConfig: (newConfig: Partial<RequestConfig>) => void;
|
|
22
31
|
getConfig: () => RequestConfig;
|
|
23
32
|
};
|
package/es/request/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
var _excluded = ["actions", "method", "headers"];
|
|
1
2
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
2
5
|
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
3
6
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
4
7
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
@@ -16,6 +19,7 @@ import { getUniqueId } from "@pisell/utils";
|
|
|
16
19
|
import axios from "axios";
|
|
17
20
|
import { getConfig, setConfig } from "./config";
|
|
18
21
|
import { getApp } from "../app";
|
|
22
|
+
import { createSSE } from "./sse";
|
|
19
23
|
// 实例
|
|
20
24
|
var axiosInstance = axios.create(axiosConfig);
|
|
21
25
|
|
|
@@ -55,12 +59,19 @@ function reportSlowRequestByObserver(entry) {
|
|
|
55
59
|
logger = _getConfig2.logger;
|
|
56
60
|
var maxRequestTime = (logger === null || logger === void 0 ? void 0 : logger.maxRequestTime) || 5000;
|
|
57
61
|
var requestUrl = entry.name || "";
|
|
62
|
+
// DNS 查询耗时:域名解析开始到结束
|
|
58
63
|
var dnsLookupDuration = getSafeDuration(entry.domainLookupStart, entry.domainLookupEnd);
|
|
64
|
+
// TCP 建连耗时:开始建立连接到连接建立完成(可能包含 TLS)
|
|
59
65
|
var tcpHandshakeDuration = getSafeDuration(entry.connectStart, entry.connectEnd);
|
|
66
|
+
// 重定向耗时:重定向开始到重定向结束
|
|
60
67
|
var redirectDuration = getSafeDuration(entry.redirectStart, entry.redirectEnd);
|
|
68
|
+
// 请求排队/阻塞耗时:fetch 开始到真正发起请求
|
|
61
69
|
var stalledDuration = getSafeDuration(entry.fetchStart, entry.requestStart);
|
|
70
|
+
// TTFB(首包时间):请求发起到收到首字节响应
|
|
62
71
|
var ttfbDuration = getSafeDuration(entry.requestStart, entry.responseStart);
|
|
72
|
+
// 请求总耗时(网络视角):请求发起到响应体接收完成
|
|
63
73
|
var requestDuration = getSafeDuration(entry.requestStart, entry.responseEnd);
|
|
74
|
+
// TLS 协商耗时:TLS 开始到连接建立完成(仅 HTTPS 场景)
|
|
64
75
|
var tlsHandshakeDuration = entry.secureConnectionStart > 0 ? getSafeDuration(entry.secureConnectionStart, entry.connectEnd) : 0;
|
|
65
76
|
if (!requestUrl) return;
|
|
66
77
|
if (isObserverIgnoredUrl(requestUrl)) return;
|
|
@@ -332,6 +343,39 @@ export var custom = function custom(url, config) {
|
|
|
332
343
|
config: config
|
|
333
344
|
});
|
|
334
345
|
};
|
|
346
|
+
export var sse = /*#__PURE__*/function () {
|
|
347
|
+
var _ref5 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee5(url, data, config) {
|
|
348
|
+
var actions, _config$method, method, _config$headers, customHeaders, restConfig, builtConfig, isPost;
|
|
349
|
+
return _regeneratorRuntime().wrap(function _callee5$(_context5) {
|
|
350
|
+
while (1) switch (_context5.prev = _context5.next) {
|
|
351
|
+
case 0:
|
|
352
|
+
actions = config.actions, _config$method = config.method, method = _config$method === void 0 ? "GET" : _config$method, _config$headers = config.headers, customHeaders = _config$headers === void 0 ? {} : _config$headers, restConfig = _objectWithoutProperties(config, _excluded); // 复用 interceptorsRequest 统一处理 URL 转换和认证 headers 注入
|
|
353
|
+
_context5.next = 3;
|
|
354
|
+
return interceptorsRequest(_objectSpread({
|
|
355
|
+
url: url,
|
|
356
|
+
method: method,
|
|
357
|
+
headers: _objectSpread({}, customHeaders)
|
|
358
|
+
}, restConfig || {}));
|
|
359
|
+
case 3:
|
|
360
|
+
builtConfig = _context5.sent;
|
|
361
|
+
isPost = method === "POST";
|
|
362
|
+
return _context5.abrupt("return", createSSE({
|
|
363
|
+
url: builtConfig.url,
|
|
364
|
+
method: method,
|
|
365
|
+
headers: builtConfig.headers,
|
|
366
|
+
params: isPost ? undefined : data,
|
|
367
|
+
body: isPost ? data : undefined
|
|
368
|
+
}, actions !== null && actions !== void 0 ? actions : {}));
|
|
369
|
+
case 6:
|
|
370
|
+
case "end":
|
|
371
|
+
return _context5.stop();
|
|
372
|
+
}
|
|
373
|
+
}, _callee5);
|
|
374
|
+
}));
|
|
375
|
+
return function sse(_x13, _x14, _x15) {
|
|
376
|
+
return _ref5.apply(this, arguments);
|
|
377
|
+
};
|
|
378
|
+
}();
|
|
335
379
|
export * from "./type";
|
|
336
380
|
export default {
|
|
337
381
|
get: get,
|
|
@@ -339,6 +383,7 @@ export default {
|
|
|
339
383
|
put: put,
|
|
340
384
|
remove: remove,
|
|
341
385
|
custom: custom,
|
|
386
|
+
sse: sse,
|
|
342
387
|
setConfig: setConfig,
|
|
343
388
|
getConfig: getConfig
|
|
344
389
|
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export interface SSEMetaData {
|
|
2
|
+
total: number;
|
|
3
|
+
store_id?: string;
|
|
4
|
+
}
|
|
5
|
+
export interface SSEProgress {
|
|
6
|
+
current: number;
|
|
7
|
+
total: number;
|
|
8
|
+
last_version: number;
|
|
9
|
+
since_version: number;
|
|
10
|
+
}
|
|
11
|
+
export interface SSEDataPayload<TItem = any> {
|
|
12
|
+
items: TItem[];
|
|
13
|
+
progress?: SSEProgress;
|
|
14
|
+
}
|
|
15
|
+
export interface SSECompletePayload {
|
|
16
|
+
count: number;
|
|
17
|
+
last_version: number;
|
|
18
|
+
}
|
|
19
|
+
export interface SSEErrorPayload {
|
|
20
|
+
message: string;
|
|
21
|
+
code?: number;
|
|
22
|
+
}
|
|
23
|
+
export interface SSEActions<TMeta = SSEMetaData, TData = SSEDataPayload, TComplete = SSECompletePayload> {
|
|
24
|
+
onOpen?: () => void;
|
|
25
|
+
onMeta?: (data: TMeta) => void;
|
|
26
|
+
onProgress?: (data: SSEProgress) => void;
|
|
27
|
+
onData?: (data: TData) => void;
|
|
28
|
+
onTypeDone?: (data: TComplete) => void;
|
|
29
|
+
onDone?: (data: TComplete) => void;
|
|
30
|
+
onError?: (err: SSEErrorPayload | Error) => void;
|
|
31
|
+
}
|
|
32
|
+
export interface SSEConfig {
|
|
33
|
+
url: string;
|
|
34
|
+
params?: Record<string, any>;
|
|
35
|
+
method?: 'GET' | 'POST';
|
|
36
|
+
body?: Record<string, any>;
|
|
37
|
+
headers?: Record<string, string>;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* 底层 SSE 请求封装,基于 @microsoft/fetch-event-source
|
|
41
|
+
* 支持自定义 headers(解决原生 EventSource 无法携带 Authorization 的问题)
|
|
42
|
+
*
|
|
43
|
+
* @returns abort 函数,组件卸载时调用以关闭连接
|
|
44
|
+
*/
|
|
45
|
+
export declare function createSSE<TMeta = SSEMetaData, TData = SSEDataPayload, TComplete = SSECompletePayload>(config: SSEConfig, actions: SSEActions<TMeta, TData, TComplete>): () => void;
|