X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ad5208965b91e020b431cd9d2c1d15ff4b856450..aa48015966dd61d462f43a1a336b1700c78624aa:/src/store/processes/process-move-actions.ts diff --git a/src/store/processes/process-move-actions.ts b/src/store/processes/process-move-actions.ts index dcf97185..78703e19 100644 --- a/src/store/processes/process-move-actions.ts +++ b/src/store/processes/process-move-actions.ts @@ -3,17 +3,17 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import { dialogActions } from "~/store/dialog/dialog-actions"; +import { dialogActions } from "store/dialog/dialog-actions"; import { startSubmit, stopSubmit, initialize, FormErrors } from 'redux-form'; -import { ServiceRepository } from '~/services/services'; -import { RootState } from '~/store/store'; -import { getCommonResourceServiceError, CommonResourceServiceError } from "~/services/common-service/common-resource-service"; -import { snackbarActions } from '~/store/snackbar/snackbar-actions'; -import { MoveToFormDialogData } from '~/store/move-to-dialog/move-to-dialog'; -import { resetPickerProjectTree } from '~/store/project-tree-picker/project-tree-picker-actions'; -import { projectPanelActions } from '~/store/project-panel/project-panel-action'; -import { getProcess } from '~/store/processes/process'; -import { initProjectsTreePicker } from '~/store/tree-picker/tree-picker-actions'; +import { ServiceRepository } from 'services/services'; +import { RootState } from 'store/store'; +import { getCommonResourceServiceError, CommonResourceServiceError } from "services/common-service/common-resource-service"; +import {snackbarActions, SnackbarKind} from 'store/snackbar/snackbar-actions'; +import { MoveToFormDialogData } from 'store/move-to-dialog/move-to-dialog'; +import { resetPickerProjectTree } from 'store/project-tree-picker/project-tree-picker-actions'; +import { projectPanelActions } from 'store/project-panel/project-panel-action'; +import { getProcess } from 'store/processes/process'; +import { initProjectsTreePicker } from 'store/tree-picker/tree-picker-actions'; export const PROCESS_MOVE_FORM_NAME = 'processMoveFormName'; @@ -26,7 +26,7 @@ export const openMoveProcessDialog = (resource: { name: string, uuid: string }) dispatch(initialize(PROCESS_MOVE_FORM_NAME, resource)); dispatch(dialogActions.OPEN_DIALOG({ id: PROCESS_MOVE_FORM_NAME, data: {} })); } else { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process not found', hideDuration: 2000 })); + dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process not found', hideDuration: 2000, kind: SnackbarKind.ERROR })); } }; @@ -41,11 +41,11 @@ export const moveProcess = (resource: MoveToFormDialogData) => return process; } catch (e) { const error = getCommonResourceServiceError(e); - if (error === CommonResourceServiceError.UNIQUE_VIOLATION) { + if (error === CommonResourceServiceError.UNIQUE_NAME_VIOLATION) { dispatch(stopSubmit(PROCESS_MOVE_FORM_NAME, { ownerUuid: 'A process with the same name already exists in the target project.' } as FormErrors)); } else { dispatch(dialogActions.CLOSE_DIALOG({ id: PROCESS_MOVE_FORM_NAME })); - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Could not move the process.', hideDuration: 2000 })); + dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Could not move the process.', hideDuration: 2000, kind: SnackbarKind.ERROR })); } return; }