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