...

/

Creating Reactive Forms for Client Contacts Manager Application

Creating Reactive Forms for Client Contacts Manager Application

Let's use RxJS to improve the search of our application and add onChanges lifecycle hook to populate a Reactive form with the data passed in from the parent Component.

Major changes

In this version of an application, we have made the following changes:

  • Updated both the Client and Company services to show that Observables are being returned from the HttpClient calls.

  • Updated both the Client Edit form and the Company Edit form to Reactive forms.

  • Used RxJs in the Search Form Component, so it now starts searching as you type.

  • Added OnChanges lifecycle hook to both the Client and Company edit forms in order to populate a Reactive form ...