X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/59b24ea9a90ba60563316a5c2ad4c7ce8a8c423d..618af1a3106c399765788be4583463ab35d97cd5:/src/views-components/rename-file-dialog/rename-file-dialog.tsx diff --git a/src/views-components/rename-file-dialog/rename-file-dialog.tsx b/src/views-components/rename-file-dialog/rename-file-dialog.tsx index 862227bd..b67697b5 100644 --- a/src/views-components/rename-file-dialog/rename-file-dialog.tsx +++ b/src/views-components/rename-file-dialog/rename-file-dialog.tsx @@ -2,24 +2,27 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { compose } from 'redux'; +import React from 'react'; +import { compose, Dispatch } from 'redux'; import { reduxForm, InjectedFormProps, Field } from 'redux-form'; -import { withDialog, WithDialogProps } from '~/store/dialog/with-dialog'; -import { FormDialog } from '~/components/form-dialog/form-dialog'; +import { withDialog, WithDialogProps } from 'store/dialog/with-dialog'; +import { FormDialog } from 'components/form-dialog/form-dialog'; import { DialogContentText } from '@material-ui/core'; -import { TextField } from '~/components/text-field/text-field'; -import { RENAME_FILE_DIALOG, RenameFileDialogData, renameFile } from '~/store/collection-panel/collection-panel-files/collection-panel-files-actions'; +import { TextField } from 'components/text-field/text-field'; +import { RENAME_FILE_DIALOG, RenameFileDialogData, renameFile } from 'store/collection-panel/collection-panel-files/collection-panel-files-actions'; +import { WarningCollection } from 'components/warning-collection/warning-collection'; +import { RENAME_FILE_VALIDATION } from 'validators/validators'; export const RenameFileDialog = compose( withDialog(RENAME_FILE_DIALOG), reduxForm({ form: RENAME_FILE_DIALOG, - onSubmit: (data: { name: string }, dispatch) => { - dispatch(renameFile(data.name)); + touchOnChange: true, + onSubmit: (data: { path: string }, dispatch: Dispatch) => { + dispatch(renameFile(data.path)); } }) -)((props: WithDialogProps & InjectedFormProps<{ name: string }>) => +)((props: WithDialogProps & InjectedFormProps<{ name: string, path: string }>) => ) => {`Please, enter a new name for ${props.data.name}`} + ;