Merge remote-tracking branch 'origin/main' into 18207-Workbench2-is-not-clearing...
[arvados-workbench2.git] / src / store / collections / collection-update-actions.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 { FormErrors, initialize, startSubmit, stopSubmit } from 'redux-form';
7 import { RootState } from "store/store";
8 import { collectionPanelActions } from "store/collection-panel/collection-panel-action";
9 import { dialogActions } from "store/dialog/dialog-actions";
10 import { getCommonResourceServiceError, CommonResourceServiceError } from "services/common-service/common-resource-service";
11 import { ServiceRepository } from "services/services";
12 import { CollectionResource } from 'models/collection';
13 import { progressIndicatorActions } from "store/progress-indicator/progress-indicator-actions";
14 import { snackbarActions, SnackbarKind } from "../snackbar/snackbar-actions";
15 import { updateResources } from "../resources/resources-actions";
16 import { loadDetailsPanel } from "../details-panel/details-panel-action";
17 import { getResource } from "store/resources/resources";
18
19 export interface CollectionUpdateFormDialogData {
20     uuid: string;
21     name: string;
22     description?: string;
23     storageClassesDesired?: string[];
24 }
25
26 export const COLLECTION_UPDATE_FORM_NAME = 'collectionUpdateFormName';
27
28 export const openCollectionUpdateDialog = (resource: CollectionUpdateFormDialogData) =>
29     (dispatch: Dispatch) => {
30         dispatch(initialize(COLLECTION_UPDATE_FORM_NAME, resource));
31         dispatch(dialogActions.OPEN_DIALOG({ id: COLLECTION_UPDATE_FORM_NAME, data: {} }));
32     };
33
34 export const updateCollection = (collection: CollectionUpdateFormDialogData) =>
35     (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
36         const uuid = collection.uuid || '';
37         dispatch(startSubmit(COLLECTION_UPDATE_FORM_NAME));
38         dispatch(progressIndicatorActions.START_WORKING(COLLECTION_UPDATE_FORM_NAME));
39
40         const cachedCollection = getResource<CollectionResource>(collection.uuid)(getState().resources);
41         services.collectionService.update(uuid, {
42             name: collection.name,
43             storageClassesDesired: collection.storageClassesDesired,
44             description: collection.description }
45         ).then(updatedCollection => {
46             updatedCollection = {...cachedCollection, ...updatedCollection};
47             dispatch(collectionPanelActions.LOAD_COLLECTION_SUCCESS({ item: updatedCollection as CollectionResource }));
48             dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_UPDATE_FORM_NAME }));
49             dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_UPDATE_FORM_NAME));
50             dispatch(snackbarActions.OPEN_SNACKBAR({
51                 message: "Collection has been successfully updated.",
52                 hideDuration: 2000,
53                 kind: SnackbarKind.SUCCESS
54             }));
55             dispatch<any>(updateResources([updatedCollection]));
56             dispatch<any>(loadDetailsPanel(updatedCollection.uuid));
57         }).catch (e => {
58             dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_UPDATE_FORM_NAME));
59             const error = getCommonResourceServiceError(e);
60             if (error === CommonResourceServiceError.UNIQUE_NAME_VIOLATION) {
61                 dispatch(stopSubmit(COLLECTION_UPDATE_FORM_NAME, { name: 'Collection with the same name already exists.' } as FormErrors));
62             } else {
63                 dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_UPDATE_FORM_NAME }));
64                 dispatch(snackbarActions.OPEN_SNACKBAR({
65                     message: e.errors.join(''),
66                     hideDuration: 2000,
67                     kind: SnackbarKind.ERROR }));
68                 }
69             }
70         );
71     };