Great explanation there man. Thanks a lot ❤️ Just one thing that I noticed is that you call .update fn to update signal value but still extract the signal’s value itself instead of using the one provided by default from the update fn itself. Just mentionin for not causing confusion. Thanks again🎉🎉
@CodeShotsWithProfanis9 ай бұрын
ohh yeah. Thanks for that. It seems that I combined a syntax of set along with update :) The correct should be this.#counter.update((value) => value - 1); or this.#counter.set(this.#counter() - 1);
@thomaslhomme68577 ай бұрын
Exactly what I was looking for. Thanks!
@SebastianEcheverry-mp7ti8 ай бұрын
this is really time saving
@DraaElMizan9 ай бұрын
Brilliant, can't wait for a full implementation of signals in Angular. Thanks for sharing Profanis. Please keep the tuts coming.
@HarshitDwivedi-p8mАй бұрын
thanks for great demo 😊. I have one doubt. will this implementation work with Zoneless architecture or with earlier version too?
@georgespanos46809 ай бұрын
Awesome Fanis!!!
@sergiokagiema96586 ай бұрын
Excellent example! Well done!
@CodeShotsWithProfanis6 ай бұрын
Many thanks! :)
@cdotforce9 ай бұрын
Cool!
@Nabulio856 ай бұрын
Great demo!❤
@CodeShotsWithProfanis6 ай бұрын
Thank you! 🤗
@tarasshevchuk84779 ай бұрын
Thank you Fanis for very good explanation !!!
@CodeShotsWithProfanis8 ай бұрын
Glad it was helpful!
@malikrajat9 ай бұрын
Thanks sharing, It really a knowledge heavy video. I have request, Can you please share git repo for this code base
@zaferdemir46809 ай бұрын
Great! How about new signal model? There is just a simple examples on angular dev. Can you please share on a new video complex signal model code base?
@CodeShotsWithProfanis9 ай бұрын
Thanks for asking. Indeed the Signal Model will be one of my next videos
@utsahpaikray8 ай бұрын
Great
@ansumanmishra96089 ай бұрын
Excellent tutorial ❤
@CodeShotsWithProfanis9 ай бұрын
Glad you liked it!
@andersonantunes32877 ай бұрын
I didn't know this way of obtaining the click event using `fromEvent` from `RXJS`. Is it possible to obtain the same result as `fromEvent` in relation to ancestral components using something native to Angular?
@CodeShotsWithProfanis7 ай бұрын
I would expect the Signal Components (they are not yet there), or a zonelss change detection would do the trick natively. This is the PR of the zoneless provider github.com/angular/angular/pull/55329
@andersonantunes32877 ай бұрын
@@CodeShotsWithProfanis Thanks for the information, I'll wait for the new version to test