Loop component
The loop component
The loop component is a container that where one or more components can iterate, or loop, over an array of data. This is useful for creating repeating components without having to repeat data connections for each component instance. Additionally, by combing with query-type data resources, the loop can enable dynamic lists of content.
Before you start
- Like all components, the loop component must be allowed in the current slot.
- It can't be the composition component, or the base component used to create a composition.
- The loop component only works in conjunction with a data resources containing an
array
of data.
Adding the loop component#
If the loop component is available to insert into the current slot, it's displayed at the top of the component insert drawer. Clicking on “Loop” will add the component to the composition.

Loop settings#
Data array#
To use a loop, you must select a data array from a data resource.
info
Learn more about connecting to external data.
Once the component is added you'll need to create or select a data array.
Click "Select a data array." A drawer will open showing the data resource(s) already connected to the composition. You can also add a new data resource.
Review the fields available from the selected data resource, and select the desired array.
About this step
An array is a list of items, such as a list of products, ingredients, or categories.
The connection drawer will specify “array” and the number of items it contains. You can only connect an array to a loop’s data array property.
Once you've selected an array Uniform will generate a name for the virtual data resource created. This appears in the "Loop Data Resource Name" field.
Adding a component#
Once you've added a component to the loop’s slot it will automatically repeat once for each item in the array. Edits to the first component will automatically cascade to all other items in the loop.
Typically, you’ll want to connect the parameters in the first component to data elements in the loop data resource. The loop data resource contains elements from the first item in the previously selected array. The second, virtual, component will connect to the second item in the array, using the same schema, the third to the third, continuing down for all items in the array.
You can add multiple components. Each components will repeat once for each item in the array.
Mixed data#
A component within a loop can connect to data outside the loop data resource. Or even contain volatile content. However, non-loop data will repeat the same way on each virtual component.
Patterns#
Patterns can be used within loops. A pattern data resource can't be overridden with loop data resource. However, individual, overridable parameters can connect to a loop data resource and will behave in the same way as described above.
Loops within patterns#
Loops can also be used in patterns. For overridable patterns, the replacing the pattern data resource will cascade down to the loop data resource thus changing the data elements and virtual components in the loop.
For example, you might create a “featured products” pattern with a data resource that queries products in your product information management system (PIM). Each time you implement the pattern, the author could choose different query parameters (for example, a different category), which would subsequently change products shown within through the loop and loop data resource.