9922d8b58ab9768b925aca4f6e17e19f7474244b
[arvados-workbench2.git] / src / store / collection-panel / collection-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 { loadCollectionFiles } from "./collection-panel-files/collection-panel-files-actions";
7 import { CollectionResource } from '~/models/collection';
8 import { collectionPanelFilesAction } from "./collection-panel-files/collection-panel-files-actions";
9 import { createTree } from "~/models/tree";
10 import { RootState } from "~/store/store";
11 import { ServiceRepository } from "~/services/services";
12 import { TagProperty } from "~/models/tag";
13 import { snackbarActions } from "../snackbar/snackbar-actions";
14 import { resourcesActions } from "~/store/resources/resources-actions";
15 import { unionize, ofType, UnionOf } from '~/common/unionize';
16 import { SnackbarKind } from '~/store/snackbar/snackbar-actions';
17 import { navigateTo } from '~/store/navigation/navigation-action';
18 import { loadDetailsPanel } from '~/store/details-panel/details-panel-action';
19 import { addProperty, deleteProperty } from "~/lib/resource-properties";
20
21 export const collectionPanelActions = unionize({
22     SET_COLLECTION: ofType<CollectionResource>(),
23     LOAD_COLLECTION: ofType<{ uuid: string }>(),
24     LOAD_COLLECTION_SUCCESS: ofType<{ item: CollectionResource }>()
25 });
26
27 export type CollectionPanelAction = UnionOf<typeof collectionPanelActions>;
28
29 export const COLLECTION_TAG_FORM_NAME = 'collectionTagForm';
30
31 export const loadCollectionPanel = (uuid: string) =>
32     async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
33         dispatch(collectionPanelActions.LOAD_COLLECTION({ uuid }));
34         dispatch(collectionPanelFilesAction.SET_COLLECTION_FILES({ files: createTree() }));
35         const collection = await services.collectionService.get(uuid);
36         dispatch(loadDetailsPanel(collection.uuid));
37         dispatch(collectionPanelActions.LOAD_COLLECTION_SUCCESS({ item: collection }));
38         dispatch(resourcesActions.SET_RESOURCES([collection]));
39         dispatch<any>(loadCollectionFiles(collection.uuid));
40         return collection;
41     };
42
43 export const createCollectionTag = (data: TagProperty) =>
44     async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
45         const item = getState().collectionPanel.item;
46         if (!item) { return; }
47
48         const properties = Object.assign({}, item.properties);
49         try {
50             const key = data.keyID || data.key;
51             const value = data.valueID || data.value;
52             const updatedCollection = await services.collectionService.update(
53                 item.uuid, {
54                     properties: addProperty(properties, key, value)
55                 }
56             );
57             dispatch(collectionPanelActions.SET_COLLECTION(updatedCollection));
58             dispatch(resourcesActions.SET_RESOURCES([updatedCollection]));
59             dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Tag has been successfully added.", hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
60             return updatedCollection;
61         } catch (e) {
62             dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.errors[0], hideDuration: 2000, kind: SnackbarKind.ERROR }));
63             return;
64         }
65     };
66
67 export const navigateToProcess = (uuid: string) =>
68     async (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
69         try {
70             await services.containerRequestService.get(uuid);
71             dispatch<any>(navigateTo(uuid));
72         } catch {
73             dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'This process does not exist!', hideDuration: 2000, kind: SnackbarKind.ERROR }));
74         }
75     };
76
77 export const deleteCollectionTag = (key: string, value: string) =>
78     async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
79         const item = getState().collectionPanel.item;
80         if (!item) { return; }
81
82         const properties = Object.assign({}, item.properties);
83         try {
84             const updatedCollection = await services.collectionService.update(
85                 item.uuid, {
86                     properties: deleteProperty(properties, key, value)
87                 }
88             );
89             dispatch(collectionPanelActions.SET_COLLECTION(updatedCollection));
90             dispatch(resourcesActions.SET_RESOURCES([updatedCollection]));
91             dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Tag has been successfully deleted.", hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
92             return updatedCollection;
93         } catch (e) {
94             dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.errors[0], hideDuration: 2000, kind: SnackbarKind.ERROR }));
95             return;
96         }
97     };