mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
84f5a08c52
* 添加 datamapping 功能 * echarts dataMapping 不处理function * 配置改成异步加载 * 添加 打包
18 lines
381 B
TypeScript
18 lines
381 B
TypeScript
import React from 'react';
|
|
|
|
export function lazyData<T, U>(
|
|
getData: () => Promise<U>,
|
|
getComponent: (
|
|
data: U
|
|
) => React.ComponentType<T> | Promise<React.ComponentType<T>>
|
|
) {
|
|
return React.lazy(async () => {
|
|
const data = await getData();
|
|
let component = await getComponent(data);
|
|
|
|
return {
|
|
default: component as React.ComponentType<T>
|
|
};
|
|
});
|
|
}
|