X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e63198a93d7b537ffbb68b8210c99f76041fd112..61cd8fe9d4fe4dfeab443f31bbbc5effa5176765:/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 6c880cc8..1a806511 100644 --- a/src/views-components/rename-file-dialog/rename-file-dialog.tsx +++ b/src/views-components/rename-file-dialog/rename-file-dialog.tsx @@ -2,27 +2,40 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Dispatch } from "redux"; -import { reduxForm, reset, startSubmit, stopSubmit } from "redux-form"; -import { withDialog } from "../../store/dialog/with-dialog"; -import { dialogActions } from "../../store/dialog/dialog-actions"; -import { RenameDialog } from "../../components/rename-dialog/rename-dialog"; +import * as React from 'react'; +import { compose } 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 { 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 { WarningCollection } from '~/components/warning-collection/warning-collection'; -export const RENAME_FILE_DIALOG = 'renameFileDialog'; - -export const openRenameFileDialog = (originalName: string, ) => - (dispatch: Dispatch) => { - dispatch(reset(RENAME_FILE_DIALOG)); - dispatch(dialogActions.OPEN_DIALOG({ id: RENAME_FILE_DIALOG, data: originalName })); - }; - -export const [RenameFileDialog] = [RenameDialog] - .map(withDialog(RENAME_FILE_DIALOG)) - .map(reduxForm({ +export const RenameFileDialog = compose( + withDialog(RENAME_FILE_DIALOG), + reduxForm({ form: RENAME_FILE_DIALOG, - onSubmit: (data, dispatch) => { - dispatch(startSubmit(RENAME_FILE_DIALOG)); - // TODO: call collection file renaming action here - setTimeout(() => dispatch(stopSubmit(RENAME_FILE_DIALOG, { name: 'Invalid name' })), 2000); + onSubmit: (data: { name: string }, dispatch) => { + dispatch(renameFile(data.name)); } - })); + }) +)((props: WithDialogProps & InjectedFormProps<{ name: string }>) => + ); + +const RenameDialogFormFields = (props: WithDialogProps) => <> + + {`Please, enter a new name for ${props.data.name}`} + + + +;