SearchBox
<SearchBox // Optional parameters defaultRefinement={string} autoFocus={boolean} searchAsYouType={boolean} showLoadingIndicator={boolean} submit={React.Node} reset={React.Node} loadingIndicator={React.Node} focusShortcuts={string[]} onSubmit={function} onReset={function} on*={function} translations={object} />
About this widget
We released React InstantSearch Hooks, a new InstantSearch library for React. We recommend using React InstantSearch Hooks in new projects or upgrading from React InstantSearch.
The SearchBox
widget is used to let the user perform a text-based query.
This usually is the main entry point to start the search in an InstantSearch context. It’s usually placed at the top of a search experience, so that the user can start searching right away.
Examples
1
2
3
import { SearchBox } from 'react-instantsearch-dom';
<SearchBox />
Props
defaultRefinement
|
type: string
Optional
Provides a default refinement value when component is mounted. |
||
Copy
|
|||
autoFocus
|
type: boolean
default: false
Optional
Whether the search box must be focused on render. |
||
Copy
|
|||
searchAsYouType
|
type: boolean
default: true
Optional
Whether a search needs to be made on every change to the query. If |
||
Copy
|
|||
showLoadingIndicator
|
type: boolean
default: false
Optional
Displays that the search is loading. This only happens after a certain amount of time to avoid a blinking effect. The timer can be configured with the |
||
Copy
|
|||
submit
|
type: React.Node
Optional
Changes the appearance of the default submit button (magnifying glass). |
||
Copy
|
|||
reset
|
type: React.Node
Optional
Changes the appearance of the default reset button (cross). |
||
Copy
|
|||
loadingIndicator
|
type: React.Node
Optional
Changes the appearance of the default loading indicator (spinning circle). |
||
Copy
|
|||
focusShortcuts
|
type: string[]
default: ['s','/']
Optional
A list of keyboard shortcuts that focus the search box. Accepts key names and key codes. |
||
Copy
|
|||
onSubmit
|
type: function
Optional
Intercepts |
||
Copy
|
|||
onReset
|
type: function
Optional
Intercepts |
||
Copy
|
|||
on*
|
type: function
Optional
Listens to any event sent from the |
||
Copy
|
|||
translations
|
type: object
Optional
A mapping of keys to translation values.
|
||
Copy
|
HTML output
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="ais-SearchBox">
<form class="ais-SearchBox-form" novalidate>
<input class="ais-SearchBox-input" autocomplete="off" autocorrect="off" autocapitalize="off" placeholder="Search for products" spellcheck="false" maxlength="512" type="search" value="" />
<button class="ais-SearchBox-submit" type="submit" title="Submit the search query.">
<svg class="ais-SearchBox-submitIcon" xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 40 40">
...
</svg>
</button>
<button class="ais-SearchBox-reset" type="reset" title="Clear the search query." hidden>
<svg class="ais-SearchBox-resetIcon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" width="10" height="10">
...
</svg>
</button>
<span class="ais-SearchBox-loadingIndicator" hidden>
<svg width="16" height="16" viewBox="0 0 38 38" xmlns="http://www.w3.org/2000/svg" stroke="#444" class="ais-SearchBox-loadingIcon">
...
</svg>
</span>
</form>
</div>
Customize the UI with connectSearchBox
If you want to create your own UI of the SearchBox
widget or use another UI library, you can use connectors.
Connectors are higher-order components. They encapsulate the logic for a specific kind of widget and they provide a way to interact with the InstantSearch context.
They have an outer component API that we call exposed props, and they provide some other props to the wrapped components which are called the provided props.
This connector is also used to build other widgets: VoiceSearch
It’s a 3-step process:
// 1. Create a React component
const SearchBox = () => {
// return the DOM output
};
// 2. Connect the component using the connector
const CustomSearchBox = connectSearchBox(SearchBox);
// 3. Use your connected widget
<CustomSearchBox />
Create a React component
const SearchBox = ({
string currentRefinement,
boolean isSearchStalled,
function refine,
}) => {
// return the DOM output
};
Provided Props
currentRefinement
|
type: string
The current query. |
||
Copy
|
|||
isSearchStalled
|
type: boolean
Whether InstantSearch has detected that searches are stalled. |
||
Copy
|
|||
refine
|
type: function
Changes the current query. |
||
Copy
|
Create and instantiate your connected widget
const CustomSearchBox = connectSearchBox(SearchBox);
<CustomSearchBox
// optional parameters
defaultRefinement={string}
/>
Exposed Props
defaultRefinement
|
type: string
Optional
Provides a default value for the query. |
||
Copy
|
Full example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { connectSearchBox } from 'react-instantsearch-dom';
const SearchBox = ({ currentRefinement, isSearchStalled, refine }) => (
<form noValidate action="" role="search">
<input
type="search"
value={currentRefinement}
onChange={event => refine(event.currentTarget.value)}
/>
<button onClick={() => refine('')}>Reset query</button>
{isSearchStalled ? 'My search is stalled' : ''}
</form>
);
const CustomSearchBox = connectSearchBox(SearchBox);