fix: address validation issue in schema

This commit is contained in:
Dipin Jagadish 2023-11-01 18:36:39 +00:00
parent 9cf8a584a0
commit 09d6bc8169

View File

@ -38,7 +38,9 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => {
return !['collection', 'folder'].includes(trimmedValue); return !['collection', 'folder'].includes(trimmedValue);
} }
}), }),
curlCommand: Yup.string() curlCommand: Yup.string().when('requestType', {
is: (requestType) => requestType === 'from-curl',
then: Yup.string()
.min(1, 'must be at least 1 character') .min(1, 'must be at least 1 character')
.required('curlCommand is required') .required('curlCommand is required')
.test({ .test({
@ -46,6 +48,7 @@ const NewRequest = ({ collection, item, isEphemeral, onClose }) => {
message: `Invalid cURL Command`, message: `Invalid cURL Command`,
test: (value) => getRequestFromCurlCommand(value) !== null test: (value) => getRequestFromCurlCommand(value) !== null
}) })
})
}), }),
onSubmit: (values) => { onSubmit: (values) => {
if (isEphemeral) { if (isEphemeral) {