projectPickerTree moved to component
[arvados-workbench2.git] / src / views-components / project-copy-dialog / project-copy-dialog.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from "react";
6 import { InjectedFormProps, Field } from 'redux-form';
7 import { WithDialogProps } from '~/store/dialog/with-dialog';
8 import { FormDialog } from '~/components/form-dialog/form-dialog';
9 import { ProjectTreePicker } from '~/components/project-tree-picker/project-tree-picker';
10 import { COPY_NAME_VALIDATION, MAKE_A_COPY_VALIDATION } from '~/validators/validators';
11 import { TextField } from "~/components/text-field/text-field";
12 import { ProjectCopyFormDialogData } from "~/store/project-copy-dialog/project-copy-dialog";
13
14 export const ProjectCopyFormDialog = (props: WithDialogProps<string> & InjectedFormProps<ProjectCopyFormDialogData>) =>
15     <FormDialog
16         dialogTitle='Make a copy'
17         formFields={ProjectCopyFields}
18         submitLabel='Copy'
19         {...props}
20     />;
21
22 const ProjectCopyFields = () => <div>
23     <ProjectCopyNameField />
24     <ProjectCopyDialogFields />
25 </div>;
26
27 const ProjectCopyNameField = () =>
28     <Field
29         name='name'
30         component={TextField}
31         validate={COPY_NAME_VALIDATION}
32         label="Enter a new name for the copy" />;
33
34 const ProjectCopyDialogFields = () =>
35     <Field
36         name="projectUuid"
37         component={ProjectTreePicker}
38         validate={MAKE_A_COPY_VALIDATION} />;