fix(data-source): 按需加载数据源时需要分享数据源方法依赖

This commit is contained in:
roymondchen 2024-07-04 14:41:34 +08:00
parent 5d6de7c405
commit 1e93e9bacc

View File

@ -242,11 +242,14 @@ export const compliedIteratorItems = (
});
};
/**
*
*/
export const registerDataSourceOnDemand = async (
dsl: MApp,
dataSourceModules: Record<string, () => Promise<AsyncDataSourceResolveResult>>,
) => {
const { dataSourceCondDeps = {}, dataSourceDeps = {}, dataSources = [] } = dsl;
const { dataSourceMethodsDeps = {}, dataSourceCondDeps = {}, dataSourceDeps = {}, dataSources = [] } = dsl;
const dsModuleMap: Record<string, () => Promise<AsyncDataSourceResolveResult>> = {};
@ -257,6 +260,10 @@ export const registerDataSourceOnDemand = async (
dep = dataSourceDeps[ds.id] || {};
}
if (!Object.keys(dep).length) {
dep = dataSourceMethodsDeps[ds.id] || {};
}
if (Object.keys(dep).length && dataSourceModules[ds.type]) {
dsModuleMap[ds.type] = dataSourceModules[ds.type];
}