| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import { tenantRoutes } from '@d8d/tenant-module-mt';
- import { rpcClient } from '@d8d/shared-ui-components/utils/hc';
- class TenantClientManager {
- private static instance: TenantClientManager;
- private client: ReturnType<typeof rpcClient<typeof tenantRoutes>> | null = null;
- private constructor() {}
- public static getInstance(): TenantClientManager {
- if (!TenantClientManager.instance) {
- TenantClientManager.instance = new TenantClientManager();
- }
- return TenantClientManager.instance;
- }
- // 初始化客户端
- public init(baseUrl: string = '/'): ReturnType<typeof rpcClient<typeof tenantRoutes>> {
- return this.client = rpcClient<typeof tenantRoutes>(baseUrl);
- }
- // 获取客户端实例
- public get(): ReturnType<typeof rpcClient<typeof tenantRoutes>> {
- if (!this.client) {
- return this.init()
- }
- return this.client;
- }
- // 重置客户端(用于测试或重新初始化)
- public reset(): void {
- this.client = null;
- }
- }
- // 导出单例实例
- const tenantClientManager = TenantClientManager.getInstance();
- // 导出默认客户端实例(延迟初始化)
- export const tenantClient = tenantClientManager.get()
- export {
- tenantClientManager
- }
|