// @ts-nocheck import { Intent } from '@blueprintjs/core'; import { useImportFileMapping } from '@/hooks/query/import'; import { Form, Formik, FormikHelpers } from 'formik'; import { useImportFileContext } from './ImportFileProvider'; import { AppToaster } from '@/components'; import { ImportFileMappingFormProps } from './_types'; import { transformValueToReq, useImportFileMappingInitialValues, } from './_utils'; export function ImportFileMappingForm({ children, }: ImportFileMappingFormProps) { const { mutateAsync: submitImportFileMapping } = useImportFileMapping(); const { importId, setStep } = useImportFileContext(); const initialValues = useImportFileMappingInitialValues(); const handleSubmit = ( values: ImportFileMappingFormValues, { setSubmitting }: FormikHelpers, ) => { setSubmitting(true); const _values = transformValueToReq(values); submitImportFileMapping([importId, _values]) .then(() => { setSubmitting(false); setStep(2); }) .catch(({ response: { data } }) => { if (data.errors.find((e) => e.type === 'DUPLICATED_FROM_MAP_ATTR')) { AppToaster.show({ message: 'Selected the same sheet columns to multiple fields.', intent: Intent.DANGER, }); } setSubmitting(false); }); }; return (
{children}
); }