Angular Code Review Best Practices - Refactoring From Junior Level to Senior

Поділитися
Вставка
  • Опубліковано 29 вер 2024

КОМЕНТАРІ • 56

  • @MonsterlessonsAcademy
    @MonsterlessonsAcademy  27 днів тому

    WATCH NEXT: Angular Interview Questions and Answers - Dominate Your Next Interview - ua-cam.com/video/5A_YKlVWMPo/v-deo.htmlsi=2DCn7yspEAAJ2H6l

  • @LunarWaffle
    @LunarWaffle 7 місяців тому +8

    Absolutely amazing man , been following since 2021 , still the same humble teacher!

  • @sergeypodgaysky8551
    @sergeypodgaysky8551 5 місяців тому +1

    Why do you add an 'interface' postfix in interface? You don't add a 'number' postfix when creating a variable with type number for example, so what's the reason to do this with interfaces and types?

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

      It is easier to separate a class from the interface or type in a big project. What's the reason to name a component in Angular FooComponent ?

  • @Dajuhf
    @Dajuhf 7 місяців тому +1

    At GoodTableComponent, won't be better to set the issueSig with a @Input() set instead of doing it inside the OnInit?
    @Input({ required: true }) set issues(issues: IssueInterface[]) {
    this.issuesSig.set(issues);
    }

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому +2

      Yeap or we could use input signal. I always forget about new Angular features while coding.

  • @LuizFMPaiva
    @LuizFMPaiva 7 місяців тому +3

    amazing!
    U r awesome!
    I always learn with u. Thank you

  • @robsonxavier5366
    @robsonxavier5366 7 місяців тому +1

    Hello,
    When you create a ngclass to control if is selected or not (minute 12), would be better to use ngclass (something like 'issue.id.isSelected: selected') and create a css class to change color?
    Great video as always, keep the good work.
    Thanks

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому +1

      It's more a matter of taste. This is just 1 line of code. If we had more styles than sure.

  • @NiGhTm4r389
    @NiGhTm4r389 7 місяців тому +1

    You can compute signals from inputs if you provide them as input signals. This is quite the new feature though, is that the reason you're not covering it here?

    • @NathanRLaing
      @NathanRLaing 7 місяців тому

      Was also wondering this

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      I didn't use them in the video as they are in developer preview. Sure you can do that.

    • @NiGhTm4r389
      @NiGhTm4r389 7 місяців тому

      @@MonsterlessonsAcademy Ah I see. We already use them heavily in our project and they work flawlessly :)

  • @luischavez190
    @luischavez190 7 місяців тому +2

    This is pure gold!! Thanks

  • @Infa35
    @Infa35 Місяць тому

    What I would also do is place open and resolved statuses to enum

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

    So junior code turned into "senior junior" one. Now need to call middle guy to upgrade this.

  • @changcnchang8174
    @changcnchang8174 7 місяців тому +1

    This is very helpful thank you for sharing!

  • @olehandershevchuk3491
    @olehandershevchuk3491 7 місяців тому

    Why you do not create an IssueClass that implements the IssueInterface and extends it with a "selected" property? Then, in the view, simply change item.selected to true without requiring an additional array for selected elements. To obtain the count of selected elements, you can filter the array of IssueClass elements by the selected field and count the results.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      I don't like to mix view logic and entity. As we don't get isSelected through input we must say that we got IssueInterface and not extended version. Then anyway you need to transform your data type to data type with isSelected.

  • @MrKOHKyPEHT
    @MrKOHKyPEHT 7 місяців тому

    If our version of angular less than 16 we can initialize input array like empty array in order to avoid non-null assertion

  • @alaskaricode989
    @alaskaricode989 7 місяців тому

    Can you Videos zu best structure folder files for big project

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      I covered the folder structure for React. It is the same for any framework
      ua-cam.com/video/IFTqfO_evlc/v-deo.htmlsi=1-QaWl1AdMq1fjts

  • @ukasza.7836
    @ukasza.7836 7 місяців тому

    When I see suffix *Interface in an interface name I'm thinking that it is a beginner code

  • @lucasgiunta8874
    @lucasgiunta8874 7 місяців тому

    Good. But you are still writing angular code with a react background. You refactor can be easly refactor in an half of code by an angular senior developer who realy knows the angular api.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      What do you mean?

    • @lucasgiunta8874
      @lucasgiunta8874 7 місяців тому

      @MonsterlessonsAcademy use a set input to set a signal to cover the ngOnChange. Try to use only computed signal as much as possible to leep one sources of data. Use the formControl api instead of your change event from your checkbox. Utilise the power of rxjs to handle your event logic and convert it to signal in your constructor if you need a signal output (to display the result in your view in a prevision of signal baswd component). Don't use ngClass if you only have one condition. [Class.myClass]="condition" is a nicer way to handle it. Don't use *ngFor/*ngIf which is the "old" syntaxes. If you are in 17.* you should have access to the new template syntaxes.

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

    Signals are so awesome. Thanks for the this informative video, will definitely be using signals more often now.

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

      Glad it was helpful!

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

      @@MonsterlessonsAcademy Just one thing I wanted to ask. In the video you converted the @Input() to signal. Is it also possible to have the issues property be a signal, eliminating the need for converting from @Input to signal?

  • @VinitNeogi
    @VinitNeogi 7 місяців тому

    Signals make everything so easy :D

  • @x0z59
    @x0z59 7 місяців тому

    You are my most favorite Angular teacher.

  • @ARShindouAR
    @ARShindouAR 7 місяців тому

    Do you have plans for creating a series of Angular CDK tutorial?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      Not really but I will add it to the list of ideas. You mean Angular Material CDK?

    • @ARShindouAR
      @ARShindouAR 7 місяців тому

      @@MonsterlessonsAcademy Exactly. Since I have watched your videos about implementing components without libs. So maybe you can create sth about using CDK to create compoents?

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  7 місяців тому

      @@ARShindouAR I will add it to the list of ideas

  • @ngathanh8438
    @ngathanh8438 7 місяців тому

    this video is so helpful

  • @ngathanh8438
    @ngathanh8438 7 місяців тому

    Amazing, thanks

  • @ayushmankishoredash8585
    @ayushmankishoredash8585 7 місяців тому

    Great one!

  • @adarshsingh3012
    @adarshsingh3012 7 місяців тому

    Thanks

  • @izacaqsha3480
    @izacaqsha3480 7 місяців тому

    Awesome as always

  • @martapfahl940
    @martapfahl940 7 місяців тому +1

    When I hear this is Junior level Code I feel offended being considered Junior after now 7 months into the job. I agree that this code is really super bad.