Description
Iterate.Array
works in many ways similar to field-components. It has a value
-prop that can receive an array or you can give it a path
if you want it to retrieve an array from a surrounding DataContext
. All children components of Iterate.Array
are rendered once per element the array-value consists of.
Individual values and dynamic paths
Since Iterate.Array
renders its children once per element, the field components inside must receive values based on the different elements in the array. This can be done in two ways:
1. elementPath
If field components inside Iterate.Array
are given an elementPath
prop, this will look for values based on the array element being the root of the structure, even if the array often comes from a surrounding data set. This means that you do not need to think about which index the field should point to, because it is handled by Iterate.Array
internally. You can look at the individual element as its own structure.
2. Render props
If you want to be able to provide values to the individual field component directly instead of pointing to them with paths, you can give Iterate.Array
a render prop. It works a bit like an array-map call. The render function receives the value of the element as the first argument, and the index of which element you are on as the second.
Examples of both the use of elementPath
and Render Props in Iterate.Array
can be found on demos.
Demos
Primitive elements
<Iterate.Array label="Array label" value={['Iron Man', 'Captain America', 'The Hulk']} onChange={(value) => console.log('onChange', value)} > <Field.String elementPath="/" /> </Iterate.Array>
Object elements
<Iterate.Array label="Accounts" value={[ { accountName: 'Brukskonto', accountNumber: '90901134567', }, { accountName: 'Sparekonto', accountNumber: '90901156789', }, ]} onChange={(value) => console.log('onChange', value)} > <h3> <Value.String elementPath="/nickname" /> </h3> <Flex.Horizontal> <Field.BankAccountNumber elementPath="/accountNumber" /> <Field.String label="Account name" elementPath="/accountName" /> </Flex.Horizontal> </Iterate.Array>
Render props with primitive elements
<Iterate.Array label="Array label" value={['foo', 'bar', 'baz']} onChange={(value) => console.log('onChange', value)} > {(elementValue) => <Field.String value={elementValue} />} </Iterate.Array>
Render props with object elements
<Iterate.Array label="Array label" value={[ { num: 1, txt: 'One', }, { num: 2, txt: 'Two', }, { num: 3, txt: 'Three', }, { num: 4, txt: 'Four', }, ]} onChange={(value) => console.log('onChange', value)} > {({ num, txt }) => ( <FieldBlock width="large"> <Field.Number value={num} width="small" /> <Field.String value={txt} width={false} /> </FieldBlock> )} </Iterate.Array>
With DataContext and add/remove buttons
elementPath
points to the root of each iterated element, while path
points to the root of the data source.
<Form.Handler data={{ avengers: [ { nickname: 'Iron Man', firstName: 'Tony', lastName: 'Stark', bornYear: 1970, }, { nickname: 'Captain America', firstName: 'Steve', lastName: 'Rogers', bornYear: 1918, }, ], alwaysThere: 'Nick Fury', }} onChange={(data) => console.log('Source onChange', data)} > <Form.MainHeading>Avengers</Form.MainHeading> <Iterate.Array path="/avengers" onChange={(value) => console.log('Iterate onChange', value)} > <Form.SubHeading> <Value.String elementPath="/nickname" /> </Form.SubHeading> <Flex.Horizontal align="center"> <Field.String elementPath="/firstName" width="medium" label="First name" /> <Field.String elementPath="/lastName" width="medium" label="Last name" /> <Field.Number elementPath="/bornYear" label="Year of birth" width="small" /> <Iterate.ArrayRemoveElementButton icon={TrashIcon} /> </Flex.Horizontal> <Field.String path="/alwaysThere" top="x-small" /> </Iterate.Array> <Iterate.ArrayPushButton top="small" text="Add another avenger" path="/avengers" pushValue={{}} /> </Form.Handler>
Properties
Standard data value component props
Property | Type | Description |
---|---|---|
className | string | (optional) Outer DOM element class name. |
value | array | (optional) Source data value for the input. |
id | string | (optional) Outer DOM element id attribute. |
name | string | (optional) Outer DOM element name attribute. |
layout | string | (optional) Layout for the label and input. Can be horizontal or vertical . |
label | string | (optional) Field label to show above / before the input feature. |
labelDescription | string | (optional) A more discreet text displayed beside the label (i.e for "(optional)"). |
labelSecondary | string | (optional) Secondary information displayed at the end of the label line (i.e character counter). |
placeholder | string | (optional) Text showing in place of the value if no value is given. |
path | string | (optional) JSON Pointer for where the data for this input is located in the source dataset (when using Form.Handler or DataContext). The path will also be set as the name attribute for the string-field. |
info | Error or string | (optional) Info message shown below / after the input. |
warning | Error or string | (optional) Warning message shown below / after the input. |
error | Error | (optional) Error message shown below / after the input. |
disabled | boolean | (optional) Set true to show the field but without the possibility of changing the value. |
emptyValue | any | (optional) The value to use (in onChange events etc) when emptying the field. Makes it possible for instance to provide undefined instead of an empty string when clearing the content of a text input. |
required | boolean | (optional) When set true , the input will give an error if the value cannot be empty. |
schema | object | (optional) Custom JSON Schema for validating the value. |
validateInitially | string | (optional) Set true to show validation based errors initially (from given value-prop or source data) before the user interacts with the field. |
validateUnchanged | string | (optional) Set true to show validation based errors when the field is touched (like focusing a field and blurring) without having changed the value. Since the user did not introduce a new error, this will apply when the value was initially invalid based on validation. |
continuousValidation | string | (optional) Set true to show validation based errors continuously while writing, not just when blurring the field. |
errorMessages | object | (optional) Custom error messages for each type of error, overriding default messages. |
validator | function | (optional) Custom validator function that will be called for every change done by the user. Can be asynchronous or synchronous. |
onBlurValidator | function | (optional) Custom validator function that will be called when the user leaves the field (blurring a text input, closing a dropdown etc). Can be asynchronous or synchronous. |
toInput | function | (optional) Derivate called when the received / active value is sent to the input. Can be used for casting, changing syntax etc. |
fromInput | function | (optional) Derivate called when changes is made by the user, to cast or change syntax back to the original (opposite of toInput ). |
Property | Type | Description |
---|---|---|
FlexContainer | Various | (optional) All Flex.Container properties. |
Space | Various | (optional) Spacing properties like top or bottom are supported. |
Events
Event | Description |
---|---|
onChange | (optional) Will be called on value changes made by the user, with the new value as argument. |
onFocus | (optional) Will be called when the component gets into focus. Like clicking inside a text input or opening a dropdown. Called with active value as argument. |
onBlur | (optional) Will be called when the component stop being in focus. Like when going to next field, or closing a dropdown. Called with active value as argument. |