How to set a custom message with object type?
Hi guys, I'm new to Arktype, I'm switching from Zod to Arktype with this code:
So far, I switched to this in Arktype:
However, I'm not sure how to set a custom message. All of the documents refer to only one variable. https://arktype.io/docs/configuration#errors. Is there any way to set the error message for best practices? ❤️
ArkType Docs
TypeScript's 1:1 validator, optimized from editor to runtime
27 Replies
What exactly do you need that the linked docs don't provide?
I guess you want custom error messages per key. I think you can do that by just wrapping the values in another
type()
call.
So something likeThanks for your explanation. I have managed to make it work now. Also, can the value message be separated with constraints? For example, if the value = 2, I would have a different message, and if the value >= 50, it would be another message.
You can look at the .configure examples
ctx.value has the value iirc
Err actually it might be a separate parameter. I.e.
(ctx, value) => ...
. I honestly can't rememberHmmm I have tried to use
ctx.actual
but it cannot be used with operations like > or <Well, I guess because it's a string? So you need to use
>
/<
on ctx.actual.length
ctx.actual
seems vaguely familiar as the correct thing hereI have tried this one, it's only check the first condition, not sure if it's best practice:
Out of interest, what's the default error message without any of this config? I think it should be pretty much the same
ArkType has very good default error messages
And using
expected
is better than using message
because that's the API used internally (then your full error message will be something like {key} must be {expected} (was {actual})
iirc)
It's only if you really don't want that error message format you should use message
(but keep in mind the other errors will still use that format)
Also I guess you might have to handle when the ctx.actual
isn't a string? Since that would also give an error. Not entirely sure though. I guess if ctx.actual
is typed as a string then it's probably fine without
I'm thinking the : ""
shouldn't be necessary because in theory this will only be called when there's an error. So you can do if isTooShort ? tooShortMessage: tooLongMessage
(you don't need the extra if statement for checking if it's too long, since that's the only remaining possibility)
(If it wasn't clear, I'm just guessing this stuff, because I honestly just can't remember)Okay, I understand now, currently the error looks like this. I just want to change the "companyId must be..." to "Company ID must be...". Arktype is taking the variable name that I define and showing it on the UI.

Ah right yeah, I see
I wonder if there's maybe a way to change just the "companyId" bit, but I'm not aware of one
What did you end up going with?
I haven't tried anything yet 😂 I don't know what the solution can be used here haha
Hi @TizzySaurus , so is there any solution for this one?
The narrow thing should work
If you want it to check all keys then I think you'd need a top level narrow that returns an array of the
ctx.mustBe
I'll write something up when I'm at my PC and can test things (will probably be ~10+ hours since I have a busy day)Sure, take your time, no need to rush. I appreciate @TizzySaurus ❤️
Try this:
thoughts?

I guess you want it without the key name
Which, for the record, is what changing
problem
to message
does:
The
[x, "@", y]
is just the inline version of type(x).configure(y)
btw, if that wasn't clearAnd if you want to see the errors separately so that you can show them on their respective input boxes, here's how you can do that:

Hopefully that helps @teddythinh :)
Thanks guys. Let me try it and get back to you. ❤️
Were you able to try it out?
Hi @ssalbdivad, I tried your solution here:
but it's still end up with the same thing.

Hi @TizzySaurus, I manage to remove the key name by changing
problem
to message
with @ssalbdivad's solution here:


Thank you guys @TizzySaurus @ssalbdivad for helping me ❤️
Good call, my bad there!