X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/83931f3e2ec3652900ed733f8a35f8be018d39d7..852a6a393297d03ca5259ddb6aa7aedff4a000ea:/src/store/collections/collection-update-actions.ts diff --git a/src/store/collections/collection-update-actions.ts b/src/store/collections/collection-update-actions.ts index 2faaa215..bf9c6449 100644 --- a/src/store/collections/collection-update-actions.ts +++ b/src/store/collections/collection-update-actions.ts @@ -3,26 +3,37 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { FormErrors, initialize, startSubmit, stopSubmit } from 'redux-form'; -import { RootState } from "~/store/store"; -import { collectionPanelActions } from "~/store/collection-panel/collection-panel-action"; -import { dialogActions } from "~/store/dialog/dialog-actions"; -import { getCommonResourceServiceError, CommonResourceServiceError } from "~/services/common-service/common-resource-service"; -import { ServiceRepository } from "~/services/services"; -import { CollectionResource } from '~/models/collection'; -import { progressIndicatorActions } from "~/store/progress-indicator/progress-indicator-actions"; +import { + FormErrors, + formValueSelector, + initialize, + startSubmit, + stopSubmit +} from 'redux-form'; +import { RootState } from "store/store"; +import { collectionPanelActions } from "store/collection-panel/collection-panel-action"; +import { dialogActions } from "store/dialog/dialog-actions"; +import { getCommonResourceServiceError, CommonResourceServiceError } from "services/common-service/common-resource-service"; +import { ServiceRepository } from "services/services"; +import { CollectionResource } from 'models/collection'; +import { progressIndicatorActions } from "store/progress-indicator/progress-indicator-actions"; import { snackbarActions, SnackbarKind } from "../snackbar/snackbar-actions"; import { updateResources } from "../resources/resources-actions"; -import { reloadProjectMatchingUuid } from "../workbench/workbench-actions"; import { loadDetailsPanel } from "../details-panel/details-panel-action"; +import { getResource } from "store/resources/resources"; +import { CollectionProperties } from "./collection-create-actions"; export interface CollectionUpdateFormDialogData { uuid: string; name: string; description?: string; + storageClassesDesired?: string[]; + properties?: CollectionProperties; } export const COLLECTION_UPDATE_FORM_NAME = 'collectionUpdateFormName'; +export const COLLECTION_UPDATE_PROPERTIES_FORM_NAME = "collectionUpdatePropertiesFormName"; +export const COLLECTION_UPDATE_FORM_SELECTOR = formValueSelector(COLLECTION_UPDATE_FORM_NAME); export const openCollectionUpdateDialog = (resource: CollectionUpdateFormDialogData) => (dispatch: Dispatch) => { @@ -36,11 +47,15 @@ export const updateCollection = (collection: CollectionUpdateFormDialogData) => dispatch(startSubmit(COLLECTION_UPDATE_FORM_NAME)); dispatch(progressIndicatorActions.START_WORKING(COLLECTION_UPDATE_FORM_NAME)); + const cachedCollection = getResource(collection.uuid)(getState().resources); services.collectionService.update(uuid, { name: collection.name, - description: collection.description } + storageClassesDesired: collection.storageClassesDesired, + description: collection.description, + properties: collection.properties } ).then(updatedCollection => { - dispatch(collectionPanelActions.LOAD_COLLECTION_SUCCESS({ item: updatedCollection as CollectionResource })); + updatedCollection = {...cachedCollection, ...updatedCollection}; + dispatch(collectionPanelActions.SET_COLLECTION(updatedCollection)); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_UPDATE_FORM_NAME })); dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_UPDATE_FORM_NAME)); dispatch(snackbarActions.OPEN_SNACKBAR({ @@ -49,7 +64,6 @@ export const updateCollection = (collection: CollectionUpdateFormDialogData) => kind: SnackbarKind.SUCCESS })); dispatch(updateResources([updatedCollection])); - dispatch(reloadProjectMatchingUuid([updatedCollection.ownerUuid])); dispatch(loadDetailsPanel(updatedCollection.uuid)); }).catch (e => { dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_UPDATE_FORM_NAME));