A visual guide to changing without reassigning in DECLARATIVE code

  Рет қаралды 6,815

Joshua Morony

Joshua Morony

Күн бұрын

Пікірлер: 26
@JoshuaMorony
@JoshuaMorony Ай бұрын
Someone on reddit pointed out that the placement of the catchError would mean it only handles the first error, I've fixed this up in the source code but just be aware of that in the code shown in the video
@RasmusChristensen-n5j
@RasmusChristensen-n5j Ай бұрын
It is really nice with the visualizations. It helps a lot when looking at the side-by-side with the code :) Keep it up Joshua, you are doing good work.
@PandaPlaysAll
@PandaPlaysAll Ай бұрын
What program do you use to animate
@JoshuaMorony
@JoshuaMorony Ай бұрын
@@PandaPlaysAll I'm using Motion Canvas
@iriel492ki
@iriel492ki Ай бұрын
One of your best videos to date. Excellent!
@SoheilMohammadi-v6b
@SoheilMohammadi-v6b Ай бұрын
this graph was so helpfull, I'v been trying declarative paradigm for some time, and it cleared up a lot of stuff for me that I was struggling with
@magodelviento
@magodelviento 11 күн бұрын
Vey nice man, well explained.
@souravsaraf1230
@souravsaraf1230 Ай бұрын
Really loved the declarative approach as always. Can you please show a sample implmentation of this with Signals without using Rxjs ?
@JoshuaMorony
@JoshuaMorony Ай бұрын
Signals (Angular signals specifically) only is possible only until you need to handle anything async (like the http request in this example). The basic idea with signals is that you just use computed to derive anything that is dependent on some other thing. Then at the top of your graph you might have a standard writable signal that you can imperatively set to trigger everything else below reacting to it. Once you need to deal with async stuff though you will need to bring in RxJS or something else if you want to keep it declarative (derivedFrom from ngxtension is an option, which allows you to do async stuff with signals with the RxJS stuff hidden behind the scenes)
@mortezatourani7772
@mortezatourani7772 Ай бұрын
Most of the time, a change in filters resets the page so I assume we can move it above the page so it also manage that
@BrettCoffin
@BrettCoffin Ай бұрын
Bravo !!! and thank you ;)
@JZubero
@JZubero Ай бұрын
Do you have an take on how to avoid reassigning when you want to subscribe to an event-style observable (e.g. ionInput of ion-searchbar) of a component that is being fetched as ViewChild (in angular)? Is there a way to work around the fact that the ViewChild/CMP reference will be undefined in the constructor scope?
@JoshuaMorony
@JoshuaMorony Ай бұрын
@@JZubero yes I'm not at my computer now so can't grab the exact link, but I have a video titled something like "refactoring my ugliest code" which is about how signal view queries make this much easier, but I also show how I did it pre-signals
@JZubero
@JZubero Ай бұрын
@@JoshuaMorony Spot on! Exactly what I was looking for. thx ✌
@dmitriylazarenko3220
@dmitriylazarenko3220 Ай бұрын
Great video as usual! I’m a big fan of your channel. I looked at the GitHub code and correct me if I’m wrong but it looks like if there be let’s say a connection error with the back end that error will not be handled because in your error handling you rely on the fact that back end returns something
@JoshuaMorony
@JoshuaMorony Ай бұрын
This should work with any kind of error on the observable stream, though you will have to modify it to more appropriately handle different types of errors - this example just naively prints out whatever the 'error' property of the notification is (but with an http error that is going to be an object)
@cocoscacao6102
@cocoscacao6102 Ай бұрын
what do you use to animate stuff?
@JoshuaMorony
@JoshuaMorony Ай бұрын
I'm using motioncanvas.io
@Rexyness
@Rexyness Ай бұрын
Correct me if I'm wrong , but with the approach of combineLatest([page,filter]) the page will not reset (to the first page) when filter emits.
@antoxa5315
@antoxa5315 Ай бұрын
I think If we change switchMap to switchScan we can handle filter value change and reset current page index
@aaronhauth8880
@aaronhauth8880 Ай бұрын
I think that's intended behavior for this graph. Otherwise, the graph would be more linear (filter => page => request => data). The example is illustrating that either of those things will kick off an http request, that will return with updated data.
@JoshuaMorony
@JoshuaMorony Ай бұрын
Yes you're correct and yes I think it's sensible here to reset the page to 1 when the filter changes. Without getting into different types of approaches, the easiest approach for this example is probably just to next the page BehaviorSubject with 1 as an imperative side effect of the filter changing. Since we are using switchMap and Angular's HttpClient here we don't really need to worry about our combineLatest stream emitting multiple times
@jaybee6382
@jaybee6382 Ай бұрын
In essence, create a new state from an old state, rather than mutating the old state into a new state.
@donmorris4506
@donmorris4506 Ай бұрын
Vegemite, noooooo🤢
A visual guide to why DECLARATIVE code is better
7:08
Joshua Morony
Рет қаралды 9 М.
A visual guide to switchMap and "higher order" observables
7:46
Joshua Morony
Рет қаралды 7 М.
Just Give me my Money!
00:18
GL Show Russian
Рет қаралды 1,3 МЛН
МАИНКРАФТ В РЕАЛЬНОЙ ЖИЗНИ!🌍
00:31
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 34 МЛН
WILL IT BURST?
00:31
Natan por Aí
Рет қаралды 48 МЛН
At the end of the video, deadpool did this #harleyquinn #deadpool3 #wolverin #shorts
00:15
Anastasyia Prichinina. Actress. Cosplayer.
Рет қаралды 19 МЛН
Why I’m Switching To Go in 2024
8:10
Awesome
Рет қаралды 57 М.
Here's what I've figured out about Angular signals
8:33
Joshua Morony
Рет қаралды 18 М.
Why You Shouldn't Nest Your Code
8:30
CodeAesthetic
Рет қаралды 2,7 МЛН
I only ever use *these* RxJS operators to code reactively
25:25
Joshua Morony
Рет қаралды 129 М.
The difference between you and ThePrimeagen.
7:25
The Little Tech Turtle
Рет қаралды 107 М.
The mindset you need for a DECLARATIVE code refactor
7:56
Joshua Morony
Рет қаралды 12 М.
Hacking LightHouse Scores
44:03
Theo - t3․gg
Рет қаралды 34 М.
Build Generalized DRY Angular Code with Generics
14:44
Deborah Kurata
Рет қаралды 9 М.
10 years of coding in 13 minutes
13:28
Joma Tech
Рет қаралды 4,9 МЛН
Why is everyone LYING?
7:56
NeetCodeIO
Рет қаралды 295 М.
Just Give me my Money!
00:18
GL Show Russian
Рет қаралды 1,3 МЛН