X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/6bdb4758d981aa05c19700761d3ace0db7af324a..b6ac7fe88d347582d39fffa002e300af222c578f:/src/store/collections/collection-create-actions.ts diff --git a/src/store/collections/collection-create-actions.ts b/src/store/collections/collection-create-actions.ts index 1b4e86da..0b73e6f1 100644 --- a/src/store/collections/collection-create-actions.ts +++ b/src/store/collections/collection-create-actions.ts @@ -4,17 +4,17 @@ import { Dispatch } from "redux"; import { reset, startSubmit, stopSubmit, initialize, FormErrors } from 'redux-form'; -import { RootState } from '~/store/store'; -import { getUserUuid } from "~/common/getuser"; -import { dialogActions } from "~/store/dialog/dialog-actions"; -import { ServiceRepository } from '~/services/services'; -import { getCommonResourceServiceError, CommonResourceServiceError } from "~/services/common-service/common-resource-service"; +import { RootState } from 'store/store'; +import { getUserUuid } from "common/getuser"; +import { dialogActions } from "store/dialog/dialog-actions"; +import { ServiceRepository } from 'services/services'; +import { getCommonResourceServiceError, CommonResourceServiceError } from "services/common-service/common-resource-service"; import { uploadCollectionFiles } from './collection-upload-actions'; -import { fileUploaderActions } from '~/store/file-uploader/file-uploader-actions'; -import { progressIndicatorActions } from "~/store/progress-indicator/progress-indicator-actions"; -import { isItemNotInProject, isProjectOrRunProcessRoute } from '~/store/projects/project-create-actions'; -import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; -import { CollectionResource } from "~/models/collection"; +import { fileUploaderActions } from 'store/file-uploader/file-uploader-actions'; +import { progressIndicatorActions } from "store/progress-indicator/progress-indicator-actions"; +import { isProjectOrRunProcessRoute } from 'store/projects/project-create-actions'; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; +import { CollectionResource } from "models/collection"; export interface CollectionCreateFormDialogData { ownerUuid: string; @@ -26,11 +26,11 @@ export const COLLECTION_CREATE_FORM_NAME = "collectionCreateFormName"; export const openCollectionCreateDialog = (ownerUuid: string) => (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - const router = getState(); - const properties = getState().properties; - if (isItemNotInProject(properties) || !isProjectOrRunProcessRoute(router)) { + const { router } = getState(); + if (!isProjectOrRunProcessRoute(router)) { const userUuid = getUserUuid(getState()); - dispatch(initialize(COLLECTION_CREATE_FORM_NAME, { userUuid })); + if (!userUuid) { return; } + dispatch(initialize(COLLECTION_CREATE_FORM_NAME, { ownerUuid: userUuid })); } else { dispatch(initialize(COLLECTION_CREATE_FORM_NAME, { ownerUuid })); } @@ -41,18 +41,17 @@ export const openCollectionCreateDialog = (ownerUuid: string) => export const createCollection = (data: CollectionCreateFormDialogData) => async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { dispatch(startSubmit(COLLECTION_CREATE_FORM_NAME)); - let newCollection: CollectionResource; + let newCollection: CollectionResource | undefined; try { dispatch(progressIndicatorActions.START_WORKING(COLLECTION_CREATE_FORM_NAME)); newCollection = await services.collectionService.create(data); await dispatch(uploadCollectionFiles(newCollection.uuid)); dispatch(dialogActions.CLOSE_DIALOG({ id: COLLECTION_CREATE_FORM_NAME })); dispatch(reset(COLLECTION_CREATE_FORM_NAME)); - dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_CREATE_FORM_NAME)); return newCollection; } catch (e) { const error = getCommonResourceServiceError(e); - if (error === CommonResourceServiceError.UNIQUE_VIOLATION) { + if (error === CommonResourceServiceError.UNIQUE_NAME_VIOLATION) { dispatch(stopSubmit(COLLECTION_CREATE_FORM_NAME, { name: 'Collection with the same name already exists.' } as FormErrors)); } else if (error === CommonResourceServiceError.NONE) { dispatch(stopSubmit(COLLECTION_CREATE_FORM_NAME)); @@ -62,9 +61,10 @@ export const createCollection = (data: CollectionCreateFormDialogData) => hideDuration: 2000, kind: SnackbarKind.ERROR })); - await services.collectionService.delete(newCollection!.uuid); + if (newCollection) { await services.collectionService.delete(newCollection.uuid); } } - dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_CREATE_FORM_NAME)); return; + } finally { + dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_CREATE_FORM_NAME)); } };