Refactor to apply global navigation actions
[arvados-workbench2.git] / src / store / side-panel / side-panel-action.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Dispatch } from 'redux';
6 import { isSidePanelTreeCategory, SidePanelTreeCategory } from '~/store/side-panel-tree/side-panel-tree-actions';
7 import { navigateToFavorites, navigateToResource } from '../navigation/navigation-action';
8 import { snackbarActions } from '~/store/snackbar/snackbar-actions';
9
10 export const navigateFromSidePanel = (id: string) =>
11     (dispatch: Dispatch) => {
12         if (isSidePanelTreeCategory(id)) {
13             dispatch<any>(getSidePanelTreeCategoryAction(id));
14         } else {
15             dispatch<any>(navigateToResource(id));
16         }
17     };
18
19 const getSidePanelTreeCategoryAction = (id: string) => {
20     switch (id) {
21         case SidePanelTreeCategory.FAVORITES:
22             return navigateToFavorites;
23         default:
24             return sidePanelTreeCategoryNotAvailable(id);
25     }
26 };
27
28 const sidePanelTreeCategoryNotAvailable = (id: string) =>
29     snackbarActions.OPEN_SNACKBAR({
30         message: `${id} not available`,
31         hideDuration: 3000,
32     });