I Wish I knew This About Typescript & React Sooner

Поділитися
Вставка
  • Опубліковано 9 чер 2024
  • If you are using React with Typescript, this video will help find the hidden React Typescript utility types that will help right better and cleaner code.
    🎉Our Newsletter is live! Join thousands of other developers
    islemmaboud.com/join-newsletter
    🐦 Follow me on Twitter: / ipenywis
    ⭐ Timestamps ⭐
    00:00 Intro
    00:19 (01) Component Props
    03:14 (02) Generic Components
    08:31 (03) Type Narrowing
    10:20 (04) Event Handlers
    12:30 (05) Resources
    Links mentioned in the video:
    React Typescript cheatsheet: react-typescript-cheatsheet.n...
    utility-types: github.com/piotrwitek/utility...
    ts-toolbelt: github.com/millsp/ts-toolbelt
    Utilities: github.com/typescript-cheatsh...
    -- Special Links
    ✨ Join Figma for Free and start designing now!
    psxid.figma.com/69wr7zzb1mxm
    👉 ✨ Join Figma For Professionals And Start Designing with your Team ✨
    psxid.figma.com/ucwkx28d18fo-...
    -- Special Links
    ✨ Join Figma for Free and start designing now!
    psxid.figma.com/69wr7zzb1mxm
    👉 ✨ Join Figma For Professionals And Start Designing with your Team ✨
    psxid.figma.com/ucwkx28d18fo-...
    -- Watch More Videos
    🧭 Build Login/Register API Server w/ Authentication | JWT Express AUTH using Passport.JS and Sequelize
    • Build Login/Register A...
    🧭 Turn Design into React Code | From prototype to Full website in no time
    • Turn Design into React...
    🧭 Watch Tutorial on Designing the website on Figma
    • I Design a onecolor We...
    🧭 Watch Create a Modern React Login/Register Form with smooth Animations
    • Create a Modern React ...
    🧭 Debug React Apps Like a Pro | Master Debugging from Zero to Hero with Chrome DevTools
    • Debug React Apps Like ...
    🧭 Master React Like Pro w/ Redux, Typescript, and GraphQL | Beginner to Advanced in React
    • Master React Like Pro ...
    🧭 Learn Redux For Beginners | React Redux from Zero To Hero to build a real-world app
    • Debug React Apps Like ...
    🧭 Introduction to GraphQL with Apollo and React
    • Introduction to GraphQ...
    🐦 Follow me on Twitter: / ipenywis
    💻 Github Profile: github.com/ipenywis
    Made with 💗 by Coderone

КОМЕНТАРІ • 42

  • @airixxxx
    @airixxxx 4 місяці тому +11

    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.

  • @eduardstefan6833
    @eduardstefan6833 4 місяці тому +18

    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 4 місяці тому

      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.

  • @jiaxiyang4661
    @jiaxiyang4661 4 місяці тому +2

    Thanks bro, the first example opened the door to my new world.

  • @kamill34
    @kamill34 4 місяці тому

    great video. I think I will often come back to this video.

  • @code_react
    @code_react 4 місяці тому

    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.

  • @amined801
    @amined801 4 місяці тому

    this is very nice, thank you

  • @KahyaHasan
    @KahyaHasan 4 місяці тому

    You rock it. Thnx

  • @user-dn8fo5in5i
    @user-dn8fo5in5i 4 місяці тому

    thank you bro

  • @QinBinHua
    @QinBinHua 4 місяці тому

    Hi CoderOne~ Great video! Would you mind share what app you used in the video to do the fancy drawing?

  • @gubatenkov
    @gubatenkov 3 місяці тому

    Very informative video ❤

  • @vivianliu5011
    @vivianliu5011 4 місяці тому

    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?

  • @florianmueller6453
    @florianmueller6453 4 місяці тому +1

    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  4 місяці тому

      Thanks!
      Theme: Halcyon
      Font (VSCode Default): Menlo, Monaco, 'Courier New', monospace

  • @midotechh
    @midotechh 17 днів тому

    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?

  • @fifty-plus
    @fifty-plus 4 місяці тому +1

    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.

  • @yogyyconst
    @yogyyconst 3 місяці тому

    do we still need to add React.FC for component??i was removed it all from my previous project.

  • @andriisukhariev
    @andriisukhariev 4 місяці тому

    how is the extension for vscode called which hides the tailwind code in editor? looks really clean - need this. thanks

  • @AndriusLau
    @AndriusLau 4 місяці тому +1

    const Component: FC No need explicitly declare children in your props.

    • @CottidaeSEA
      @CottidaeSEA 4 місяці тому

      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.

  • @Beyram1501
    @Beyram1501 4 місяці тому

    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

  • @venicebeachsurfer
    @venicebeachsurfer 4 місяці тому

    How do you do it with "type" INSTEAD of interface?

  • @siamekanto
    @siamekanto 2 місяці тому

    what vs code theme is that?

  • @ecaribel
    @ecaribel 4 місяці тому

    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 4 місяці тому

      The key attribute will never be passed to any component as that is reserved by React itself for rendering lists.

    • @ecaribel
      @ecaribel 4 місяці тому

      @@CottidaeSEA That's I'm talking about. No reason to use ComponentProps, because it is extended from HTMLAttributes, but have key and ref

  • @Deceris
    @Deceris 3 місяці тому

    If you want to follow the SOLID principle, I feel like the 3rd example violate the OCP of SOLID

  • @EdwinMartin
    @EdwinMartin 4 місяці тому

    Links are not in the description

    • @CoderOne
      @CoderOne  4 місяці тому +1

      Added! Thanks for mentioning it.

  • @echobucket
    @echobucket 4 місяці тому +1

    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 4 місяці тому

    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.

  • @ononaokisama
    @ononaokisama 4 місяці тому +14

    Why r u using interfaces and not type declarations

    • @edumorangobolcombr
      @edumorangobolcombr 4 місяці тому +1

      Why not?

    • @Thassalocracy
      @Thassalocracy 4 місяці тому +16

      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 4 місяці тому +2

      @@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.

    • @user-lt9sh4qx3u
      @user-lt9sh4qx3u 4 місяці тому

      @@Thassalocracy its just a lie

    • @CoderOne
      @CoderOne  4 місяці тому +2

      Both works well. Types are more advanced compared to interfaces, but in our case, they both can do the job well.