@lion/ui
Version:
A package of extendable web components
58 lines (41 loc) • 2.22 kB
Markdown
parts:
- ModelValue
- Form
- Systems
title: 'Form: ModelValue'
eleventyNavigation:
key: Systems >> Form >> ModelValue
title: ModelValue
order: 20
parent: Systems >> Form
# Systems >> Form >> ModelValue ||20
The modelValue or model can be considered as the ‘aorta’ of our form system.
It is the single source of truth; not only for the current state
of the form, also for all derived states: interaction, validation, visibility and other states are
computed from a modelValue change.
## Single source of truth
ModelValues are designed to provide the Application Developer a single way of programmatical
interaction with the form for an Application Developer.
### One single concept for Application Developers
Application Developers need to only care about interacting with the modelValue on a form control
level, via:
- `.modelValue`
- `@model-value-changed`
> Internal/private concepts like viewValue, formattedValue, serializedValue are therefore not
> recommended as a means of interaction.
For more information about parsing and the Unparseable type, see [Formatting and Parsing](https://github.com/ing-bank/lion/blob/5f1d7166273cc724458c0239822cd454e16253fa/docs/fundamentals/systems/form/formatting-and-parsing.md)
### Event meta
`model-value-changed` events have a `detail` object, containing the following meta data:
- `isTriggeredByUser`: a boolean that determines whether a change originated
from a user or was triggered programmatically
- `formPath`: an array of FormControls. It contains the path an event follows to go from a 'leaf
element' (for instance a lion-input) to a top element (for instance lion-form). An example path
could be [lionForm, lionFieldset, lionInput]
- `initialize`: whether this is the first time the event is fired (on first render of the FormControl)
### Resetting
Resetting a form can be done by two different methods.
- `resetGroup()`: resets every form field to its initial/prefilled value and interaction state
- `clearGroup()`: clears every form field, disregarding its initial/prefilled value and interaction state
Both methods do so by calling `reset|resetGroup` or `clear|clearGroup` on each `LionField` found in the form.