Easy way to validate enums
Brand new to Arktype(migrating over from Zod for perf reasons), and have a question about about handling enums. We have a fair number of enums that we use in our validation, example with Zod might be something like:
Seems like a way to do this in ArkType might be something like:
I tried to create a helper function so I don't have to do Object.values thing everywhere:
But Arktype doesn't seem to like the return type on this. Any ideas as to how to easily handle this use case?
15 Replies
Welcome! To get something like that to infer precisely you'd have to write type-level logic to make sure the return type is a narrowed string.
Luckily, there is an easier way 😊
You can either use
type.enumerated(... values)
or an inline expression like punctuation: ["===", ".", "!"]
https://arktype.io/docs/expressions#enumeratedArkType Docs
Optimized runtime validation for TypeScript syntax
Hmm, okay gonna need a little more hand holding here 😅
Specifically when it comes to the enums values specifically.
This works, but I'm guessing this isn't really what you meant since I'm back to using Object.values, and also I feel like an inline expression would work a lot better here, as compared to using the type in a type
ArkType doesn't have TS enums as a fist class concept because the ecosystem is trending toward
--erasableSyntaxOnly
with no compiled TS features like that.
TBH I've never used them myself but essentially, just use whatever the easiest way is to get the narrowed list of values then pass that type.enumerated
.
Maybe Object.values
is that in which case you pretty much have the optimal solution, but if you have many enums like that you may want a wrapper to make it more convenient.
I know there have been a lot of utilities people have created over time, let me just double check what the most efficient thing to do would be for const enumYa, we've moved away from them as well in favor of an object with as const, but we have like a dozen left in the codebase that we haven't gotten around to cleaning up. Really appreciate your help!
Are you sure it was a const enum? It looks like TS won't even compile that without a reference

Ya seems like this working just fine for me

That isn't a const enum though hehe
Oh woops
My b
Wow didn't even realize that was a thing
Just went on autopilot lol
It's better you forget about it 😛
Beautiful
Thanks David!
So just reuse
valueOf
any time you want to reference an enum
No problem!Excited to see my TS server go brrrr again soon 😉
Just wait until tomorrow, I hear there are some big announcements coming about that 🤫