import { useState } from "react"; import { Controller, useForm } from "react-hook-form"; import { Disclosure } from "@headlessui/react"; // components import { FileFormatsDropdown, Input } from "components/custom-attributes"; // ui import { PrimaryButton, SecondaryButton } from "components/ui"; // icons import { ChevronDown } from "lucide-react"; // types import { ICustomAttribute } from "types"; // constants import { CUSTOM_ATTRIBUTES_LIST } from "constants/custom-attributes"; type Props = { attributeDetails: ICustomAttribute; handleDeleteAttribute: () => Promise; handleUpdateAttribute: (data: Partial) => Promise; }; const typeMetaData = CUSTOM_ATTRIBUTES_LIST.file; export const FileAttributeForm: React.FC = (props) => { const { attributeDetails, handleDeleteAttribute, handleUpdateAttribute } = props; const [isRemoving, setIsRemoving] = useState(false); const { control, formState: { isSubmitting }, handleSubmit, } = useForm({ defaultValues: typeMetaData.defaultFormValues }); const handleDelete = async () => { setIsRemoving(true); await handleDeleteAttribute().finally(() => setIsRemoving(false)); }; return ( {({ open }) => ( <>
{attributeDetails.display_name ?? typeMetaData.label}
( )} /> ( )} />
{isRemoving ? "Removing..." : "Remove"} {isSubmitting ? "Saving..." : "Save"}
)}
); };