30 lines
665 B
TypeScript
30 lines
665 B
TypeScript
import React from "react";
|
|
import PageLoadingBar from "pages/common/PageLoadingBar";
|
|
import { retryPromise } from "utils/AppsmithUtils";
|
|
|
|
class TemplatesListLoader extends React.PureComponent<any, { Page: any }> {
|
|
constructor(props: any) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
Page: null,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
retryPromise(
|
|
async () => import(/* webpackChunkName: "templates" */ "./index"),
|
|
).then((module) => {
|
|
this.setState({ Page: module.default });
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { Page } = this.state;
|
|
|
|
return Page ? <Page {...this.props} /> : <PageLoadingBar />;
|
|
}
|
|
}
|
|
|
|
export default TemplatesListLoader;
|