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