🚦Angular NgRx Signal Store: WHAT are Deep Signals??

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 พ.ย. 2024

ความคิดเห็น • 42

  • @AngularUniversity
    @AngularUniversity  8 หลายเดือนก่อน +6

    A quick guided tour on NgRx Signal Store, and the concept of Deep Signals, timestamps in the description 😊 No music after the intro, a shorter form video. Let me know if you enjoy these more, or prefer a lix of long and short format. Enjoy everyone!👍

  • @JohanVrolix
    @JohanVrolix 8 หลายเดือนก่อน +7

    Thanks for giving so much to the Angular community Vasco

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน

      You're welcome Johan, I'm happy to be of service 😊👍

  • @andyhb1970
    @andyhb1970 8 หลายเดือนก่อน +5

    Wow this is moving at some pace, it was only a few weeks ago we were discussing this requirement. I'm blown away with Angular it's just superb ❤

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +1

      Yes, this truly is the Angular Renaissance 👍😊

  • @01binaryboy
    @01binaryboy 8 หลายเดือนก่อน +2

    This is like attaching individual reducers to store in REDUX , but here we are attaching pure objets that are converted to signals automatically. Really mind blowing. So there is no need to do normalization.

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +1

      Notice that the state is still kept internally, together with the signals that are created, and normalization still helps. There is a plugin for entities, for NgRx Signal Store too, I'm thinking of covering it in a future videos. 😊👍

    • @01binaryboy
      @01binaryboy 8 หลายเดือนก่อน

      @@AngularUniversity I am a heavy user of the concept entity adapter in REACT REDUX.
      Waiting for your Signal Store based entity adapter video.
      Thank you.
      I have bought your course already in Udemy long back.

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +1

      @@01binaryboyThank you, stay tuned for more videos and please enjoy the courses 😉

  • @JohanVrolix
    @JohanVrolix 6 หลายเดือนก่อน +3

    Can you do a video on how to test SignalStores? And how to mock them when testing components that use SignalStores? Or can you provide some resources?

  • @marekkazimierczak9210
    @marekkazimierczak9210 8 หลายเดือนก่อน +1

    I do appreciate the dark theme in IDE, the lesson is more enjoyable to watch in this format

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน

      Thank you, dark theme rocks 😉 It's the theme Monokai Pro Webstorm 👍

  • @JohnSourvinos
    @JohnSourvinos 8 หลายเดือนก่อน +1

    Awesome content, Vasco. Angular developers are in good hands. Greetings from 39.6250° N, 19.9223° E

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +1

      You're luck to live in Corfu, it must be wonderful to live in a beautiful island in the Mediterranean. 😉

  • @rafaelvelazco8970
    @rafaelvelazco8970 4 หลายเดือนก่อน

    Amazing video, Vasco!

    • @AngularUniversity
      @AngularUniversity  4 หลายเดือนก่อน +1

      Thank you. Stay tuned for more videos and Shorts!

  • @nemanjazivaljevic1656
    @nemanjazivaljevic1656 หลายเดือนก่อน

    If you inject a store at a component level, it can be passed down to its children, so you don't need to inject it at the root level. At the same time, when the component is destroyed, the store will also be destroyed. In that way, the store will be bound to a page that is associated with it and will be activated only when we need it making the app faster.

  • @ddgutierrez
    @ddgutierrez 6 หลายเดือนก่อน

    Hola! Excelente video. Y si quiero que el store persista a nivel de memoria? Ejemplo que no quiero que a cada rato se este invocando el get todos del service (imaginando que es un llamado a un API) ya que previamente en otro componente ya lo había cargado? Como sería esto?

    • @AngularUniversity
      @AngularUniversity  6 หลายเดือนก่อน +1

      Thank you it's awesome to hear that 😊 You can save the store content to local storage using an effect, and read it back at application startup time 👍

    • @ddgutierrez
      @ddgutierrez 6 หลายเดือนก่อน

      @@AngularUniversity muchas gracias !!! Ojalá puedas hacer un video explicando cómo hacerlo. Esta parte del manejo de store siempre se me ha sido complicado 🙏 con tus videos entiendo mejor. Muchas gracias por tu tiempo !!!!

  • @manuelraso5446
    @manuelraso5446 5 หลายเดือนก่อน

    Thanks a lot for the video! One quick question:
    Is there a browser extension to see the actual state? For the NGRX store I always used Redux extension to see in the browser the store (and it's very helpful to debug), is there something like that for this signal store?

    • @AngularUniversity
      @AngularUniversity  5 หลายเดือนก่อน

      Thank you, there is so far no extension but there will be one soon I bet 👍

  • @JohanVrolix
    @JohanVrolix 8 หลายเดือนก่อน

    Hi Vasco, just a question: if you reach out to a real backend you would use services that use httpclient, thus returning observables which, I assume, would be turned into signals using toSignal from the Angular RxJS interop package. Would you use toSignal in the service class already or inside the SignalStore?

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +1

      Great question, actually I would call toPromise on the HTTP client for now, or the equivalent methods that replace it like firstValueFrom. Then use async / await to do HTTP requests, and send the value to a signal via set() or update(). I'm not sure if it's a good idea to handle HTTP responses as signals, as they might error out, and there is no such concept in signals. Using promises and setting the value in a signal is what I would do at this stage. The API of the HTTP client is going to be revisited down the line, together with other Angular APIs, in the common path of making RxJs optional in the framework. 👍Check out the latest Angular Q&A where the Angular team talks about the different options that you have for HTTP in Angular. 👍

  • @haroldpepete
    @haroldpepete 8 หลายเดือนก่อน +1

    i don't like that mixture of the store using services that make request, store just need to listen for changes and modify, i preffer effects

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +4

      I think it's a matter of getting used to it, it's very new. 😉 With an Ngrx effect, a service is also used to call the backend and store data in the store. You can also plug the store into a RxJs chain and do something similar to an NgRx effect ngrx.io/guide/signals/rxjs-integration But I think that effects are better left for other things, if it's just calling the backend and getting data into the store, I personally prefer this new approach. 👍

  • @MichaelSmallDev
    @MichaelSmallDev 8 หลายเดือนก่อน

    Nice tutorial. Great thumbnail lol

  • @filipefreire6517
    @filipefreire6517 8 หลายเดือนก่อน

    Espetáculo

  • @tanishqmanuja
    @tanishqmanuja 8 หลายเดือนก่อน

    I know the logo is physically centered but idk why it bugs me until they are visually centered 😅

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน

      You mean the AngularUniv logo on the TODO app on top?

    • @tanishqmanuja
      @tanishqmanuja 8 หลายเดือนก่อน

      The channel logo here on YT, btw great content!

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน

      @@tanishqmanuja Ohh I see what you mean 😊

  • @adambickford8720
    @adambickford8720 8 หลายเดือนก่อน +1

    What's the point w/o fine grained reactvity? Is auth.foo.bar() really that different from auth().foo.bar?

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +2

      Great question 😉 by having different signals per nested property instead of just one signal for the whole auth object, different parts of the application can get notified only when and if the properties that they use change. For example, this way if a component only uses auth.user.name(), if auth.user.roles() changes then the component will not get updated. I go into detail on this fine-grained reactivity concept in this other video - th-cam.com/video/BasNj-w5RMI/w-d-xo.html Let me know if that helped?

    • @adambickford8720
      @adambickford8720 8 หลายเดือนก่อน +1

      @@AngularUniversity I get that its providing fine grained reactivity at the property level, and its pretty cool how it does so with such little boilerplate. But in practice, is it really that much more efficient to adopt as a general approach though?
      Especially when its likely you're rendering more than one property from the object and ng will rerender the entire component anyway. (I'm assuming its smart enough to 'coalesce' the events)
      I've never used this lib so its probably time to play with it and see. It just feels like it falls into the 'OnPush' realm of maybe too much accidental complexity as a default :)

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +3

      ​@@adambickford8720 I really like that though-process of keeping things simple, it's my approach too. 😊 👍 I think if the application does not use a centralized store, then using signal() at the component or service level would be more than enough, no differences would be noticeable in terms of performance in my view for most cases, so bending ourselves backwards to get fine-grained reactivity at all costs is definitively not worth it. However for applications with a centralized store pattern, this could actually become important because if we use signal() for the state object, then it means the whole application gets updated everytime anything changes. I still doubt it would be noticeable in most cases though, so your point stands. In the next video, I'm going to talk about a way of having deep signals without the store construct, so we can use a deep signal locally if needed. The only other advantage that i see of this type of constructs is the built in immutability which is nice, and that signal() does not provide by default. This inforced immutability could be a good thing if using signal-based change detection, and could have the practical benefit of removing a whole category of bugs from the code base (accidentally updating state directly without emitting a new signal value). Stay tuned for a new video probably early next week on this topic 👍😊

    • @adambickford8720
      @adambickford8720 8 หลายเดือนก่อน

      @@AngularUniversity I didn't mean *one* object/signal. Just that the sweet spot is probably between there and every property being a discreet source. I'm excited to see where it goes.

    • @AngularUniversity
      @AngularUniversity  8 หลายเดือนก่อน +1

      @@adambickford8720 I know what you mean. 👍 Something beyond signal() but with low boilerplate. signal() will be fine for most cases I believe. Stay tuned for the next video, I will show an alternative solution that I think is much closer to the sweetspot 👍