@pisell/core 1.0.68 → 1.0.69

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.
@@ -0,0 +1,103 @@
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
+ setConfig: (newConfig: Partial<import("../request").RequestConfig>) => void;
58
+ getConfig: () => import("../request").RequestConfig;
59
+ };
60
+ storage: Storage;
61
+ menuManager: MenuManager;
62
+ cookie: {
63
+ setCookie: (name: string, value: string, domain?: string | undefined) => void;
64
+ getCookie: (name: string) => string | null;
65
+ deleteCookie: (name: string, domain?: string | undefined) => void;
66
+ checkCookie: (name: string) => boolean;
67
+ updateCookie: (name: string, value: string, domain?: string | undefined) => void;
68
+ };
69
+ website: {
70
+ setTitle: (title: string) => void;
71
+ setIcon: (paramsIcon: string) => void;
72
+ setAppleWebAppTitle: (title: string) => void;
73
+ };
74
+ logger: LoggerManager;
75
+ pubsub: import("../pubsub").PubSub;
76
+ cmd: CMD;
77
+ aws: AWS;
78
+ tasksManager: TasksManager;
79
+ getPisellos: any;
80
+ sqlite: any;
81
+ bootstrap?: Bootstrap;
82
+ dbManager: IndexDBManager | null;
83
+ constants: {
84
+ channel: string;
85
+ [key: string]: string;
86
+ };
87
+ comm: CommunicationManager;
88
+ private constructor();
89
+ static getInstance(options?: AppOptions): App;
90
+ setGlobalData(globalData: any): void;
91
+ usePlugin(name: string, plugin: any): void;
92
+ usePlugins(plugins: {
93
+ name: string;
94
+ plugin: any;
95
+ }[]): void;
96
+ getPlugin(name: string): any;
97
+ getGlobalData(): any;
98
+ install(): void;
99
+ unInstall(): void;
100
+ setBootstrap(bootstrap: Bootstrap): void;
101
+ getBootstrap(): Bootstrap | undefined;
102
+ }
103
+ 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,3 @@
1
+ import { LibraryItem } from './type';
2
+ declare const _default: LibraryItem;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { LibraryItem } from './type';
2
+ declare const _default: LibraryItem;
3
+ export default _default;
@@ -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;
@@ -55,12 +55,19 @@ function reportSlowRequestByObserver(entry) {
55
55
  logger = _getConfig2.logger;
56
56
  var maxRequestTime = (logger === null || logger === void 0 ? void 0 : logger.maxRequestTime) || 5000;
57
57
  var requestUrl = entry.name || "";
58
+ // DNS 查询耗时:域名解析开始到结束
58
59
  var dnsLookupDuration = getSafeDuration(entry.domainLookupStart, entry.domainLookupEnd);
60
+ // TCP 建连耗时:开始建立连接到连接建立完成(可能包含 TLS)
59
61
  var tcpHandshakeDuration = getSafeDuration(entry.connectStart, entry.connectEnd);
62
+ // 重定向耗时:重定向开始到重定向结束
60
63
  var redirectDuration = getSafeDuration(entry.redirectStart, entry.redirectEnd);
64
+ // 请求排队/阻塞耗时:fetch 开始到真正发起请求
61
65
  var stalledDuration = getSafeDuration(entry.fetchStart, entry.requestStart);
66
+ // TTFB(首包时间):请求发起到收到首字节响应
62
67
  var ttfbDuration = getSafeDuration(entry.requestStart, entry.responseStart);
68
+ // 请求总耗时(网络视角):请求发起到响应体接收完成
63
69
  var requestDuration = getSafeDuration(entry.requestStart, entry.responseEnd);
70
+ // TLS 协商耗时:TLS 开始到连接建立完成(仅 HTTPS 场景)
64
71
  var tlsHandshakeDuration = entry.secureConnectionStart > 0 ? getSafeDuration(entry.secureConnectionStart, entry.connectEnd) : 0;
65
72
  if (!requestUrl) return;
66
73
  if (isObserverIgnoredUrl(requestUrl)) return;
@@ -20,7 +20,7 @@ export declare class RouterManager {
20
20
  get(name: string): RouteType;
21
21
  has(name: string): boolean;
22
22
  remove(name: string): void;
23
- renderComponent(item: RouteType, children?: React.ReactNode): string | number | boolean | React.JSX.Element | Iterable<React.ReactNode> | null | undefined;
23
+ renderComponent(item: RouteType, children?: React.ReactNode): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
24
24
  getPageByRoute(route: string): ApplicationInterface | undefined;
25
25
  getRouterComponent({ fallback }: {
26
26
  fallback?: React.ReactNode;
@@ -108,7 +108,7 @@ export declare class TasksManager {
108
108
  */
109
109
  getQueueStatus(module: string, queueId: string): {
110
110
  isRunning: boolean;
111
- status: "completed" | "uncompleted";
111
+ status: "uncompleted" | "completed";
112
112
  progress: {
113
113
  total: number;
114
114
  completed: number;
@@ -0,0 +1,103 @@
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
+ setConfig: (newConfig: Partial<import("../request").RequestConfig>) => void;
58
+ getConfig: () => import("../request").RequestConfig;
59
+ };
60
+ storage: Storage;
61
+ menuManager: MenuManager;
62
+ cookie: {
63
+ setCookie: (name: string, value: string, domain?: string | undefined) => void;
64
+ getCookie: (name: string) => string | null;
65
+ deleteCookie: (name: string, domain?: string | undefined) => void;
66
+ checkCookie: (name: string) => boolean;
67
+ updateCookie: (name: string, value: string, domain?: string | undefined) => void;
68
+ };
69
+ website: {
70
+ setTitle: (title: string) => void;
71
+ setIcon: (paramsIcon: string) => void;
72
+ setAppleWebAppTitle: (title: string) => void;
73
+ };
74
+ logger: LoggerManager;
75
+ pubsub: import("../pubsub").PubSub;
76
+ cmd: CMD;
77
+ aws: AWS;
78
+ tasksManager: TasksManager;
79
+ getPisellos: any;
80
+ sqlite: any;
81
+ bootstrap?: Bootstrap;
82
+ dbManager: IndexDBManager | null;
83
+ constants: {
84
+ channel: string;
85
+ [key: string]: string;
86
+ };
87
+ comm: CommunicationManager;
88
+ private constructor();
89
+ static getInstance(options?: AppOptions): App;
90
+ setGlobalData(globalData: any): void;
91
+ usePlugin(name: string, plugin: any): void;
92
+ usePlugins(plugins: {
93
+ name: string;
94
+ plugin: any;
95
+ }[]): void;
96
+ getPlugin(name: string): any;
97
+ getGlobalData(): any;
98
+ install(): void;
99
+ unInstall(): void;
100
+ setBootstrap(bootstrap: Bootstrap): void;
101
+ getBootstrap(): Bootstrap | undefined;
102
+ }
103
+ export default App;
package/lib/app/app.js CHANGED
@@ -95,6 +95,8 @@ var App = class _App {
95
95
  tasksManager;
96
96
  // getPisellos
97
97
  getPisellos;
98
+ // sqlLite
99
+ sqlite;
98
100
  bootstrap;
99
101
  dbManager = null;
100
102
  constants = {
@@ -120,6 +122,7 @@ var App = class _App {
120
122
  this.cmd = new import_cmd.default(this, options == null ? void 0 : options.cmd);
121
123
  this.aws = new import_aws.default(this, options == null ? void 0 : options.aws);
122
124
  this.getPisellos = options == null ? void 0 : options.getPisellos;
125
+ this.sqlite = options == null ? void 0 : options.sqlite;
123
126
  if (options == null ? void 0 : options.constants) {
124
127
  this.constants = options.constants || {};
125
128
  }
@@ -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/lib/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,3 @@
1
+ import { LibraryItem } from './type';
2
+ declare const _default: LibraryItem;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { LibraryItem } from './type';
2
+ declare const _default: LibraryItem;
3
+ export default _default;
@@ -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;
@@ -20,7 +20,7 @@ export declare class RouterManager {
20
20
  get(name: string): RouteType;
21
21
  has(name: string): boolean;
22
22
  remove(name: string): void;
23
- renderComponent(item: RouteType, children?: React.ReactNode): string | number | boolean | React.JSX.Element | Iterable<React.ReactNode> | null | undefined;
23
+ renderComponent(item: RouteType, children?: React.ReactNode): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
24
24
  getPageByRoute(route: string): ApplicationInterface | undefined;
25
25
  getRouterComponent({ fallback }: {
26
26
  fallback?: React.ReactNode;
@@ -108,7 +108,7 @@ export declare class TasksManager {
108
108
  */
109
109
  getQueueStatus(module: string, queueId: string): {
110
110
  isRunning: boolean;
111
- status: "completed" | "uncompleted";
111
+ status: "uncompleted" | "completed";
112
112
  progress: {
113
113
  total: number;
114
114
  completed: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisell/core",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "sideEffects": false,
5
5
  "main": "./lib/index.js",
6
6
  "module": "./es/index.js",