💥 Angular TYPED Forms: Are You Using Them Correctly?

Поділитися
Вставка
  • Опубліковано 8 січ 2024
  • Check out the Angular Forms In Depth course for learning more about beginner to advanced Angular Forms topics - angular-university.io/my-courses
    Free content at the Angular University:
    - 20% of our lessons are free, no login required to watch the lessons. The free lessons are the ones with the P (Pro) - angular-university.io
    - Watch the free Angular For Beginners Course - angular-university.io/course/...
    Twitter - / angularuniv
    Facebook - / angular.university
    UA-cam - / @angularuniversity
    Instagram - / angular.university
    LinkedIn - / angular-university
    TikTok - / angularuniversity
    Threads - www.threads.net/@angular.univ...

КОМЕНТАРІ • 29

  • @AngularUniversity
    @AngularUniversity  6 місяців тому +1

    This is my first video made specifically for UA-cam, please enjoy. 🙂 A full course on Angular Forms is available here - angular-university.io

  • @happyhappy-jl6yq
    @happyhappy-jl6yq 6 місяців тому +1

    Awesome content.

  • @nathanf6526
    @nathanf6526 6 місяців тому +2

    Regarding not explictly using a generic argument, how about if you use a FormControl which is a complex type, and you initialise it with null? The form control's type with be inferred as 'unknown'
    P.s. thanks for the video.

    • @AngularUniversity
      @AngularUniversity  6 місяців тому +2

      This is true, but for most forms I think it's OK to initialize strings with the empty string, numbers with 0, etc. It greatly simplifies the form declaration. For most practical cases, there is no downside. 👍

  • @antondoit
    @antondoit 5 місяців тому

    As always great content

  • @traversethedom
    @traversethedom 6 місяців тому +1

    Can you confirm if your courses on RxJS and TypeScript have been recently updated?

  • @hatsvids
    @hatsvids 5 місяців тому

    Thank you for the excellent video. I was just left with a question regarding FormArray.
    Assuming the suggested "best" way to handle typed forms, how should I deal with FormArrays?
    In a practical example, where in a form there is a FormGroup with the control for the name and a FormArray for a FormGroup of Addresses (with controls for street, city, zip code), how should I declare the FormArray, assuming that initially there are no entries in the FormArray, as the user has not added/pushed any address yet?

    • @AngularUniversity
      @AngularUniversity  5 місяців тому +2

      If youdon't have any initial values, then that could be a good example of where using an explicit type would work great. My point in the video was, most of the times you can simplify your forms code by removing the explicit types, as long as you have some initial values for the fields.👍

    • @hatsvids
      @hatsvids 5 місяців тому

      ​@@AngularUniversity So, in this example the FormArray would be a good case of the exception to the "rule". Thank you for the clarification.

  • @sivuyilemagutywa5286
    @sivuyilemagutywa5286 6 місяців тому +1

    Generic is great if you have a complex interface in my opinion

    • @AngularUniversity
      @AngularUniversity  6 місяців тому +1

      For a more complex form, the type will still be inferred automatically, so not using the generics directly and relying on type inference is actually less work, and it's guaranteed to always be correct. 😊 you can always use generics is needed by some reason, but normally it shouldn't be necessary. In Typescript for many generic-based APIs like the Forms module, many times the generic parameters don't need to be called explicitly, everything happens via type inference. 👍

  • @borisjenicek6059
    @borisjenicek6059 6 місяців тому +1

    What if the form is in the child component and you receive data through input, how to declare the form outside the lifecycle method in this way?

    • @AngularUniversity
      @AngularUniversity  6 місяців тому

      the form is best declared as a member variable, to get the full type safety benefits. Check out this video for more details - ua-cam.com/video/it2BZoIvBPc/v-deo.html

  • @msnathan2321
    @msnathan2321 6 місяців тому

    well devilvered

    • @AngularUniversity
      @AngularUniversity  6 місяців тому

      Thank you, I'm glad you enjoyed it. 👍 More videos on the way (including shorts), stay tuned. 😊

  • @paulh6933
    @paulh6933 6 місяців тому

    does ur opinion change if ur form has 10+ fields?

    • @AngularUniversity
      @AngularUniversity  6 місяців тому +2

      For a larger form, this is even more true, we could really use that extra type safety to make our code safer. I just used a small example here to keep it simple for the video. 👍

  • @RaviMittal84
    @RaviMittal84 6 місяців тому +1

    What about FormArray?

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

    Hi, Vasco. Having the form built *outside* of a function (like ngOnInit), looks ugly and hopefully in a future version this will change.

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

      It's unusual in Angular code indeed and an exception. soon the Angular team will start their work on signal forms, so forms are due for an overhaul 😉

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

    Is it not feasible to use real project , or m I got something wrong