Тёмный

I Wish I knew This About Typescript & React Sooner 

CoderOne
Подписаться 109 тыс.
Просмотров 39 тыс.
50% 1

Опубликовано:

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 42   
@eduardstefan6833
@eduardstefan6833 8 месяцев назад
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 8 месяцев назад
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 8 месяцев назад
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 8 месяцев назад
Thanks bro, the first example opened the door to my new world.
@fifty-plus
@fifty-plus 8 месяцев назад
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.
@code_react
@code_react 8 месяцев назад
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.
@kamill34
@kamill34 8 месяцев назад
great video. I think I will often come back to this video.
@florianmueller6453
@florianmueller6453 8 месяцев назад
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 8 месяцев назад
Thanks! Theme: Halcyon Font (VSCode Default): Menlo, Monaco, 'Courier New', monospace
@Beyram1501
@Beyram1501 8 месяцев назад
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 8 месяцев назад
const Component: FC No need explicitly declare children in your props.
@CottidaeSEA
@CottidaeSEA 8 месяцев назад
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.
@echobucket
@echobucket 8 месяцев назад
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.
@CottidaeSEA
@CottidaeSEA 8 месяцев назад
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.
@gubatenkov
@gubatenkov 7 месяцев назад
Very informative video ❤
@Deceris
@Deceris 7 месяцев назад
If you want to follow the SOLID principle, I feel like the 3rd example violate the OCP of SOLID
@midotechh
@midotechh 4 месяца назад
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?
@ononaokisama
@ononaokisama 8 месяцев назад
Why r u using interfaces and not type declarations
@edumorangobolcombr
@edumorangobolcombr 8 месяцев назад
Why not?
@Thassalocracy
@Thassalocracy 8 месяцев назад
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 8 месяцев назад
@@Thassalocracythat’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у 8 месяцев назад
@@Thassalocracy its just a lie
@CoderOne
@CoderOne 8 месяцев назад
Both works well. Types are more advanced compared to interfaces, but in our case, they both can do the job well.
@amined801
@amined801 8 месяцев назад
this is very nice, thank you
@vivianliu5011
@vivianliu5011 8 месяцев назад
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?
@KahyaHasan
@KahyaHasan 8 месяцев назад
You rock it. Thnx
@QinBinHua
@QinBinHua 8 месяцев назад
Hi CoderOne~ Great video! Would you mind share what app you used in the video to do the fancy drawing?
@김영찬-z5d
@김영찬-z5d 8 месяцев назад
thank you bro
@ecaribel
@ecaribel 8 месяцев назад
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 8 месяцев назад
The key attribute will never be passed to any component as that is reserved by React itself for rendering lists.
@ecaribel
@ecaribel 8 месяцев назад
@@CottidaeSEA That's I'm talking about. No reason to use ComponentProps, because it is extended from HTMLAttributes, but have key and ref
@yogyyconst
@yogyyconst 7 месяцев назад
do we still need to add React.FC for component??i was removed it all from my previous project.
@venicebeachsurfer
@venicebeachsurfer 8 месяцев назад
How do you do it with "type" INSTEAD of interface?
@andriisukhariev
@andriisukhariev 8 месяцев назад
how is the extension for vscode called which hides the tailwind code in editor? looks really clean - need this. thanks
@CoderOne
@CoderOne 8 месяцев назад
Tailwind fold
@andriisukhariev
@andriisukhariev 8 месяцев назад
thanks@@CoderOne
@EdwinMartin
@EdwinMartin 8 месяцев назад
Links are not in the description
@CoderOne
@CoderOne 8 месяцев назад
Added! Thanks for mentioning it.
@siamekanto
@siamekanto 6 месяцев назад
what vs code theme is that?
Далее
The Most Important Design Pattern in React
35:04
Просмотров 63 тыс.
@ItsMamix учу делать сигму😎
00:12
Просмотров 663 тыс.
ВЫЖИЛ В ДРЕВНЕМ ЕГИПТЕ!
13:09
Просмотров 264 тыс.
TypeScript Generics are EASY once you know this
22:21
Просмотров 138 тыс.
Can Cursor AI build my React Native App?
18:44
Просмотров 13 тыс.
as const: the most underrated TypeScript feature
5:38
Просмотров 120 тыс.
How Did I Not Know This TypeScript Trick Earlier??!
9:11