mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 02:41:07 +00:00
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
export function createLazyRuntimeSurface<TModule, TSurface>(
|
|
importer: () => Promise<TModule>,
|
|
select: (module: TModule) => TSurface,
|
|
): () => Promise<TSurface> {
|
|
let cached: Promise<TSurface> | null = null;
|
|
return () => {
|
|
cached ??= importer().then(select);
|
|
return cached;
|
|
};
|
|
}
|
|
|
|
/** Cache the raw dynamically imported runtime module behind a stable loader. */
|
|
export function createLazyRuntimeModule<TModule>(
|
|
importer: () => Promise<TModule>,
|
|
): () => Promise<TModule> {
|
|
return createLazyRuntimeSurface(importer, (module) => module);
|
|
}
|
|
|
|
/** Cache a single named runtime export without repeating a custom selector closure per caller. */
|
|
export function createLazyRuntimeNamedExport<TModule, const TKey extends keyof TModule>(
|
|
importer: () => Promise<TModule>,
|
|
key: TKey,
|
|
): () => Promise<TModule[TKey]> {
|
|
return createLazyRuntimeSurface(importer, (module) => module[key]);
|
|
}
|
|
|
|
export function createLazyRuntimeMethod<TSurface, TArgs extends unknown[], TResult>(
|
|
load: () => Promise<TSurface>,
|
|
select: (surface: TSurface) => (...args: TArgs) => TResult,
|
|
): (...args: TArgs) => Promise<Awaited<TResult>> {
|
|
const invoke = async (...args: TArgs): Promise<Awaited<TResult>> => {
|
|
const method = select(await load());
|
|
return await method(...args);
|
|
};
|
|
return invoke;
|
|
}
|
|
|
|
export function createLazyRuntimeMethodBinder<TSurface>(load: () => Promise<TSurface>) {
|
|
return function <TArgs extends unknown[], TResult>(
|
|
select: (surface: TSurface) => (...args: TArgs) => TResult,
|
|
): (...args: TArgs) => Promise<Awaited<TResult>> {
|
|
return createLazyRuntimeMethod(load, select);
|
|
};
|
|
}
|