* Make sure default page is first in view mode * Update query form on name change * Add copy support for deploy link * Show server error when timeout occurs on first load
98 lines
2.8 KiB
TypeScript
98 lines
2.8 KiB
TypeScript
import React, { Suspense } from "react";
|
|
import history from "utils/history";
|
|
import AppHeader from "pages/common/AppHeader";
|
|
import { Redirect, Router, Switch } from "react-router-dom";
|
|
import AppRoute from "pages/common/AppRoute";
|
|
import {
|
|
APP_VIEW_URL,
|
|
APPLICATIONS_URL,
|
|
AUTH_LOGIN_URL,
|
|
BASE_LOGIN_URL,
|
|
BASE_SIGNUP_URL,
|
|
BASE_URL,
|
|
BUILDER_URL,
|
|
ORG_URL,
|
|
PAGE_NOT_FOUND_URL,
|
|
SERVER_ERROR_URL,
|
|
SIGN_UP_URL,
|
|
USER_AUTH_URL,
|
|
USERS_URL,
|
|
} from "constants/routes";
|
|
import OrganizationLoader from "pages/organization/loader";
|
|
import ApplicationListLoader from "pages/Applications/loader";
|
|
import EditorLoader from "pages/Editor/loader";
|
|
import AppViewerLoader from "pages/AppViewer/loader";
|
|
import LandingScreen from "./LandingScreen";
|
|
import UserAuth from "pages/UserAuth";
|
|
import Users from "pages/users";
|
|
import PageNotFound from "pages/common/PageNotFound";
|
|
import PageLoadingBar from "pages/common/PageLoadingBar";
|
|
import ServerUnavailable from "pages/common/ServerUnavailable";
|
|
|
|
const loadingIndicator = <PageLoadingBar />;
|
|
|
|
class AppRouter extends React.Component<any, any> {
|
|
render() {
|
|
return (
|
|
<Router history={history}>
|
|
<Suspense fallback={loadingIndicator}>
|
|
<AppHeader />
|
|
<Switch>
|
|
<AppRoute
|
|
exact
|
|
path={BASE_URL}
|
|
component={LandingScreen}
|
|
name={"App"}
|
|
/>
|
|
<Redirect exact from={BASE_LOGIN_URL} to={AUTH_LOGIN_URL} />
|
|
<Redirect exact from={BASE_SIGNUP_URL} to={SIGN_UP_URL} />
|
|
<AppRoute
|
|
path={ORG_URL}
|
|
component={OrganizationLoader}
|
|
name={"Organisation"}
|
|
/>
|
|
<AppRoute exact path={USERS_URL} component={Users} name={"Users"} />
|
|
<AppRoute
|
|
path={USER_AUTH_URL}
|
|
component={UserAuth}
|
|
name={"UserAuth"}
|
|
/>
|
|
<AppRoute
|
|
exact
|
|
path={APPLICATIONS_URL}
|
|
component={ApplicationListLoader}
|
|
name={"Home"}
|
|
/>
|
|
<AppRoute
|
|
path={BUILDER_URL}
|
|
component={EditorLoader}
|
|
name={"Editor"}
|
|
/>
|
|
<AppRoute
|
|
path={APP_VIEW_URL}
|
|
component={AppViewerLoader}
|
|
name={"AppViewer"}
|
|
logDisable
|
|
/>
|
|
<AppRoute
|
|
exact
|
|
path={PAGE_NOT_FOUND_URL}
|
|
component={PageNotFound}
|
|
name={"PageNotFound"}
|
|
/>
|
|
<AppRoute
|
|
exact
|
|
path={SERVER_ERROR_URL}
|
|
component={ServerUnavailable}
|
|
name={"ServerError"}
|
|
/>
|
|
<AppRoute component={PageNotFound} name={"PageNotFound"} />
|
|
</Switch>
|
|
</Suspense>
|
|
</Router>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default AppRouter;
|