Summary
This chapter was entirely dedicated to Angular forms. We started by clarifying what a form actually is and enumerated the features it needs to have in order to fulfill its duties, grouping them into two main requirements: providing a good user experience and properly handling the submitted data.
Then, we turned our focus to the Angular framework and to the two form design models it offers: the template-driven approach, mostly inherited from AngularJS, and the model-driven or Reactive alternative. We took some valuable time to analyze the pros and cons provided by each of them and then we performed a detailed comparison of the underlying logic and workflow. At the end of the day, we chose to embrace the Reactive way of doing things, as it gives the developer more control and enforces a more consistent separation of duties between the data model and the form model.
Right after that, we went from theory to practice by creating a CityEditComponent
and used it to implement...