// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { memoize } from 'lodash/fp'; import { InjectedFormProps, Field } from 'redux-form'; import { WithDialogProps } from '~/store/dialog/with-dialog'; import { FormDialog } from '~/components/form-dialog/form-dialog'; import { ProjectTreePickerField } from '~/views-components/project-tree-picker/project-tree-picker'; import { COPY_NAME_VALIDATION, COPY_FILE_VALIDATION } from '~/validators/validators'; import { TextField } from "~/components/text-field/text-field"; import { CopyFormDialogData } from '~/store/copy-dialog/copy-dialog'; import { PickerIdProp } from '~/store/tree-picker/picker-id'; type CopyFormDialogProps = WithDialogProps & InjectedFormProps; export const DialogCopy = (props: CopyFormDialogProps & PickerIdProp) => ; const CopyDialogFields = memoize((pickerId: string) => () => );