Bo
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
yeah, cool, it works as well as I expected)
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
But I specified actual in reject.
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
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?
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
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
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
ps I removed some fields from the schema, so the email field is here)
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
I did this
in server action i have this
when i upload file with 5MB console.dir(data.flatProblemsByPath) prints
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
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 files
19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
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)19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
ahh,
expected
required)19 replies
Aarktype
•Created by Bo on 3/27/2025 in #questions
How to use reject correctly?
arktype v2.1.10
19 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
Yes, I think you're right, there is no one-size-fits-all option) I'm just speculating based on other examples
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
Yes I realize that, but it can be necessary and valid, as an example in laravel https://laravel.com/docs/12.x/validation#validation-error-response-format.
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
looks cool!. Can the second method be added just in case, like flatMessageByPath?
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
cool, thank you)
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
i can use errors but
Property 'errors' does not exist on type 'ArkError<ArkErrorCode>'
is that what you're talking about?23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
I just gave an example above, it is not about the error text itself, but about the format.
I need write this code to format errors like in zod to get this
{
email: [ 'email must be an email address (was "")' ],
message: [ 'message must be non-empty' ],
name: [ 'name must be non-empty' ]
}
if (data instanceof type.errors) {
const formattedErrors: Record<string, string[]> = {};
for (const problem of data.issues) {
const field = problem.path.stringify();
if (!formattedErrors[field]) {
formattedErrors[field] = [];
}
formattedErrors[field].push(problem.message);
}
console.dir(formattedErrors)
}
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
I need to show validation errors under each input. I'm just saying that I need to go through the object, pull out the error text and compose it into an array. Zod has a built-in method for this. I think this is a common use case, no?
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
Yeah, I've seen it and I've watched it. But it's not quite the same. I often need this format for api response
errors: {
email: ['invalid email, 'spam mailbox']
}
23 replies
Aarktype
•Created by Bo on 3/18/2025 in #questions
Easy format errors like in Zod?
Yeah, that's what I mean.)
23 replies