Skip to content

Commit 24ba591

Browse files
authored
Merge pull request #5558 from marmelab/revert-5557-fix/login-page-theme
Revert "Fix Loading route missing theme with LoadingPage"
2 parents 1ff6512 + 508a1a7 commit 24ba591

File tree

7 files changed

+8
-49
lines changed

7 files changed

+8
-49
lines changed

packages/ra-core/src/core/CoreAdminRouter.tsx

+3-10
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import {
1717
CustomRoutes,
1818
CatchAllComponent,
1919
LayoutComponent,
20-
LoadingComponent,
2120
CoreLayoutProps,
2221
ResourceProps,
2322
RenderResourcesFunction,
@@ -29,7 +28,7 @@ export interface AdminRouterProps extends CoreLayoutProps {
2928
catchAll: CatchAllComponent;
3029
children?: AdminChildren;
3130
customRoutes?: CustomRoutes;
32-
loading: LoadingComponent;
31+
loading: ComponentType;
3332
ready?: ComponentType;
3433
}
3534

@@ -102,7 +101,7 @@ const CoreAdminRouter: FunctionComponent<AdminRouterProps> = props => {
102101
children,
103102
customRoutes,
104103
dashboard,
105-
loading: LoadingPage,
104+
loading,
106105
logout,
107106
menu,
108107
ready,
@@ -122,13 +121,7 @@ const CoreAdminRouter: FunctionComponent<AdminRouterProps> = props => {
122121
(!computedChildren || computedChildren.length === 0)
123122
) {
124123
if (oneSecondHasPassed) {
125-
return (
126-
<Route
127-
path="/"
128-
key="loading"
129-
render={() => <LoadingPage theme={theme} />}
130-
/>
131-
);
124+
return <Route path="/" key="loading" component={loading} />;
132125
} else {
133126
return null;
134127
}

packages/ra-core/src/core/CoreAdminUI.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import {
1313
CatchAllComponent,
1414
CustomRoutes,
1515
DashboardComponent,
16-
LoadingComponent,
1716
} from '../types';
1817

1918
export type ChildrenFunction = () => ComponentType[];
@@ -28,7 +27,7 @@ export interface AdminUIProps {
2827
customRoutes?: CustomRoutes;
2928
dashboard?: DashboardComponent;
3029
layout?: LayoutComponent;
31-
loading?: LoadingComponent;
30+
loading?: ComponentType;
3231
loginPage?: LoginComponent | boolean;
3332
logout?: ComponentType;
3433
menu?: ComponentType;

packages/ra-core/src/types.ts

-5
Original file line numberDiff line numberDiff line change
@@ -409,11 +409,6 @@ export interface CoreLayoutProps {
409409
}
410410

411411
export type LayoutComponent = ComponentType<CoreLayoutProps>;
412-
export type LoadingComponent = ComponentType<{
413-
theme?: ThemeOptions;
414-
loadingPrimary?: string;
415-
loadingSecondary?: string;
416-
}>;
417412

418413
export interface ResourceComponentInjectedProps {
419414
basePath?: string;

packages/ra-ui-materialui/src/layout/LoadingPage.tsx

-26
This file was deleted.

packages/ra-ui-materialui/src/layout/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import Error, { ErrorProps } from './Error';
88
import HideOnScroll, { HideOnScrollProps } from './HideOnScroll';
99
import Layout, { LayoutProps } from './Layout';
1010
import Loading from './Loading';
11-
import LoadingPage from './LoadingPage';
1211
import LinearProgress from './LinearProgress';
1312
import LoadingIndicator from './LoadingIndicator';
1413
import Menu, { MenuProps } from './Menu';
@@ -33,7 +32,6 @@ export {
3332
HideOnScroll,
3433
Layout,
3534
Loading,
36-
LoadingPage,
3735
LinearProgress,
3836
LoadingIndicator,
3937
Menu,
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import * as React from 'react';
22
import { FC } from 'react';
33
import { CoreAdminRouter, AdminRouterProps } from 'ra-core';
4-
import { LoadingPage } from 'ra-ui-materialui';
4+
import { Loading } from 'ra-ui-materialui';
55

66
const AdminRouter: FC<AdminRouterProps> = props => (
77
<CoreAdminRouter {...props} />
88
);
99

1010
AdminRouter.defaultProps = {
11-
loading: LoadingPage,
11+
loading: Loading,
1212
};
1313

1414
export default AdminRouter;

packages/react-admin/src/AdminUI.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { FC } from 'react';
33
import { CoreAdminUI, AdminUIProps } from 'ra-core';
44
import {
55
Layout as DefaultLayout,
6-
LoadingPage,
6+
Loading,
77
Login,
88
Logout,
99
NotFound,
@@ -14,7 +14,7 @@ const AdminUI: FC<AdminUIProps> = props => <CoreAdminUI {...props} />;
1414
AdminUI.defaultProps = {
1515
layout: DefaultLayout,
1616
catchAll: NotFound,
17-
loading: LoadingPage,
17+
loading: Loading,
1818
loginPage: Login,
1919
logout: Logout,
2020
};

0 commit comments

Comments
 (0)