mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-05 17:57:13 +00:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { pageRendererFactory, types } from '@alilc/lowcode-renderer-core';
|
|
|
|
const raxPageRendererFactory: () => any = () => {
|
|
const OriginPage = pageRendererFactory();
|
|
return class PageRenderer extends OriginPage {
|
|
async componentDidUpdate() {
|
|
// @ts-ignore
|
|
super.componentDidUpdate(...arguments);
|
|
}
|
|
|
|
render() {
|
|
// @ts-ignore
|
|
const that: types.IRenderer = this;
|
|
const { __schema, __components } = that.props;
|
|
if (that.__checkSchema(__schema)) {
|
|
return '页面 schema 结构异常!';
|
|
}
|
|
that.__debug(`render - ${__schema?.fileName}`);
|
|
|
|
const { Page } = __components as any;
|
|
if (Page) {
|
|
const children = ((context) => {
|
|
that.context = context;
|
|
that.__render();
|
|
return that.__renderComp(Page, { pageContext: that });
|
|
});
|
|
return that.__renderContextConsumer(children);
|
|
}
|
|
|
|
return that.__renderContent(that.__renderContextConsumer((context) => {
|
|
that.context = context;
|
|
return that.__renderContextProvider({ pageContext: that });
|
|
}));
|
|
}
|
|
};
|
|
};
|
|
|
|
export default raxPageRendererFactory;
|