@@ -13,18 +13,11 @@ import {getUser} from '../../store/reducers/authentication/authentication';
13
13
import { nodesListApi } from '../../store/reducers/nodesList' ;
14
14
import { cn } from '../../utils/cn' ;
15
15
import { useTypedDispatch , useTypedSelector } from '../../utils/hooks' ;
16
+ import { lazyComponent } from '../../utils/lazyComponent' ;
16
17
import Authentication from '../Authentication/Authentication' ;
17
- import Cluster from '../Cluster/Cluster' ;
18
18
import { getClusterPath } from '../Cluster/utils' ;
19
- import { Clusters } from '../Clusters/Clusters' ;
20
19
import Header from '../Header/Header' ;
21
20
import type { RawBreadcrumbItem } from '../Header/breadcrumbs' ;
22
- import Node from '../Node/Node' ;
23
- import { PDiskPage } from '../PDiskPage/PDiskPage' ;
24
- import { Tablet } from '../Tablet' ;
25
- import { TabletsFilters } from '../TabletsFilters/TabletsFilters' ;
26
- import Tenant from '../Tenant/Tenant' ;
27
- import { VDiskPage } from '../VDiskPage/VDiskPage' ;
28
21
29
22
import {
30
23
ClusterSlot ,
@@ -54,40 +47,45 @@ const routesSlots: RouteSlot[] = [
54
47
{
55
48
path : routes . cluster ,
56
49
slot : ClusterSlot ,
57
- component : Cluster ,
50
+ component : lazyComponent ( ( ) => import ( '../ Cluster/Cluster' ) , 'Cluster' ) ,
58
51
} ,
59
52
{
60
53
path : routes . tenant ,
61
54
slot : TenantSlot ,
62
- component : Tenant ,
55
+ component : lazyComponent ( ( ) => import ( '../ Tenant/Tenant' ) , 'Tenant' ) ,
63
56
} ,
64
57
{
65
58
path : routes . node ,
66
59
slot : NodeSlot ,
67
- component : Node ,
60
+ component : lazyComponent ( ( ) => import ( '../ Node/Node' ) , 'Node' ) ,
68
61
} ,
69
62
{
70
63
path : routes . pDisk ,
71
64
slot : PDiskPageSlot ,
72
- component : PDiskPage ,
65
+ component : lazyComponent ( ( ) => import ( '../ PDiskPage/PDiskPage' ) , 'PDiskPage' ) ,
73
66
} ,
74
67
{
75
68
path : routes . vDisk ,
76
69
slot : VDiskPageSlot ,
77
- component : VDiskPage ,
70
+ component : lazyComponent ( ( ) => import ( '../ VDiskPage/VDiskPage' ) , 'VDiskPage' ) ,
78
71
} ,
79
72
{
80
73
path : routes . tablet ,
81
74
slot : TabletSlot ,
82
- component : Tablet ,
75
+ component : lazyComponent ( ( ) => import ( '../ Tablet' ) , 'Tablet' ) ,
83
76
} ,
84
77
{
85
78
path : routes . tabletsFilters ,
86
79
slot : TabletsFiltersSlot ,
87
- component : TabletsFilters ,
80
+ component : lazyComponent (
81
+ ( ) => import ( '../TabletsFilters/TabletsFilters' ) ,
82
+ 'TabletsFilters' ,
83
+ ) ,
88
84
} ,
89
85
] ;
90
86
87
+ const Clusters = lazyComponent ( ( ) => import ( '../Clusters/Clusters' ) , 'Clusters' ) ;
88
+
91
89
function renderRouteSlot ( slots : SlotMap , route : RouteSlot ) {
92
90
return (
93
91
< Route
@@ -151,7 +149,12 @@ export function Content(props: ContentProps) {
151
149
{ routesSlots . map ( ( route ) => {
152
150
return renderRouteSlot ( slots , route ) ;
153
151
} ) }
154
- < Redirect { ...redirectProps } />
152
+ < Route
153
+ path = { redirectProps . from || redirectProps . path }
154
+ exact = { redirectProps . exact }
155
+ strict = { redirectProps . strict }
156
+ render = { ( ) => < Redirect to = { redirectProps . to } push = { redirectProps . push } /> }
157
+ />
155
158
</ Switch >
156
159
</ Route >
157
160
</ Switch >
0 commit comments