import React from "react"; import PageLoadingBar from "pages/common/PageLoadingBar"; import { retryPromise } from "utils/AppsmithUtils"; import PerformanceTracker, { PerformanceTransactionName, } from "utils/PerformanceTracker"; import AnalyticsUtil from "utils/AnalyticsUtil"; import { connect } from "react-redux"; import { showDebugger } from "actions/debuggerActions"; class ApplicationListLoader extends React.PureComponent { constructor(props: any) { super(props); this.state = { Page: null, }; } componentDidMount() { //Close debugger call is required because if we import the application page with debugger open //it will cause a debugger to open. issue #21xxx this.props.closeDebugger(); PerformanceTracker.stopTracking(PerformanceTransactionName.LOGIN_CLICK); AnalyticsUtil.logEvent("APPLICATIONS_PAGE_LOAD"); retryPromise( () => import( /* webpackChunkName: "applications" */ "@appsmith/pages/Applications/index" ), ).then((module) => { this.setState({ Page: module.default }); }); } render() { const { Page } = this.state; return Page ? : ; } } const mapDispatchToProps = (dispatch: any) => ({ closeDebugger: () => dispatch(showDebugger(false)), }); export default connect(null, mapDispatchToProps)(ApplicationListLoader);