How to use reject correctly?
Hi I want to validate input file in a form. It can be either a single file or an array of files, if it is a single file then validate its maximum size, if it is an array of files then validate their total size.
I want a custom message, actual.
With this code I get an exception.
12 Replies
arktype v2.1.10
ahh,
expected
required)
with this code it works
but console.dir(data.flatProblemsByPath)
shows me
without narrow errors looks different
(I changed the type on purpose to get the error)
That is, I want to get an error if it is not a file or an array of files, and also get an error on the size of the filesYou should remove
message
from your ctx.reject
btw. message
in general shouldn't be used unless absolutely necessary.
Something likewill output an error along the lines of must be a total file size of less than 4MB (was 5.32MB)
I wasn't able to repro that crash, could you paste the full code?
If what you mean is you want errors for individual files even is more than 6, you can add this to the array case:
If shallow validation fails (E.g. array length), nested validation doesn't run
I did this
in server action i have this
when i upload file with 5MB console.dir(data.flatProblemsByPath) prints
ps I removed some fields from the schema, so the email field is here)
If you can upload a minimal repro somewhere I will look into the crash which shouldn't happen
The code above works without exception, only the error texts are not what I expect and there is no custom actual.
But if I remove expected from reject in the code above, I get an exception. I will add min repo later
Yeah it should never crash unless you're passing in something that isn't allowed by the type signature
Okay. Why is the actual not the one I specified in reject, but the default one? Am I misunderstanding how this is supposed to work?
Have you read these docs?
https://arktype.io/docs/configuration#errors
But I specified actual in reject.
Oh it's because it's a union error so it can't use the individual actual for that specific error
That definitely could be improved if you want to create an issue for that.
As a workaround try this:
This way it won't treat the second part of the validation as a union
yeah, cool, it works as well as I expected)