
Introduction
While working on a real-life project, I came across a particular TypeScript implementation that was functional but lacked f...
Some comments have been hidden by the post's author - find out more
For further actions, you may consider blocking this person and/or reporting abuse
There are bunch of bad codes there too. For example you can just use Record instead of
You should also separate links according to your article
This is better. Thanks!
good luck mate. Dont stop writing
Plus you can use interface for objects instead of types
I used type because it is immutable. Unlike interface, type cannot be extended later in the code and I wanted to ensure that
ReactionMap
structure remains same and does not change somewhere else in the code. Thanks for the commentIt's not actually accurate I'm afraid do a little research
What a horrible comment, what is wrong with you...if you don't have anything nice to say or constructive feedback maybe don't say anything
Hey. Care to explain why we should use interface instead of type?
I said you CAN not you SHOULD
But wait, at some point, we need to give the user a list of available reactions, right? So we already have an array containing them. We should use that to construct our map:
Hi, Alex. Yes, that is possible, if I fetch them from the database for example. But what when not? For case when I get the reactions list from the user?
For example: If I used Caido tool (security auditing toolkit) and append some non existing reaction, in your case, it would be added to the
ReactionMap
without check. That would require manual checking orAllowedReactions
.In my case the
AllowedReactions
are the predefined reactions available onDev.to
, and they are specified in theFinalResponse
type. The list of reactions is passed to the user through the reactions property.This is, I would say, a more advanced project with a lot of data parsing and calculation processes.
In this project, the reactions received on certain
dev.to
blog post are mapped and then the structure like this is created:If you are interested you can check the code in the repository.
You can also try it out here: dev-to-rater.xyz
If you add another reaction to the array of existing reactions, it is obviously an existing reaction itself. Saying the types are more true than your data is a fallacy.
A single source of truth reduces the chances of errors and saves time if you have to change something.
You’re assuming we are getting data from a database, no? What if we are hardcoding the reactions into the app and want to use it in multiple locations?
I'm not assuming anyting. At some point, you want to show the reactions in your component, so you will have that array, regardless of how it came to be.
Good post, thanks for sharing! 😃👍🏻
You're welcome! If you want to view it in a real action, feel free to do it in the repository.
Specifically, the files are:
Thanks for reading :)
Nice
Glad you liked it
It's absolutely correct, and it's very easy to see which properties are in this, manageable
Gonna use this
Thanks for feedback. Glad it was useful
Cool! I was doing this without even acknowledging it. It's nice to give it a name (Map Pattern) so it feels solid. Definetely something everyone should know and apply.
I usually kind of skip the "control" part and just use
Record<string, Whatever>
and forget about it. I don't even use the extra typeReactionMap
, I just straight goAlthough yeah, for bigger projects the control should be included without a doubt.
Nice post my man.
Thanks for the comment and feedback man. Yes, it sounds solid. This is a problem that many people get wrong because they don't think about extensibility.
Great one!
Thank you!
Good post very helpful and thanks to all the people in the comments that are suggesting and improving it
Yes, that is key. To help each other
Thanks, this a great tip!
You're welcome!
You left some room for improvements:
How about
Further improvement: Use
enum
instead oftype
for theAllowedReactions
— which I'd rather call something along the lines ofReactionKind
instead. This will improve the developer experience, e.g. for searching references to a specific kind. Btw, always use string enums.Also, side note: I would add another reason why
Record<string, X>
is generally something you'd want to avoid. That type is tricky as it behaves asPartial<Record<string, X>>
for definition (not everystring
need be defined), butRecord<string, X>
for access. This, in turn, results in unsafe access operations that may crash at runtime: Not every validstring
is a key that yields a valueX
.In general, most
Record
types that ain'tRecord<enum, X>
should bePartial<Record<...>>
instead.You might even want to define it as a helper type
for convenience.
Why not just define a common type that include all reactions and use it in both places