
CategorySearch creates a category based data search UI component with an autosuggest functionality. It is used for applying full-text search across one or more fields.
Example uses:
- Searching for a rental listing by its nameordescriptionfield.
- Creating an e-commerce search box for finding products by their listing properties.
Usage
Basic Usage
<CategorySearch
	componentId="SearchSensor"
	dataField={['group_venue', 'group_city']}
	categoryField="group_topics"
/>Usage With All Props
<CategorySearch
    componentId="SearchSensor"
    dataField={[
    	{
    		"field": "group_venue",
    		"weight": 1
    	},
    	{
    		"field": "group_city",
    		"weight": 3
    	}
    ]}
    categoryField="group_topics"
    title="Search"
    defaultValue={{
    	term: 'Paris',
    	category: '*',
    }}
    placeholder="Search for cities or venues"
    autoSuggest={true}
    defaultSuggestions={[{ label: 'Programming', value: 'Programming' }]}
    highlight={true}
    highlightConfig={{
        'pre_tags': ['<mark>'],
        'post_tags': ['</mark>'],
        'fields': {
            text: {},
            title: 'sws'
        },
        'number_of_fragments': 0,
    }}
    highlightField="group_city"
    queryFormat="or"
    fuzziness={0}
    debounce={100}
    react={{
    	and: ['CategoryFilter', 'SearchFilter'],
    }}
    size={10}
    showFilter={true}
    filterLabel="Venue filter"
    URLParams={false}
    endpoint={{
      url:"https://appbase-demo-ansible-abxiydt-arc.searchbase.io/recipes-demo/_reactivesearch.v3", //mandatory
      headers:{
        // relevant headers
      },
      method: 'POST'
    }}    
/>Props
componentId
| Type | Optional | 
|---|---|
| String | No | 
unique identifier of the component, can be referenced in other components' react prop.
endpoint
| Type | Optional | 
|---|---|
| Object | Yes | 
endpoint prop provides the ability to query a user-defined backend service for this component, overriding the data endpoint configured in the ReactiveBase component. Works only when enableAppbase is true.
Accepts the following properties:
- url String[Required] URL where the data cluster is hosted.
- headers Object[optional]
 set custom headers to be sent with each server request as key/value pairs.
- method String[optional]
 set method of the API request.
- body Object[optional]
 request body of the API request. When body isn't set and method is POST, the request body is set based on the component's configured props.
- Overrides the endpoint property defined in ReactiveBase.
- If required, use
transformResponseprop to transform response in component-consumable format.
dataField
| Type | Optional | 
|---|---|
| string | Array<string | DataField*> | No | 
index field(s) to be connected to the component’s UI view. CategorySearch accepts an Array in addition to string, which is useful for searching across multiple fields with or without field weights.
Field weights allow weighted search for the index fields. A higher number implies a higher relevance weight for the corresponding field in the search results.
You can define the dataField property as an array of objects of the DataField type to set the field weights.
The DataField type has the following shape:
type DataField = {
    field: string;
    weight: number;
};database field(s) to be queried against. Accepts an Array in addition to String, useful for applying search across multiple fields. Check examples at here.
Note:
- This prop is optional only when
enableAppbaseprop is set totrueinReactiveBasecomponent.- The
dataFieldproperty asDataFieldobject is only available for ReactiveSearch version >=v3.21.0and Appbase versionv7.47.0.
size
| Type | Optional | 
|---|---|
| Number | Yes | 
number of suggestions to show. Defaults to 10.
aggregationField
| Type | Optional | 
|---|---|
| String | Yes | 
One of the most important use-cases this enables is showing DISTINCT results (useful when you are dealing with sessions, events and logs type data). It utilizes composite aggregations which are newly introduced in ES v6 and offer vast performance benefits over a traditional terms aggregation.
You can read more about it over here. You can access aggregationData using render prop as shown:
<CategorySearch
    aggregationField="original_title.keyword"
    render={({aggregationData}) => {...}}
/>If you are using an app with elastic search version less than 6, then defining this prop will result in error and you need to handle it manually using renderError prop.
It is possible to override this query by providing
defaultQueryorcustomQuery.
Note: This prop has been marked as deprecated starting v3.18.0. Please use the
distinctFieldprop instead.
aggregationSize
To set the number of buckets to be returned by aggregations.
Note: This is a new feature and only available for appbase versions >= 7.41.0.
nestedField
| Type | Optional | 
|---|---|
| String | Yes | 
Set the path of the nested type under which the dataField is present. Only applicable only when the field(s) specified in the dataField is(are) present under a nested type mapping.
categoryField
| Type | Optional | 
|---|---|
| String | Yes | 
data field which has the category values mapped.
title
| Type | Optional | 
|---|---|
| String or JSX | Yes | 
Sets the title of the component to be shown in the UI.
defaultValue
| Type | Optional | 
|---|---|
| Object | Yes | 
set the initial search query text on mount & the category.
value
| Type | Optional | 
|---|---|
| Object | Yes | 
sets the current value of the component. It sets the search query text & the category (on mount and on update). Use this prop in conjunction with the onChange props. Usage:
<CategorySearch
	{...searchProps}
	value={{
		term: 'Harry',
		category: '*',
	}}
/>onChange
| Type | Optional | 
|---|---|
| function | Yes | 
is a callback function which accepts component's current value as a parameter. It is called when you are using the value prop and the component's value changes. This prop is used to implement the controlled component behavior.
<CategorySearch
    value={this.state.value}
    onChange={(value, triggerQuery, event) => {
        this.setState({ value }, () => triggerQuery());
    }}
/>Note:
If you're using the controlled behavior than it's your responsibility to call the
triggerQuerymethod to update the query i.e execute the search query and update the query results in connected components byreactprop. It is not mandatory to call thetriggerQueryinonChangeyou can also call it in other input handlers likeonBluroronKeyPress.
enableSynonyms
| Type | Optional | 
|---|---|
| bool | Yes | 
Defaults to true, can be used to disable/enable the synonyms behavior for the search query. Read more about it here
Note:
This property only works with ReactiveSearch API i.e when
enableAppbaseis set totrueinReactiveBasecomponent.
enableQuerySuggestions
| Type | Optional | 
|---|---|
| bool | Yes | 
This prop has been marked as deprecated starting v3.12.6. Please use the enablePopularSuggestions prop instead.
enablePopularSuggestions
| Type | Optional | 
|---|---|
| bool | Yes | 
Defaults to false. When enabled, it can be useful to curate search suggestions based on actual search queries that your users are making. Read more about it over here.
Note:
Popular Suggestions only work when
enableAppbaseprop istrue.
enableRecentSearches
| Type | Optional | 
|---|---|
| Boolean | Yes | 
Defaults to false. If set to true then users will see the top recent searches as the default suggestions. Appbase.io recommends defining a unique id(userId property) in appbaseConfig prop for each user to personalize the recent searches.
Note: Please note that this feature only works when
recordAnalyticsis set totrueinappbaseConfig.
enablePredictiveSuggestions
| Type | Optional | 
|---|---|
| bool | Yes | 
Defaults to false. When set to true, it predicts the next relevant words from a field's value based on the search query typed by the user. When set to false (default), the entire field's value would be displayed. This may not be desirable for long-form fields (where average words per field value is greater than 4 and may not fit in a single line).
downShiftProps
| Type | Optional | 
|---|---|
| Object | Yes | 
allow passing props directly to the underlying Downshift component. You can read more about Downshift props here.
fieldWeights [deprecated]
| Type | Optional | 
|---|---|
| Array | Yes | 
set the search weight for the database fields, useful when dataField is an Array of more than one field. This prop accepts an array of numbers. A higher number implies a higher relevance weight for the corresponding field in the search results.
Note: The
fieldWeightsproperty has been marked as deprecated in v3.21.0 of ReactiveSearch and v7.47.0 of appbase.io and would be removed in the next major release. We recommend you to use the dataField property to define the weights.
placeholder
| Type | Optional | 
|---|---|
| String | Yes | 
set placeholder text to be shown in the component's input field. Defaults to "Search".
showIcon
| Type | Optional | 
|---|---|
| Boolean | Yes | 
whether to display a search or custom icon in the input box. Defaults to true.
iconPosition
| Type | Optional | 
|---|---|
| String | Yes | 
sets the position of the search icon. Can be set to either left or right. Defaults to right.
icon
| Type | Optional | 
|---|---|
| JSX | Yes | 
set a custom search icon instead of the default 🔍
showClear
| Type | Optional | 
|---|---|
| Boolean | Yes | 
show a clear text X icon. Defaults to false.
clearIcon
| Type | Optional | 
|---|---|
| JSX | Yes | 
set a custom icon for clearing text instead of the default cross.
autosuggest
| Type | Optional | 
|---|---|
| Boolean | Yes | 
set whether the autosuggest functionality should be enabled or disabled. Defaults to true.
strictSelection
| Type | Optional | 
|---|---|
| Boolean | Yes | 
defaults to false. When set to true, the component will only set its value and fire the query if the value was selected from the suggestion. Otherwise the value will be cleared on selection. This is only relevant with autosuggest.
defaultSuggestions
| Type | Optional | 
|---|---|
| Array | Yes | 
preset search suggestions to be shown on focus when the search box does not have any search query text set. Accepts an array of objects each having a label and value property. The label can contain either String or an HTML element.
debounce
| Type | Optional | 
|---|---|
| Number | Yes | 
set the milliseconds to wait before executing the query. Defaults to 0, i.e. no debounce.
highlight
| Type | Optional | 
|---|---|
| Boolean | Yes | 
Whether highlighting should be enabled in the returned results. Defaults to false.
highlightConfig
| Type | Optional | 
|---|---|
| Object | Yes | 
a function which returns the custom highlight settings. For example,
<DataSearch
    componentId="title"
    dataField={['title', 'text']}
    highlight
    highlightConfig={{
        'pre_tags': ['<mark>'],
        'post_tags': ['</mark>'],
        'fields': {
            'text': {},
            'title': {},
        },
        'number_of_fragments': 0,
    }}
/>highlightField
| Type | Optional | 
|---|---|
| StringorArray | Yes | 
When highlighting is enabled, this prop allows specifying the fields which should be returned with the matching highlights. When not specified, it defaults to applying highlights on the field(s) specified in the dataField prop.
customHighlight
| Type | Optional | 
|---|---|
| Function | Yes | 
a function which returns the custom highlight settings. It receives the props and expects you to return an object with the highlight key. Check out the technews demo where the DataSearch component uses a customHighlight as given below,
<CategorySearch
	componentId="title"
	dataField={['title', 'text']}
	highlight
	customHighlight={props => ({
		highlight: {
			pre_tags: ['<mark>'],
			post_tags: ['</mark>'],
			fields: {
				text: {},
				title: {},
			},
			number_of_fragments: 0,
		},
	})}
/>queryFormat
| Type | Optional | 
|---|---|
| String | Yes | 
Sets the query format, can be or or and. Defaults to or.
- or returns all the results matching any of the search query text's parameters. For example, searching for "bat man" with or will return all the results matching either "bat" or "man".
- On the other hand with and, only results matching both "bat" and "man" will be returned. It returns the results matching all of the search query text's parameters.
fuzziness
| Type | Optional | 
|---|---|
| String or Number | Yes | 
Sets a maximum edit distance on the search parameters, can be 0, 1, 2 or "AUTO". Useful for showing the correct results for an incorrect search parameter by taking the fuzziness into account. For example, with a substitution of one character, fox can become box. Read more about it in the elastic search docs.
showFilter
| Type | Optional | 
|---|---|
| Boolean | Yes | 
show as filter when a value is selected in a global selected filters view. Defaults to true.
showDistinctSuggestions
| Type | Optional | 
|---|---|
| Boolean | Yes | 
Show 1 suggestion per document. If set to false multiple suggestions may show up for the same document as searched value might appear in multiple fields of the same document, this is true only if you have configured multiple fields in dataField prop. Defaults to true.
 
Example if you have showDistinctSuggestions  is set to false and have following configurations
// Your document:
{
    "name": "Warn",
    "address": "Washington"
}
// Component:
<DataSearch dataField=['name', 'address'] .../>
// Search Query:
"wa"Then there will be 2 suggestions from the same document
as we have the search term present in both the fields
specified in dataField.
Warn
WashingtonNote: Check the above concept in action over here.
showVoiceSearch
| Type | Optional | 
|---|---|
| Boolean | Yes | 
show a voice icon in the searchbox to enable users to set voice input. Defaults to false.
searchOperators
| Type | Optional | 
|---|---|
| Boolean | Yes | 
Defaults to false. If set to true, than you can use special characters in the search query to enable an advanced search behavior.
Read more about it here.
queryString
| Type | Optional | 
|---|---|
| Boolean | Yes | 
Defaults to false. If set to true than it allows you to create a complex search that includes wildcard characters, searches across multiple fields, and more. Read more about it here.
filterLabel
| Type | Optional | 
|---|---|
| String | Yes | 
An optional label to display for the component in the global selected filters view. This is only applicable if showFilter is enabled. Default value used here is componentId.
URLParams
| Type | Optional | 
|---|---|
| Boolean | Yes | 
enable creating a URL query string param based on the search query text value. This is useful for sharing URLs with the component state. Defaults to false.
excludeFields
| Type | Optional | 
|---|---|
| String Array | Yes | 
fields to be excluded in the suggestion's query when autoSuggest is true.
includeFields
| Type | Optional | 
|---|---|
| String Array | Yes | 
fields to be included in the suggestion's query when autoSuggest is true.
render
| Type | Optional | 
|---|---|
| Function | Yes | 
You can render suggestions or composite aggregations in a custom layout by using the render prop.
It accepts an object with these properties:
- loading:- booleanindicates that the query is still in progress.
- error:- objectAn object containing the error info.
- data:- arrayAn array of parsed suggestions (original suggestions + category suggestions) along with the- promotedresults from the applied query.
- popularSuggestions:- arrayAn array of popular suggestions obtained based on search value.
- querySuggestions:- arrayThis prop has been marked as deprecated starting- v3.12.6. Please use the- popularSuggestionsprop instead.
- recentSearches:- arrayAn array of recent searches made by user if- enableRecentSearchesis set to- true.
- rawData- objectAn object of raw response as-is from elasticsearch query.
- aggregationData:- arrayAn array of composite aggregations (shaped in the form of hits) obtained from- composite aggsquery.
- promotedData:- arrayAn array of promoted results obtained from the applied query. Read More
- resultStats:- objectAn object with the following properties which can be helpful to render custom stats:- numberOfResults:- numberTotal number of results found
- time:- numberTime taken to find total results (in ms)
- hidden:- numberTotal number of hidden results found
- promoted:- numberTotal number of promoted results found
 
- categories:- arrayAn array of parsed category suggestions.
- rawCategories:- arrayAn array of original category suggestions.
- suggestions:- arrayAn array of parsed suggestions.
- rawSuggestions:- arrayAn array of original suggestions.
- value:- stringcurrent search input value i.e the search query being used to obtain categories and suggestions.
- downshiftProps:- objectprovides all the control props from- downshiftwhich can be used to bind list items with click/mouse events. Read more about it here.
<CategorySearch
	render={({
		loading,
		error,
		value,
		categories,
		suggestions,
		aggregationData,
		downshiftProps: { isOpen, getItemProps },
	}) => {
		if (loading) {
			return <div>Fetching Suggestions.</div>;
		}
		if (error) {
			return <div>Something went wrong! Error details {JSON.stringify(error)}</div>;
		}
		return isOpen && Boolean(value.length) ? (
			<div>
				{suggestions.slice(0, 5).map((suggestion, index) => (
					<div key={suggestion.value} {...getItemProps({ item: suggestion })}>
						{suggestion.value}
					</div>
				))}
				{categories.slice(0, 3).map((category, index) => (
					<div
						key={category.key}
						{...getItemProps({ item: { value: value, category: category.key } })}
					>
						{value} in {category.key}
					</div>
				))}
				{Boolean(value.length) && (
					<div {...getItemProps({ item: { label: value, value: value } })}>
						Search for "{value}" in all categories
					</div>
				)}
			</div>
		) : null;
	}}
/>Or you can also use render function as children
<CategorySearch>
        {
            ({
                loading,
                error,
                data,
                rawData,
                categories,
                rawCategories,
                suggestions,
                aggregationData,
                rawSuggestions
                value,
                downshiftProps
            }) => (
                // return custom suggestions UI to be rendered
            )
        }
</CategorySearch>renderError
| Type | Optional | 
|---|---|
| String or JSX or Function | Yes | 
can we used to render an error message in case of any error.
renderError={(error) => (
        <div>
            Something went wrong!<br/>Error details<br/>{error}
        </div>
    )
}renderNoSuggestion
| Type | Optional | 
|---|---|
| String or JSX or Function | Yes | 
can we used to render a message when there is no suggestions found.
renderNoSuggestion={() => (
        <div>
            No suggestions found
        </div>
    )
}renderQuerySuggestions
| Type | Optional | 
|---|---|
| String or JSX or Function | Yes | 
This prop has been marked as deprecated starting v3.12.6. Please use the renderPopularSuggestions prop instead.
renderPopularSuggestions
| Type | Optional | 
|---|---|
| String or JSX or Function | Yes | 
You can render popular suggestions in a custom layout by using the renderQuerySuggestions prop.
It accepts an object with these properties:
- loading:- booleanindicates that the query is still in progress.
- error:- objectAn object containing the error info.
- data:- arrayAn array of popular suggestions obtained based on search value.
- value:- stringcurrent search input value i.e the search query being used to obtain suggestions.
- downshiftProps:- objectprovides all the control props from- downshiftwhich can be used to bind list items with click/mouse events. Read more about it here.
    <DataSearch
        dataField={['original_title', 'original_title.search']}
        componentId="BookSensor"
        enablePopularSuggestions
        renderPopularSuggestions={({
            value,
            data: suggestions,
            downshiftProps: { isOpen, getItemProps, highlightedIndex },
        }) =>
            isOpen &&
            Boolean(value.length) && (
                <div>
                    {(suggestions || []).map((suggestion, index) => (
                        <div
                            style={{
                                padding: 10,
                                background:
                                    index === highlightedIndex
                                        ? '#eee'
                                        : 'transparent',
                                color: 'green',
                            }}
                            key={suggestion.value}
                            {...getItemProps({ item: suggestion })}
                        >
                            {suggestion.value}
                        </div>
                    ))}
                </div>
            )
        }
    />getMicInstance
| Type | Optional | 
|---|---|
| Function | Yes | 
You can pass a callback function to get the instance of SpeechRecognition object, which can be used to override the default configurations.
renderMic
| Type | Optional | 
|---|---|
| String or JSX or Function | Yes | 
can we used to render the custom mic option.
It accepts an object with the following properties:
- handleClick:- functionneeds to be called when the mic option is clicked.
- status:- stringis a constant which can have one of these values:
 - INACTIVE- mic is in inactive state i.e not listening
 - STOPPED- mic has been stopped by the user
 - ACTIVE- mic is listening
 - DENIED- permission is not allowed
    renderMic = {({ handleClick, status }) => {
                switch(status) {
                    case 'ACTIVE':
                        return <img src="/active_mic.png" onClick={handleClick} />
                    case 'DENIED':
                    case 'STOPPED':
                        return <img src="/mute_mic.png" onClick={handleClick} />
                    default:
                        return <img src="/inactive_mic.png" onClick={handleClick} />
                }
    }}onSuggestions
| Type | Optional | 
|---|---|
| Function | Yes | 
You can pass a callback function to listen for the changes in suggestions. The function receives suggestions list.
onError
| Type | Optional | 
|---|---|
| Function | Yes | 
You can pass a callback function that gets triggered in case of an error and provides the error object which can be used for debugging or giving feedback to the user if needed.
recentSearchesIcon
| Type | Optional | 
|---|---|
| JSX | Yes | 
You can use a custom icon in place of the default icon for the recent search items that are shown when enableRecentSearches prop is set to true. You can also provide styles using the recent-search-icon key in the innerClass prop.
    <CategorySearch
        ...
        enableRecentSearches
        innerClass={{
            'recent-search-icon': '...',
        }}
        recentSearchesIcon={<RecentIcon />}
    />popularSearchesIcon
| Type | Optional | 
|---|---|
| JSX | Yes | 
You can use a custom icon in place of the default icon for the popular searches that are shown when enablePopularSuggestions prop is set to true. You can also provide styles using the popular-search-icon key in the innerClass prop.
    <CategorySearch
        ...
        enablePopularSuggestions
        innerClass={{
            'popular-search-icon': '...'
        }}
        popularSearchesIcon={<PopularIcon />}
    />distinctField
| Type | Optional | 
|---|---|
| String | Yes | 
This prop returns only the distinct value documents for the specified field. It is equivalent to the DISTINCT clause in SQL. It internally uses the collapse feature of Elasticsearch. You can read more about it over here.
distinctFieldConfig
| Type | Optional | 
|---|---|
| Object | Yes | 
This prop allows specifying additional options to the distinctField prop. Using the allowed DSL, one can specify how to return K distinct values (default value of K=1), sort them by a specific order, or return a second level of distinct values. distinctFieldConfig object corresponds to the inner_hits key's DSL.  You can read more about it over here.
<CategorySearch
	....
	distinctField="authors.keyword"
	distinctFieldConfig={{
		inner_hits: {
			name: 'most_recent',
			size: 5,
			sort: [{ timestamp: 'asc' }],
		},
		max_concurrent_group_searches: 4,
	}}
/>> Note: In order to use the `distinctField` and `distinctFieldConfig` props, the `enableAppbase` prop must be set to true in `ReactiveBase`.Demo
Styles
CategorySearch component supports an innerClass prop to provide styles to the sub-components of CategorySearch. These are the supported keys:
- title
- input
- list
- recent-search-icon
- popular-search-icon
Read more about it here.
Extending
CategorySearch component can be extended to:
- customize the look and feel with className,style,
- update the underlying DB query with customQuery,
- connect with external interfaces using beforeValueChange,onValueChange,onValueSelectedandonQueryChange,
- specify how search suggestions should be filtered using reactprop,
- use your own function to render suggestions using parseSuggestionprop. It expects an object back for eachsuggestionhaving keyslabelandvalue. The query is run against thevaluekey andlabelis used for rendering the suggestions.labelcan be eitherStringor JSX. For example,
<CategorySearch
  ...
  parseSuggestion={(suggestion) => ({
    label: (
        <div>
            {suggestion._source.original_title} by
            <span style={{ color: 'dodgerblue', marginLeft: 5 }}>
                {suggestion._source.authors}
            </span>
        </div>
    ),
    value: suggestion._source.original_title,
    source: suggestion._source  // for onValueSelected to work with parseSuggestion
  })}
/>- it's also possible to take control of rendering individual suggestions with parseSuggestionprop or the entire suggestions rendering using therenderprop. Check the custom suggestions recipe for more info.
- 
add the following synthetic events to the underlying inputelement:- onBlur
- onFocus
- onKeyPress
- onKeyDown
- onKeyUp
- autoFocus
 Note: - All these events accepts the triggerQueryas a second parameter which can be used to trigger theCategorySearchquery with the current selected value (useful to customize the search query execution).
- There is a known issue with onKeyPresswhenautosuggestis set to true. It is recommended to useonKeyDownfor the consistency.
 
<CategorySearch
  ...
  className="custom-class"
  style={{"paddingBottom": "10px"}}
  customQuery={
    function(value, props, category) {
      return {
        query: {
            match: {
                data_field: "this is a test"
            }
        }
      }
    }
  }
  beforeValueChange={
    function(value) {
      // called before the value is set
      // returns a promise
      return new Promise((resolve, reject) => {
        // update state or component props
        resolve()
        // or reject()
      })
    }
  }
  onValueChange={
    function(value) {
      console.log("current value: ", value)
      // set the state
      // use the value with other js code
    }
  }
  onValueSelected={
    function(value, category, cause, source) {
      console.log("current value and category: ", value, category)
    }
  }
  onQueryChange={
    function(prevQuery, nextQuery) {
      // use the query with other js code
      console.log('prevQuery', prevQuery);
      console.log('nextQuery', nextQuery);
    }
  }
  // specify how and which suggestions are filtered using `react` prop.
  react={
    "and": ["pricingFilter", "dateFilter"],
    "or": ["searchFilter"]
  }
/>className
| Type | Optional | 
|---|---|
| String | Yes | 
CSS class to be injected on the component container.
style
| Type | Optional | 
|---|---|
| Object | Yes | 
CSS styles to be applied to the CategorySearch component.
customQuery
| Type | Optional | 
|---|---|
| Function | Yes | 
takes value, props and category as parameters and returns the data query to be applied to the component, as defined in Elasticsearch Query DSL.
Note: customQuery is called on value changes in the CategorySearch component as long as the component is a part of react dependency of at least one other component.
defaultQuery
| Type | Optional | 
|---|---|
| Function | Yes | 
takes value, props and category as parameters and returns the data query to be applied to the source component, as defined in Elasticsearch Query DSL, which doesn't get leaked to other components. In simple words, defaultQuery prop allows you to modify the query to render the suggestions when autoSuggest is enabled.
Read more about it here.
beforeValueChange
| Type | Optional | 
|---|---|
| Function | Yes | 
is a callback function which accepts component's future value as a parameter and returns a promise. It is called everytime before a component's value changes. The promise, if and when resolved, triggers the execution of the component's query and if rejected, kills the query execution. This method can act as a gatekeeper for query execution, since it only executes the query after the provided promise has been resolved.
Note:
If you're using Reactivesearch version >=
3.3.7,beforeValueChangecan also be defined as a synchronous function.valueis updated by default, unless you throw anErrorto reject the update. For example:
beforeValueChange = value => {
    // The update is accepted by default
    if (value && value.toLowerCase().contains('Social')) {
        // To reject the update, throw an error
        throw Error('Search value should not contain social.');
    }
};onValueChange
| Type | Optional | 
|---|---|
| Function | Yes | 
is a callback function which accepts component's current value as a parameter. It is called everytime the component's value changes. This prop is handy in cases where you want to generate a side-effect on value selection. For example: You want to show a pop-up modal with the valid discount coupon code when a user searches for a product in a CategorySearch.
onValueSelected
| Type | Optional | 
|---|---|
| Function | Yes | 
is called with the value and the category selected via user interaction. If the search was performed by selecting the 'in all categories' suggestion, category is received as *. If it was performed for one of the categorized suggestion, the category is received. In other cases (either searching without selecting a suggestion or picking an uncategorized suggestion), category is received as null. It works only with autosuggest and is called whenever a suggestion is selected or a search is performed by pressing enter key. It also passes the cause of action and the source object if the cause of action was 'SUGGESTION_SELECT'. The source would be null if a category based suggestion was selected. The possible causes are:
- 'SUGGESTION_SELECT'
- 'ENTER_PRESS'
- 'CLEAR_VALUE'
- 'SEARCH_ICON_CLICK'
onQueryChange
| Type | Optional | 
|---|---|
| Function | Yes | 
is a callback function which accepts component's prevQuery and nextQuery as parameters. It is called everytime the component's query changes. This prop is handy in cases where you want to generate a side-effect whenever the component's query would change.
react
| Type | Optional | 
|---|---|
| Object | Yes | 
specify dependent components to reactively update CategorySearch's suggestions.
- key Stringone ofand,or,notdefines the combining clause.- and clause implies that the results will be filtered by matches from all of the associated component states.
- or clause implies that the results will be filtered by matches from at least one of the associated component states.
- not clause implies that the results will be filtered by an inverse match of the associated component states.
 
- value String or Array or Object- Stringis used for specifying a single component by its- componentId.
- Arrayis used for specifying multiple components by their- componentId.
- Objectis used for nesting other key clauses.
 
index
| Type | Optional | 
|---|---|
| String | Yes | 
The index prop can be used to explicitly specify an index to query against for this component. It is suitable for use-cases where you want to fetch results from more than one index in a single ReactiveSearch API request. The default value for the index is set to the app prop defined in the ReactiveBase component.
Note: This only works when
enableAppbaseprop is set to true inReactiveBase.
focusShortcuts
| Type | Optional | 
|---|---|
| `Array<string | number>` | 
A list of keyboard shortcuts that focus the search box. Accepts key names and key codes. Compatible with key combinations separated using '+'. Defaults to ['/'].
autoFocus
| Type | Optional | 
|---|---|
| boolean | Yes | 
When set to true, search box is auto-focused on page load. Defaults to false.
addonBefore
| Type | Optional | 
|---|---|
| `string | JSX` | 
The HTML markup displayed before (on the left side of) the searchbox input field. Users can use it to render additional actions/ markup, eg: a custom search icon hiding the default.
 
          
          
 <CategorySearch
    showIcon={false}
    addonBefore={
        <img
            src="https://img.icons8.com/cute-clipart/64/000000/search.png"
            height="30px"
        />
    }
    id="search-component"
    ...
 />addonAfter
| Type | Optional | 
|---|---|
| `string | JSX` | 
The HTML markup displayed after (on the right side of) the searchbox input field. Users can use it to render additional actions/ markup, eg: a custom search icon hiding the default.
 
          
          
 <CategorySearch
    showIcon={false}
    addonAfter={
        <img
            src="https://img.icons8.com/cute-clipart/64/000000/search.png"
            height="30px"
        />
    }
    id="search-component"
    ...
 />expandSuggestionsContainer
| Type | Optional | 
|---|---|
| boolean | Yes | 
When set to false the width of suggestions dropdown container is limited to the width of searchbox input field. Defaults to true.

<CategorySearch
    expandSuggestionsContainer={false}
    addonBefore={
          <img {...imgProps} />
    }
    addonAfter={
          <img {...imgProps} />
    }
    id="search-component"
    {...imgProps}
/>