Mergeg branch 'master'
[arvados-workbench2.git] / src / routes / routes.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { matchPath } from 'react-router';
6 import { ResourceKind, RESOURCE_UUID_PATTERN, extractUuidKind } from '~/models/resource';
7 import { getProjectUrl } from '~/models/project';
8 import { getCollectionUrl } from '~/models/collection';
9
10 export const Routes = {
11     ROOT: '/',
12     TOKEN: '/token',
13     PROJECTS: `/projects/:id(${RESOURCE_UUID_PATTERN})`,
14     COLLECTIONS: `/collections/:id(${RESOURCE_UUID_PATTERN})`,
15     PROCESSES: `/processes/:id(${RESOURCE_UUID_PATTERN})`,
16     FAVORITES: '/favorites',
17     TRASH: '/trash',
18     PROCESS_LOGS: `/process-logs/:id(${RESOURCE_UUID_PATTERN})`,
19     SHARED_WITH_ME: '/shared-with-me',
20 };
21
22 export const getResourceUrl = (uuid: string) => {
23     const kind = extractUuidKind(uuid);
24     switch (kind) {
25         case ResourceKind.PROJECT:
26             return getProjectUrl(uuid);
27         case ResourceKind.COLLECTION:
28             return getCollectionUrl(uuid);
29         case ResourceKind.PROCESS:
30             return getProcessUrl(uuid);
31         default:
32             return undefined;
33     }
34 };
35
36 export const getProcessUrl = (uuid: string) => `/processes/${uuid}`;
37
38 export const getProcessLogUrl = (uuid: string) => `/process-logs/${uuid}`;
39
40 export interface ResourceRouteParams {
41     id: string;
42 }
43
44 export const matchRootRoute = (route: string) =>
45     matchPath(route, { path: Routes.ROOT, exact: true });
46
47 export const matchFavoritesRoute = (route: string) =>
48     matchPath(route, { path: Routes.FAVORITES });
49
50 export const matchTrashRoute = (route: string) =>
51     matchPath(route, { path: Routes.TRASH });
52
53 export const matchProjectRoute = (route: string) =>
54     matchPath<ResourceRouteParams>(route, { path: Routes.PROJECTS });
55
56 export const matchCollectionRoute = (route: string) =>
57     matchPath<ResourceRouteParams>(route, { path: Routes.COLLECTIONS });
58
59 export const matchProcessRoute = (route: string) =>
60     matchPath<ResourceRouteParams>(route, { path: Routes.PROCESSES });
61
62 export const matchProcessLogRoute = (route: string) =>
63     matchPath<ResourceRouteParams>(route, { path: Routes.PROCESS_LOGS });
64
65 export const matchSharedWithMeRoute = (route: string) =>
66     matchPath(route, { path: Routes.SHARED_WITH_ME });