I Wish I knew This About Typescript & React Sooner

  Рет қаралды 39,479

CoderOne

CoderOne

Күн бұрын

Пікірлер: 42
@eduardstefan6833
@eduardstefan6833 10 ай бұрын
5:38 I'm pretty sure you don't have to pass the type to the carousel. So the it can be {item.id} item will still be infered correctly here from the type you're passing in the items and renderItem will still have that type set correctly.
@CottidaeSEA
@CottidaeSEA 10 ай бұрын
Would make a lot more sense to just let the Carousel receive children and just render them along with the buttons to be honest. That way you don't even have to care about what types you're working with as the Carousel never actually interacts with them, it's only responsible for placing them where they belong. PropsWithChildren is enough. Something noteworthy about that type is that the children are actually optional; this is intentional, but could be a bit counterintuitive for those unaware. If the children should be required, a custom type should be used for that. type PropsWithRequiredChildren = PropsWithChildren & { children: ReactNode }; Something like that'd probably work quite well, but I haven't tested it and I usually don't even use TypeScript, so my skills are a bit rusty. I use JSDocs for the most part as we don't use TypeScript at work, does the job just as well most of the time so I rarely miss TypeScript.
@airixxxx
@airixxxx 10 ай бұрын
The generic component example was good but I find using compound components a much pleasant approach, you don't have to worry about passing types and the components end up being completely modular because you can pass whatever you want.
@jiaxiyang4661
@jiaxiyang4661 10 ай бұрын
Thanks bro, the first example opened the door to my new world.
@kamill34
@kamill34 10 ай бұрын
great video. I think I will often come back to this video.
@mhmddorgham
@mhmddorgham 7 ай бұрын
Thanks brother! I want to ask what is the name of theme you are using here? and what's the extension you used to get a pen to highlight under code snippets?
@code_react
@code_react 10 ай бұрын
Wow what an explanation along with easy examples. After watching this video, I am thinking like I know nothing. But now I will not make those mistakes again. Thanks for this awesome video.
@florianmueller6453
@florianmueller6453 10 ай бұрын
Hi @CoderOne, I really love your content. One off topic: could you maybe share your theme and font setup? I really like the style of your IDE. That'd be awesome!
@CoderOne
@CoderOne 10 ай бұрын
Thanks! Theme: Halcyon Font (VSCode Default): Menlo, Monaco, 'Courier New', monospace
@gubatenkov
@gubatenkov 10 ай бұрын
Very informative video ❤
@fifty-plus
@fifty-plus 10 ай бұрын
Render props are only adding indirection in your carousel examples. You really only need to force render props if you need access within the component to those props and there's usually a better design pattern available. In this case you could have just rendered children and had the carousel dictate the container, and its styles, within the carousel.
@vivianliu5011
@vivianliu5011 10 ай бұрын
Thanks for the great content, I have a question about the last event type one. I can't see the difference of have the type beside the event or after the function name. Can you let me know what is the benefits to have the type after the function name?
@yogyyconst
@yogyyconst 10 ай бұрын
do we still need to add React.FC for component??i was removed it all from my previous project.
@siamekanto
@siamekanto 9 ай бұрын
what vs code theme is that?
@venicebeachsurfer
@venicebeachsurfer 10 ай бұрын
How do you do it with "type" INSTEAD of interface?
@Beyram1501
@Beyram1501 10 ай бұрын
Instead of a generic component, you can have a component which interface accepts a generic thus you can pass that generic to the underlying props, a bit better syntax IMO
@AndriusLau
@AndriusLau 10 ай бұрын
const Component: FC No need explicitly declare children in your props.
@CottidaeSEA
@CottidaeSEA 10 ай бұрын
children is optional in PropsWithChildren, so that can be a big gotcha if people aren't aware of it, as you'll receive no warnings about it. So explicitly declare the children as required if necessary.
@andriisukhariev
@andriisukhariev 10 ай бұрын
how is the extension for vscode called which hides the tailwind code in editor? looks really clean - need this. thanks
@CoderOne
@CoderOne 10 ай бұрын
Tailwind fold
@andriisukhariev
@andriisukhariev 10 ай бұрын
thanks@@CoderOne
@ecaribel
@ecaribel 10 ай бұрын
Confused about ComponentProps. If you create a div with a className prop, click on it with "CMD" button you'll be sent to interface with HTMLAttributes. I've checked what is ComponentProps and it mostly the same, but with ref and key props. But key will not be passed into child component. And the right way to use ref is wrap your component with "forwardRef". So finally.. while TS shows HTMLAttributes on div props, isn't it better to use it?
@CottidaeSEA
@CottidaeSEA 10 ай бұрын
The key attribute will never be passed to any component as that is reserved by React itself for rendering lists.
@ecaribel
@ecaribel 10 ай бұрын
@@CottidaeSEA That's I'm talking about. No reason to use ComponentProps, because it is extended from HTMLAttributes, but have key and ref
@CottidaeSEA
@CottidaeSEA 10 ай бұрын
A lot of these things can be used with JSDoc as well, not just TypeScript. Generics is not possible, only kind of, but pretty much everything else works somewhat.
@QinBinHua
@QinBinHua 10 ай бұрын
Hi CoderOne~ Great video! Would you mind share what app you used in the video to do the fancy drawing?
@ononaokisama
@ononaokisama 10 ай бұрын
Why r u using interfaces and not type declarations
@edumorango
@edumorango 10 ай бұрын
Why not?
@BeeBeeEight
@BeeBeeEight 10 ай бұрын
The type vs interface debate has already been resolved by Matt Pocock of Total TypeScript. He's already proved in a video that interfaces resolve during compile time much faster than types, which is a big argument in favor of using interfaces unless you really need the features that types provide, such as discriminated unions, utility types, etc.
@innomin8251
@innomin8251 10 ай бұрын
@@BeeBeeEightthat’s not what the argument has been about. Types can do everything that interfaces can, and then a lot more. Interfaces are mutable, which can be very bad depending on what you’re doing.
@АлександрИгнатьев-р2у
@АлександрИгнатьев-р2у 10 ай бұрын
@@BeeBeeEight its just a lie
@CoderOne
@CoderOne 10 ай бұрын
Both works well. Types are more advanced compared to interfaces, but in our case, they both can do the job well.
@echobucket
@echobucket 10 ай бұрын
You can definitely tell that React was invented in a world where TypeScript didn't exist, and so much of the typing for it feels awkward and bolted on.
@EdwinMartin
@EdwinMartin 10 ай бұрын
Links are not in the description
@CoderOne
@CoderOne 10 ай бұрын
Added! Thanks for mentioning it.
@Deceris
@Deceris 9 ай бұрын
If you want to follow the SOLID principle, I feel like the 3rd example violate the OCP of SOLID
@KahyaHasan
@KahyaHasan 10 ай бұрын
You rock it. Thnx
@amined801
@amined801 10 ай бұрын
this is very nice, thank you
@김영찬-z5d
@김영찬-z5d 10 ай бұрын
thank you bro
TypeScript Generics are EASY once you know this
22:21
ByteGrad
Рет қаралды 145 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
You Don't Need Try/Catch Anymore With This New Operator
16:08
Refactoring a React component - Design Patterns
15:19
Cosden Solutions
Рет қаралды 100 М.
Tailwind CSS Plugins I Wish I knew Sooner
14:38
CoderOne
Рет қаралды 9 М.
8 TypeScript Tips To Expand Your Mind (and improve your code)
10:54
How Many HTTP Requests can a $6 VPS Handle?
9:38
CoderOne
Рет қаралды 27 М.
How Did I Not Know This TypeScript Trick Earlier??!
9:11
Josh tried coding
Рет қаралды 218 М.
This Is One Of My Favorite TypeScript Features
5:22
Web Dev Simplified
Рет қаралды 141 М.
This is the Only Right Way to Write React clean-code - SOLID
18:23