ais-dynamic-widgets
<ais-dynamic-widgets // Optional parameters transform-items="function" facets="['*']|[]" max-values-per-facet="number" > children </ais-dynamic-widgets>
About this widget
ais-dynamic-widgets
is a widget that displays matching widgets, based on the corresponding settings of the index and may be altered by a Rule.
You can configure the facet merchandising through the corresponding index setting.
Learn how to set up ordering in the facet display guide.
Requirements
You must set the attributes for faceting attributesForFaceting
and configure the facet order, either using the dashboard or using attributesForFaceting
and renderingContent
respectively with the API.
All matching widgets mount after the first network request completes. To avoid a second network request, facets are set to ['*']
and maxValuesPerFacet
is set to 20 by default.
If this behavior isn’t what you want, it can be overridden using the facets
and max-values-per-facet
parameters.
You must use at least Vue InstantSearch version 3.8.0 to use ais-dynamic-widgets.
Examples
1
2
3
4
5
6
7
<ais-dynamic-widgets>
<ais-refinement-list attribute="brand" />
<ais-panel>
<ais-menu attribute="categories" />
</ais-panel>
<ais-hierarchical-menu :attributes="['categories']" />
</ais-dynamic-widgets>
Options
children
|
type: Widget[]
Required
The children of this component will be displayed dynamically based on the result of facetOrdering. This means that any child needs to have either the “attribute” or “attributes” prop. |
||
Copy
|
|||
transform-items
|
type: function
Optional
A function to transform the attributes to render, or using a different source to determine the attributes to render. |
||
Copy
|
|||
facets
|
type: ['*']|[]
default: ['*']
Optional
The facets to apply before dynamic widgets get mounted. Setting the value to |
||
Copy
|
|||
max-values-per-facet
|
type: number
default: 20
Optional
The default number of facet values to request. It’s recommended to have this value at least as high as the highest limit and showMoreLimit of dynamic widgets, as this will prevent a second network request once that widget mounts. To avoid pinned items not showing in the result, make sure you choose a |
||
Copy
|