|
|
|
|
|
by inbx0
1560 days ago
|
|
Offtopic but I have to ask now that this came up, why do people even use enums instead of string literal type unions? The latter just seems so much simpler and more readable to me. You get the same type safety, pretty much the same or better performance, autocomplete works fine etc. One reason I've heard is that enums allow you to do rename symbol refactoring in all use sites, but like what
How often do you need to do that? Once in a lifetime? Twice? And with string unions you can ofcourse also just rename it, TS will tell all the places that need fixing, and it'll take couple hours to go though 1000+ usages of it. |
|
Let’s say I have an Icon component with props like:
And then let’s say I have a Button component but there’s no small size: If I use string unions I can happy assign one size to another: If I used enums (ButtonSize and IconSize) then that would not be possible and TypeScript would complain.So the question is: Is that a bad thing?
And the answer depends on your domain. If you have reason to believe that in your domain people are likely to map between two incompatible namespaces, then enums could help. And string unions could let through some bugs.
In my experience that’s never been a real risk so I prefer string unions.
The other thing enums can get you is you can rename the variable without changing the values. So if your strings are persisted to the database and you don’t want to change them, but you do want them to have a slightly new meaning, you could rename the enum key, and get the new name in code, while keeping the old string value.