Skip to content

Commit 459a3dd

Browse files
authored
feat: prepare for react-router 6, lazy load routes (#980)
1 parent 191ac71 commit 459a3dd

File tree

22 files changed

+48
-48
lines changed

22 files changed

+48
-48
lines changed

src/containers/App/Content.tsx

+19-16
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,11 @@ import {getUser} from '../../store/reducers/authentication/authentication';
1313
import {nodesListApi} from '../../store/reducers/nodesList';
1414
import {cn} from '../../utils/cn';
1515
import {useTypedDispatch, useTypedSelector} from '../../utils/hooks';
16+
import {lazyComponent} from '../../utils/lazyComponent';
1617
import Authentication from '../Authentication/Authentication';
17-
import Cluster from '../Cluster/Cluster';
1818
import {getClusterPath} from '../Cluster/utils';
19-
import {Clusters} from '../Clusters/Clusters';
2019
import Header from '../Header/Header';
2120
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';
2821

2922
import {
3023
ClusterSlot,
@@ -54,40 +47,45 @@ const routesSlots: RouteSlot[] = [
5447
{
5548
path: routes.cluster,
5649
slot: ClusterSlot,
57-
component: Cluster,
50+
component: lazyComponent(() => import('../Cluster/Cluster'), 'Cluster'),
5851
},
5952
{
6053
path: routes.tenant,
6154
slot: TenantSlot,
62-
component: Tenant,
55+
component: lazyComponent(() => import('../Tenant/Tenant'), 'Tenant'),
6356
},
6457
{
6558
path: routes.node,
6659
slot: NodeSlot,
67-
component: Node,
60+
component: lazyComponent(() => import('../Node/Node'), 'Node'),
6861
},
6962
{
7063
path: routes.pDisk,
7164
slot: PDiskPageSlot,
72-
component: PDiskPage,
65+
component: lazyComponent(() => import('../PDiskPage/PDiskPage'), 'PDiskPage'),
7366
},
7467
{
7568
path: routes.vDisk,
7669
slot: VDiskPageSlot,
77-
component: VDiskPage,
70+
component: lazyComponent(() => import('../VDiskPage/VDiskPage'), 'VDiskPage'),
7871
},
7972
{
8073
path: routes.tablet,
8174
slot: TabletSlot,
82-
component: Tablet,
75+
component: lazyComponent(() => import('../Tablet'), 'Tablet'),
8376
},
8477
{
8578
path: routes.tabletsFilters,
8679
slot: TabletsFiltersSlot,
87-
component: TabletsFilters,
80+
component: lazyComponent(
81+
() => import('../TabletsFilters/TabletsFilters'),
82+
'TabletsFilters',
83+
),
8884
},
8985
];
9086

87+
const Clusters = lazyComponent(() => import('../Clusters/Clusters'), 'Clusters');
88+
9189
function renderRouteSlot(slots: SlotMap, route: RouteSlot) {
9290
return (
9391
<Route
@@ -151,7 +149,12 @@ export function Content(props: ContentProps) {
151149
{routesSlots.map((route) => {
152150
return renderRouteSlot(slots, route);
153151
})}
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+
/>
155158
</Switch>
156159
</Route>
157160
</Switch>

src/containers/App/Providers.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {Store} from '@reduxjs/toolkit';
55
import type {History} from 'history';
66
import {HelmetProvider} from 'react-helmet-async';
77
import {Provider} from 'react-redux';
8-
import {Router} from 'react-router';
8+
import {Router} from 'react-router-dom';
99
import {QueryParamProvider} from 'use-query-params';
1010
import {ReactRouter5Adapter} from 'use-query-params/adapters/react-router-5';
1111

src/containers/App/appSlots.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import type {RedirectProps, RouteComponentProps} from 'react-router';
1+
import type {RedirectProps, RouteComponentProps} from 'react-router-dom';
22

33
import {createSlot} from '../../components/slots';
4-
import type Cluster from '../Cluster/Cluster';
4+
import type {Cluster} from '../Cluster/Cluster';
55
import type {Clusters} from '../Clusters/Clusters';
6-
import type Node from '../Node/Node';
6+
import type {Node} from '../Node/Node';
77
import type {PDiskPage} from '../PDiskPage/PDiskPage';
88
import type {Tablet} from '../Tablet';
99
import type {TabletsFilters} from '../TabletsFilters/TabletsFilters';
10-
import type Tenant from '../Tenant/Tenant';
10+
import type {Tenant} from '../Tenant/Tenant';
1111
import type {VDiskPage} from '../VDiskPage/VDiskPage';
1212

1313
export const ClustersSlot = createSlot<{

src/containers/AppWithClusters/ExtendedCluster/ExtendedCluster.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {cn} from '../../../utils/cn';
1313
import type {GetMonitoringClusterLink, GetMonitoringLink} from '../../../utils/monitoring';
1414
import {getCleanBalancerValue, removeViewerPathname} from '../../../utils/parseBalancer';
1515
import {getBackendFromNodeHost} from '../../../utils/prepareBackend';
16-
import type Cluster from '../../Cluster/Cluster';
16+
import type {Cluster} from '../../Cluster/Cluster';
1717
import {useClusterData} from '../useClusterData';
1818

1919
import './ExtendedCluster.scss';

src/containers/AppWithClusters/ExtendedNode/ExtendedNode.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type Node from '../../Node/Node';
1+
import type {Node} from '../../Node/Node';
22
import {useClusterData} from '../useClusterData';
33

44
export function ExtendedNode({component: NodeComponent}: {component: typeof Node}) {

src/containers/AppWithClusters/ExtendedTenant/ExtendedTenant.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {MonitoringButton} from '../../../components/MonitoringButton/MonitoringButton';
22
import type {ETenantType} from '../../../types/api/tenant';
33
import type {GetMonitoringLink} from '../../../utils/monitoring';
4-
import type Tenant from '../../Tenant/Tenant';
4+
import type {Tenant} from '../../Tenant/Tenant';
55
import {useClusterData} from '../useClusterData';
66

77
export interface ExtendedTenantProps {

src/containers/AppWithClusters/useClusterData.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import {useLocation} from 'react-router';
3+
import {useLocation} from 'react-router-dom';
44

55
import {parseQuery} from '../../routes';
66
import {clustersApi} from '../../store/reducers/clusters/clusters';

src/containers/AsideNavigation/YdbInternalUser/YdbInternalUser.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {ArrowRightFromSquare, ArrowRightToSquare} from '@gravity-ui/icons';
22
import {Button, Icon} from '@gravity-ui/uikit';
3-
import {useHistory} from 'react-router';
3+
import {useHistory} from 'react-router-dom';
44

55
import routes, {createHref} from '../../../routes';
66
import {logout} from '../../../store/reducers/authentication/authentication';

src/containers/Authentication/Authentication.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22

33
import {Eye, EyeSlash, Xmark} from '@gravity-ui/icons';
44
import {Button, Link as ExternalLink, Icon, TextInput} from '@gravity-ui/uikit';
5-
import {useHistory, useLocation} from 'react-router';
5+
import {useHistory, useLocation} from 'react-router-dom';
66

77
import {parseQuery} from '../../routes';
88
import {authenticate} from '../../store/reducers/authentication/authentication';

src/containers/Cluster/Cluster.tsx

+6-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ interface ClusterProps {
4141
additionalVersionsProps?: AdditionalVersionsProps;
4242
}
4343

44-
function Cluster({
44+
export function Cluster({
4545
additionalClusterProps,
4646
additionalTenantsProps,
4747
additionalNodesProps,
@@ -198,7 +198,11 @@ function Cluster({
198198
>
199199
<Versions versionToColor={versionToColor} />
200200
</Route>
201-
<Redirect to={getLocationObjectFromHref(getClusterPath(activeTabId))} />
201+
<Route
202+
render={() => (
203+
<Redirect to={getLocationObjectFromHref(getClusterPath(activeTabId))} />
204+
)}
205+
/>
202206
</Switch>
203207
</div>
204208
</div>
@@ -228,5 +232,3 @@ function useClusterTab() {
228232

229233
return activeTab;
230234
}
231-
232-
export default Cluster;

src/containers/Node/Node.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface NodeProps {
3333
className?: string;
3434
}
3535

36-
function Node(props: NodeProps) {
36+
export function Node(props: NodeProps) {
3737
const container = React.useRef<HTMLDivElement>(null);
3838

3939
const dispatch = useTypedDispatch();
@@ -159,5 +159,3 @@ function Node(props: NodeProps) {
159159
return <div className="error">no node data</div>;
160160
}
161161
}
162-
163-
export default Node;

src/containers/Tenant/Diagnostics/TenantOverview/TenantCpu/TopQueries.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import {useHistory, useLocation} from 'react-router';
3+
import {useHistory, useLocation} from 'react-router-dom';
44

55
import {parseQuery} from '../../../../../routes';
66
import {changeUserInput} from '../../../../../store/reducers/executeQuery';

src/containers/Tenant/Diagnostics/TenantOverview/TenantCpu/TopShards.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {useLocation} from 'react-router';
1+
import {useLocation} from 'react-router-dom';
22

33
import {parseQuery} from '../../../../../routes';
44
import {TENANT_DIAGNOSTICS_TABS_IDS} from '../../../../../store/reducers/tenant/constants';

src/containers/Tenant/Diagnostics/TenantOverview/TenantStorage/TopTables.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type {Column} from '@gravity-ui/react-data-table';
22
import DataTable from '@gravity-ui/react-data-table';
3-
import {useLocation} from 'react-router';
3+
import {useLocation} from 'react-router-dom';
44

55
import {CellWithPopover} from '../../../../../components/CellWithPopover/CellWithPopover';
66
import {LinkToSchemaObject} from '../../../../../components/LinkToSchemaObject/LinkToSchemaObject';

src/containers/Tenant/Diagnostics/TopQueries/TopQueries.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import {useHistory, useLocation} from 'react-router';
3+
import {useHistory, useLocation} from 'react-router-dom';
44

55
import type {DateRangeValues} from '../../../../components/DateRange';
66
import {DateRange} from '../../../../components/DateRange';

src/containers/Tenant/Diagnostics/TopShards/TopShards.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22

33
import type {Column, Settings, SortOrder} from '@gravity-ui/react-data-table';
44
import DataTable from '@gravity-ui/react-data-table';
5-
import {useLocation} from 'react-router';
5+
import {useLocation} from 'react-router-dom';
66

77
import {ResizeableDataTable} from '../../../../components/ResizeableDataTable/ResizeableDataTable';
88
import {TableWithControlsLayout} from '../../../../components/TableWithControlsLayout/TableWithControlsLayout';

src/containers/Tenant/Info/ExternalTable/ExternalTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {useLocation} from 'react-router';
1+
import {useLocation} from 'react-router-dom';
22

33
import {EntityStatus} from '../../../../components/EntityStatus/EntityStatus';
44
import type {InfoViewerItem} from '../../../../components/InfoViewer';

src/containers/Tenant/ObjectSummary/ObjectSummary.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import {HelpPopover} from '@gravity-ui/components';
44
import {LayoutHeaderCellsLargeFill} from '@gravity-ui/icons';
55
import {Button, Icon, Tabs} from '@gravity-ui/uikit';
66
import qs from 'qs';
7-
import {useLocation} from 'react-router';
8-
import {Link} from 'react-router-dom';
7+
import {Link, useLocation} from 'react-router-dom';
98
import {StringParam, useQueryParam} from 'use-query-params';
109

1110
import {AsyncReplicationState} from '../../../components/AsyncReplicationState';

src/containers/Tenant/Query/QueryTabs/QueryTabs.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Tabs} from '@gravity-ui/uikit';
2-
import {useLocation} from 'react-router';
2+
import {useLocation} from 'react-router-dom';
33

44
import {InternalLink} from '../../../../components/InternalLink/InternalLink';
55
import {parseQuery} from '../../../../routes';

src/containers/Tenant/Tenant.tsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface TenantProps {
4040
additionalNodesProps?: AdditionalNodesProps;
4141
}
4242

43-
function Tenant(props: TenantProps) {
43+
export function Tenant(props: TenantProps) {
4444
const [summaryVisibilityState, dispatchSummaryVisibilityAction] = React.useReducer(
4545
paneVisibilityToggleReducerCreator(DEFAULT_IS_TENANT_SUMMARY_COLLAPSED),
4646
undefined,
@@ -143,5 +143,3 @@ function Tenant(props: TenantProps) {
143143
</div>
144144
);
145145
}
146-
147-
export default Tenant;

src/containers/Tenant/TenantNavigation/useTenantNavigation.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22

33
import {Pulse, Terminal} from '@gravity-ui/icons';
4-
import {useHistory, useLocation} from 'react-router';
4+
import {useHistory, useLocation} from 'react-router-dom';
55

66
import routes, {parseQuery} from '../../../routes';
77
import {TENANT_PAGE, TENANT_PAGES_IDS} from '../../../store/reducers/tenant/constants';

src/utils/hooks/useSearchQuery.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {useLocation} from 'react-router';
1+
import {useLocation} from 'react-router-dom';
22

33
import {parseQuery} from '../../routes';
44

0 commit comments

Comments
 (0)