Create shared-with-me panel skeleton
[arvados-workbench2.git] / src / store / navigation / navigation-action.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Dispatch, compose } from 'redux';
6 import { push } from "react-router-redux";
7 import { ResourceKind, extractUuidKind } from '~/models/resource';
8 import { getCollectionUrl } from "~/models/collection";
9 import { getProjectUrl } from "~/models/project";
10 import { SidePanelTreeCategory } from '../side-panel-tree/side-panel-tree-actions';
11 import { Routes, getProcessUrl, getProcessLogUrl } from '~/routes/routes';
12 import { RootState } from '~/store/store';
13 import { ServiceRepository } from '~/services/services';
14
15 export const navigateTo = (uuid: string) =>
16     async (dispatch: Dispatch) => {
17         const kind = extractUuidKind(uuid);
18         if (kind === ResourceKind.PROJECT || kind === ResourceKind.USER) {
19             dispatch<any>(navigateToProject(uuid));
20         } else if (kind === ResourceKind.COLLECTION) {
21             dispatch<any>(navigateToCollection(uuid));
22         } else if (kind === ResourceKind.CONTAINER_REQUEST) {
23             dispatch<any>(navigateToProcess(uuid));
24         }
25         if (uuid === SidePanelTreeCategory.FAVORITES) {
26             dispatch<any>(navigateToFavorites);
27         }
28     };
29
30 export const navigateToFavorites = push(Routes.FAVORITES);
31
32 export const navigateToTrash = push(Routes.TRASH);
33
34 export const navigateToProject = compose(push, getProjectUrl);
35
36 export const navigateToCollection = compose(push, getCollectionUrl);
37
38 export const navigateToProcess = compose(push, getProcessUrl);
39
40 export const navigateToProcessLogs = compose(push, getProcessLogUrl);
41
42 export const navigateToRootProject = (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
43     const rootProjectUuid = services.authService.getUuid();
44     if (rootProjectUuid) {
45         dispatch(navigateToProject(rootProjectUuid));
46     }
47 };
48
49 export const navigateToSharedWithMe = push(Routes.SHARED_WITH_ME);