merge 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     RUN_PROCESS: '/run-process',
21     WORKFLOWS: '/workflows',
22     SEARCH_RESULTS: '/search-results'
23 };
24
25 export const getResourceUrl = (uuid: string) => {
26     const kind = extractUuidKind(uuid);
27     switch (kind) {
28         case ResourceKind.PROJECT:
29             return getProjectUrl(uuid);
30         case ResourceKind.COLLECTION:
31             return getCollectionUrl(uuid);
32         case ResourceKind.PROCESS:
33             return getProcessUrl(uuid);
34         default:
35             return undefined;
36     }
37 };
38
39 export const getProcessUrl = (uuid: string) => `/processes/${uuid}`;
40
41 export const getProcessLogUrl = (uuid: string) => `/process-logs/${uuid}`;
42
43 export interface ResourceRouteParams {
44     id: string;
45 }
46
47 export const matchRootRoute = (route: string) =>
48     matchPath(route, { path: Routes.ROOT, exact: true });
49
50 export const matchFavoritesRoute = (route: string) =>
51     matchPath(route, { path: Routes.FAVORITES });
52
53 export const matchTrashRoute = (route: string) =>
54     matchPath(route, { path: Routes.TRASH });
55
56 export const matchProjectRoute = (route: string) =>
57     matchPath<ResourceRouteParams>(route, { path: Routes.PROJECTS });
58
59 export const matchCollectionRoute = (route: string) =>
60     matchPath<ResourceRouteParams>(route, { path: Routes.COLLECTIONS });
61
62 export const matchProcessRoute = (route: string) =>
63     matchPath<ResourceRouteParams>(route, { path: Routes.PROCESSES });
64
65 export const matchProcessLogRoute = (route: string) =>
66     matchPath<ResourceRouteParams>(route, { path: Routes.PROCESS_LOGS });
67
68 export const matchSharedWithMeRoute = (route: string) =>
69     matchPath(route, { path: Routes.SHARED_WITH_ME });
70
71 export const matchRunProcessRoute = (route: string) =>
72     matchPath(route, { path: Routes.RUN_PROCESS });
73     
74 export const matchWorkflowRoute = (route: string) =>
75     matchPath<ResourceRouteParams>(route, { path: Routes.WORKFLOWS });
76
77 export const matchSearchResultsRoute = (route: string) =>
78     matchPath<ResourceRouteParams>(route, { path: Routes.SEARCH_RESULTS });