Template-driven forms are nice and get us going very quickly. However, they are hard to test without e2e tests. In this exercise we're going to refactor our existing form to a model-driven form using FormControl
, FormGroup
and FormBuilder
APIs.
- Add
ReactiveFormsModule
to our application module's imports - Export
validateEmail()
fromsrc/app/email-validator.ts
- Export
checkEmailAvailability(contactsService)
fromsrc/app/email-availability-validator.ts
- Import
FormControl
,FormGroup
,FormBuilder
andValidators
from@angular/forms
inContactsCreatorComponent
- Import
checkEmailAvailability
andvalidateEmail
functions inContactsCreatorComponent
- Inject
FormBuilder
intoContactsCreatorComponent
- Create a
FormGroup
usingFormBuilder
for all fields in the form and assign it to aform
property on the component - Apply validators to form fields imperatively
- Use
[formGroup]
to associateform
with the DOM and remove#form="ngForm"
- Use
formControlName
to associate single form controls to the input DOM elements - Use
form.get('FIELDNAME')
APIs to access validity state of fields and display error messages - Remove all validation directives from input fields in the template
- Try to apply reactive form APIs to
ContactsEditorComponent
as well