N Things You Didn’t Know About the Router - Deborah Kurata

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

КОМЕНТАРІ • 54

  • @m3talg3array
    @m3talg3array 6 років тому +25

    Excellent talk. Big fan of your Pluralsight courses as well. You've helped me learn a lot about Angular!

  • @benjboyle
    @benjboyle 6 років тому +5

    Some of the clearest Angular information I've come across.

  • @victorm9131
    @victorm9131 5 років тому +2

    Wow. I don't have words to describe how I feel after watching this conference. I thought I'd watch for about 3-7min straight the topic that I need. But I ended up watching the video from 0:00 till the end. Thank you :)

  • @davidn7026
    @davidn7026 5 років тому +2

    this is very visual and helpful in capturing the architecture. I've been using Angular 2+ since its beta and this solidifies any "tricks" and knowledge that I've come across over the years. Thank you so much

  • @williamramirezlizano
    @williamramirezlizano 6 років тому +3

    That was so good I scraped my project and started from 0. Excellent thanks, and I say it without sarcasm, my app was entering labyrinth mode and with this, the resolving beforehand, it now is clean as a whistle.

  • @xXUkanlosXx
    @xXUkanlosXx 3 роки тому +1

    Very clear and nice tips for real life scenarios wow, i will implement some of them in my projects

  • @USONOFAV
    @USONOFAV 4 роки тому

    The best angular routing explanation so far

  • @love-hammer
    @love-hammer 2 роки тому

    Around 12:50 the note about the component being injected into the guard is so important (as she said). I recently cleaned up a guard where, despite component being right there in the signature, someone went to the trouble of adding: a touched flag in the global state, and an associated action to dispatch (ngxs) when it should be flipped. Just for this one form. The component is right there.

  • @user-iq6yo2bo8p
    @user-iq6yo2bo8p 4 роки тому

    Simple, excellent content, practical examples

  • @hassankhan8011
    @hassankhan8011 6 років тому

    Big Fan of your Pluralsight Courses . u are my angular Teacher. i learned angular from your courses and now on a great post in software firm .

  • @muhammadabdelhady2257
    @muhammadabdelhady2257 2 роки тому

    This is helpful for new angular develoeprs. thank you so much

  • @khyr-hl9yt
    @khyr-hl9yt 2 місяці тому

    Her teaching method is excellent

  • @FuzailShaikh
    @FuzailShaikh 2 роки тому

    Awesome talk! 👏

  • @SuperToughnut
    @SuperToughnut 2 роки тому

    So useful!

  • @Saaad2
    @Saaad2 6 років тому +1

    Deborah! You're a god of Angular :)

  • @Dgiulian
    @Dgiulian 6 років тому

    N > 2.5 for me (I knew about nested routing but never really understood it until I watched this video)- also the enable Tracing and the loading spinner was super cool

  • @danielbond9729
    @danielbond9729 5 років тому +1

    Thanks, great video cleared a few things up and learned new stuff👍

  • @ThomasBurleson
    @ThomasBurleson 6 років тому +1

    Really nice walkthru and presentation @deborahkurata.

  • @manishbansal8843
    @manishbansal8843 6 років тому +1

    Hmm..never thought about showing spinner while angular resolved routes. Rest i knew already. Never mind, great talk.

  • @laurentguerin8806
    @laurentguerin8806 6 років тому

    Very clear and very useful, thank you.

  • @Links...
    @Links... 5 років тому +1

    there is simply stuff. ask me how I make deal with routing of 9 angular microservices without losing a SPA between navigates and to show 3 microservices on 1 page and each one have own routing? it was hell
    we need feature for building lazy modules as separated bundles

  • @PerfectEn3my
    @PerfectEn3my 6 років тому +1

    Amazing talk, mega userful, thank you!

  • @gwapster13
    @gwapster13 5 років тому +1

    This is very helpful

  • @DmytroShapovalovUA
    @DmytroShapovalovUA 3 роки тому

    Wow, that was great, thanks a lot!

  • @yavdhesh
    @yavdhesh 4 роки тому

    ये सबसे अच्छा लगा मुझे ।

  • @TradeWithScence
    @TradeWithScence 6 років тому

    good detailing, thank you so much

  • @basilio100
    @basilio100 5 років тому

    @Deborah, Thank you - all my code refactored according your ideas. Thanks again.

  • @shriniwasrocks
    @shriniwasrocks 6 років тому

    thats the first tile i saw router events used for spinner logic. I will try that :)

  • @oskar42314
    @oskar42314 5 років тому

    This is a great talk

  • @dandashino
    @dandashino 6 років тому

    i liked the way the spinner was handled from just inside the app component, but what about when i'm fetching data from the server without any re-routing ? I just have a table and the user did some filters so now I have to fetch the new results and show a spinner meanwhile. Or maybe not a table just any filter example where I need to reload data but in the same page. (I know how to do it but asking if there's a better way just like the method used in this video)

  • @siddarthapal2792
    @siddarthapal2792 6 років тому +6

    You are my Angular god );

  • @javascript_developer
    @javascript_developer 2 роки тому

    Resolver - Thanks..

  • @hbela1000
    @hbela1000 6 років тому

    awesome, thx.

  • @ben4d85
    @ben4d85 6 років тому +1

    N = 1, the 'canDeactivate' guard was new for me! I have tried it out and have found that the more interesting question is: How do you set the 'isDirty' property in 'MovieEditComponent'? More precisely, how do you detect if your form has unsaved changes?

    • @m4r10x2
      @m4r10x2 6 років тому

      Search for angular reactive forms - dirty or pristine. angular.io/guide/reactive-forms#inspect-formcontrol-properties

    • @ben4d85
      @ben4d85 6 років тому

      Thanks, but my question was how to detect if the form (as a whole) has unsaved changes, not how to check individual form-controls for changes.

    •  6 років тому +1

      I have implemented my own detection mechanism, which makes a record into a map, everytime something changes. By changing the state of the form a method is called (via event) to record the change, if there is a given key, the fields name or whatever you want it to be identified by, than the record is deleted, if there is none, a new record is made. Than you can check if the map contains any record or you can create a boolean property unsavedChanges: bool for example, if you wold like to make it clearer. This works if the field has only two states, if you want to keep track of changes between more states, you will have to use different data structure in order to be able to go back without interuption, if the user manually reverted his change. There might be some library for thi tho, I have not searched.

    • @deborah_kurata
      @deborah_kurata 6 років тому +2

      Following the link above you'll see that the FormGroup (the entire form) also has a dirty flag as does each individual element. You can download the code for this session following the link in the slides to see the details of how its done.

  • @kiambojyms2196
    @kiambojyms2196 6 років тому

    Hey Deborah am stuck I have a navigation menu in a parent component but when I press on a link to a child component.. The navigation menu appears in the top of the child. How will I hide the navigation from the child or make it not appear in the child component. Do you have any video tutorial for that in angular 4. Please help. Its urgent.

    • @deborah_kurata
      @deborah_kurata 5 років тому

      I don't monitor the comments here and *just* saw this. Hopefully you were able to resolve your issue?

  • @ROHITSHARMA-og7ue
    @ROHITSHARMA-og7ue 5 років тому

    How to turn on routing such that we can see all the trace?

  • @georaves2998
    @georaves2998 6 років тому

    I love nest!

  • @joelmuskwe
    @joelmuskwe 6 років тому

    What is the proper way of using both resolvers and guards with ngrx especially on resolving data that you want to keep track of changes in the navigated component

    • @deborah_kurata
      @deborah_kurata 6 років тому

      This post may help: toddmotto.com/preloading-ngrx-store-route-guards

  • @VladimirRoytman
    @VladimirRoytman 3 роки тому

    2:10 menus and outlets 5:03 Children, 5:54 Resolver makes routing wait for completion of async operation. route.snapshot.data, 9:13 router.evenst.subscribe to show spinner. 10:51 enableTracing:true. 12:01 Guard services: CanActivate, CanDeactivate, CanLoad 14:25 Createe const appRoutes: Routes to hold the definition 15:46 RouterModule.forChild wouldn't work 18:27 Lazy loading: loadChildren: "urlRoot.module#MyModule"

  • @business_max
    @business_max 5 років тому

    Excellent :)

  • @additionaddict5524
    @additionaddict5524 5 років тому

    Nested router outlet nice

  • @kavanmannapperuma1963
    @kavanmannapperuma1963 6 років тому

    Brilliant. Definitely N > 0 for me.

  • @igorr4682
    @igorr4682 Рік тому

    Given your role as a spokesperson, I strongly recommend investing time in mastering proper breathing techniques. Currently, your delivery often sounds as if you're running out of breath midway through your statements. This issue not only detracts from the topic at hand but also diminishes the overall impact of your communication. Addressing this aspect is critical for maintaining audience engagement and ensuring effective delivery.

  • @NSMetaLpig
    @NSMetaLpig 3 роки тому

    if this N things are on the angular documentation, there will be no N things

  • @partyY2Hard
    @partyY2Hard 3 роки тому

    22 people still didn't get the N things...

  • @ShanyGolan
    @ShanyGolan 4 роки тому

    That Deborah women spams the world of web development 🤦🏻‍♂️🤦🏻‍♂️🤦🏻‍♂️