Skip to content

Glossary

Mateusz Chrzonstowski edited this page Jul 24, 2017 · 7 revisions

Library Keywords

  • Domain Object - basically every object for which we want to create a form. Usually forms are created for the main objects for the application pieces. And those pieces are often called domains.
  • Reactive Form - Dynamic or Model-driven Form.
  • FieldComponent - DORF representation of a form field. E.g. DorfSelectComponent, DorfInputComponent. Built from FieldMetadata.
  • FieldMetadata - object which is used by FieldComponent. It also exposes FormControl.
  • FieldDefinition - object which specifies e.g. label and validator for the form field. FieldDefinition is provided by a dev and converted later to FieldMetadata.
  • Mapper - DorfMapper which converts PropertiesToDorfDefinitionsMap from a concrete Domain Object into the array of FieldMatadata objects, which are the future reactive form.

API Documentation

Generated documentation

DORF

Definition <-mapper-> Metadata <-> Field <-> Form

Clone this wiki locally