Skip to content

Commit d1b08b2

Browse files
committed
fix: remove sosiskas
1 parent 30f7087 commit d1b08b2

File tree

7 files changed

+0
-449
lines changed

7 files changed

+0
-449
lines changed

src/containers/App/Content.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import type {RawBreadcrumbItem} from '../Header/breadcrumbs';
2424
import {
2525
ClusterSlot,
2626
ClustersSlot,
27-
MultipartTestSlot,
2827
NodeSlot,
2928
PDiskPageSlot,
3029
RedirectSlot,
@@ -49,12 +48,6 @@ type RouteSlot = {
4948
};
5049

5150
const routesSlots: RouteSlot[] = [
52-
{
53-
path: routes.multipartTest,
54-
slot: MultipartTestSlot,
55-
component: lazyComponent(() => import('../MultipartTest/MultipartTest'), 'MultipartTest'),
56-
exact: true,
57-
},
5851
{
5952
path: routes.cluster,
6053
slot: ClusterSlot,

src/containers/App/appSlots.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import type {RedirectProps, RouteComponentProps} from 'react-router-dom';
33
import {createSlot} from '../../components/slots';
44
import type {Cluster} from '../Cluster/Cluster';
55
import type {Clusters} from '../Clusters/Clusters';
6-
import type {MultipartTest} from '../MultipartTest/MultipartTest';
76
import type {Node} from '../Node/Node';
87
import type {PDiskPage} from '../PDiskPage/PDiskPage';
98
import type {StorageGroupPage} from '../StorageGroupPage/StorageGroupPage';
@@ -59,11 +58,5 @@ export const TabletSlot = createSlot<{
5958
| ((props: {component: typeof Tablet} & RouteComponentProps) => React.ReactNode);
6059
}>('tablet');
6160

62-
export const MultipartTestSlot = createSlot<{
63-
children?:
64-
| React.ReactNode
65-
| ((props: {component: typeof MultipartTest} & RouteComponentProps) => React.ReactNode);
66-
}>('multipartTest');
67-
6861
export const RoutesSlot = createSlot<{children: React.ReactNode}>('routes');
6962
export const RedirectSlot = createSlot<RedirectProps>('redirect');

src/containers/MultipartTest/MultipartTest.tsx

Lines changed: 0 additions & 255 deletions
This file was deleted.

src/routes.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export const PDISK = 'pDisk';
1515
export const VDISK = 'vDisk';
1616
export const STORAGE_GROUP = 'storageGroup';
1717
export const TABLET = 'tablet';
18-
export const MULTIPART_TEST = 'multipart-test';
1918

2019
const routes = {
2120
clusters: `/${CLUSTERS}`,
@@ -28,7 +27,6 @@ const routes = {
2827
tablet: `/${TABLET}/:id`,
2928
tabletsFilters: `/tabletsFilters`,
3029
auth: `/auth`,
31-
multipartTest: `/${MULTIPART_TEST}`,
3230
} as const;
3331

3432
export default routes;

src/services/api/index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import type {AxiosRequestConfig} from 'axios';
22

33
import {AuthAPI} from './auth';
44
import {MetaAPI} from './meta';
5-
import {MultipartAPI} from './multipart';
65
import {OperationAPI} from './operation';
76
import {PDiskAPI} from './pdisk';
87
import {SchemeAPI} from './scheme';
@@ -23,7 +22,6 @@ export class YdbEmbeddedAPI {
2322
vdisk: VDiskAPI;
2423
viewer: ViewerAPI;
2524
meta?: MetaAPI;
26-
multipart?: MultipartAPI;
2725

2826
constructor({config, webVersion}: {config: AxiosRequestConfig; webVersion?: boolean}) {
2927
this.auth = new AuthAPI({config});
@@ -38,7 +36,6 @@ export class YdbEmbeddedAPI {
3836
this.trace = new TraceAPI({config});
3937
this.vdisk = new VDiskAPI({config});
4038
this.viewer = new ViewerAPI({config});
41-
this.multipart = new MultipartAPI({config});
4239
}
4340
}
4441

0 commit comments

Comments
 (0)