Categories
Angular Tutorials

Build an Angular HTML Table Using httpResource

Signals did their perfectly to make synchronous flow reactive, but for a while, Angular didn’t have built-in batteris to handle asynchronous network flow natively. We had to rely on interoperability tools like toSignal and toObservable, but using them meant constantly jumping between two completely different worlds: RxJS Observables and Signals. Angular fixes this friction with httpResource, making the […]

Categories
Opinions

When to use Signals in Angular – Decision Tree

The content discusses a problem with resetting and syncing cascading dropdowns in Angular, where changing a root dropdown unintentionally resets a third dropdown. The solution involved moving the reset logic to the linkedSignal, illustrated through a flowchart and decision tree outlining various signal handling strategies in React.