Sorry, but you either have no stories or none are selected somehow.
If the problem persists, check the browser console, or the terminal you've run Storybook from.
The useSearchResults
hook returns the data and functionality to provides a way to perform a search results widget.
This hook accepts a single optional object parameter with 3 properties, query
, state
and config
.
Name | type | Description |
---|---|---|
query | (query: Query <Request> ) => void | A function that receives the widget query. Returns void. |
state | SearchResultInitialState | () => SearchResultInitialState |
config | SearchResultsConfig | Object with the configuration for the widget. |
Example of SearchResultInitialState
:
Examle for config:
Note: To make the hook available, the SDK needs the component to be registered. This can be made using the widget
function.
Where the first parameter for widget is the component itself, the second one a constant that indicates the widget type and the last one is the entity type. In this case the widget type constant is getting from WidgetDataType.SEARCH_RESULTS
.