<ToggleRefinement>
This is the React InstantSearch v7 documentation. React InstantSearch v7 is the latest version of React InstantSearch and the stable version of React InstantSearch Hooks.
If you were using React InstantSearch v6, you can upgrade to v7.
If you were using React InstantSearch Hooks, you can still use the React InstantSearch v7 documentation, but you should check the upgrade guide for necessary changes.
If you want to keep using React InstantSearch v6, you can find the archived documentation.
1
import { ToggleRefinement } from 'react-instantsearch';
About this widget
<ToggleRefinement>
is a widget that provides an on/off filter based on an attribute value.
For example, you can use this widget to only display products that apply for free shipping, or recipes that are gluten-free.
Make sure to declare the provided attribute
as an attribute for faceting.
You can also create your own UI with
useToggleRefinement()
.
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import algoliasearch from 'algoliasearch/lite';
import { InstantSearch, ToggleRefinement } from 'react-instantsearch';
const searchClient = algoliasearch('YourApplicationID', 'YourSearchOnlyAPIKey');
function App() {
return (
<InstantSearch indexName="instant_search" searchClient={searchClient}>
<ToggleRefinement attribute="free_shipping" />
</InstantSearch>
);
}
Props
Parameter | Description | ||
---|---|---|---|
attribute
|
type: string
Required
The name of the attribute in the records. To avoid unexpected behavior, you can’t use the same |
||
Copy
|
|||
label
|
type: string
Optional
The label to display for the checkbox. |
||
Copy
|
|||
on
|
type: boolean|string|number
Optional
The value of the refinement to apply on the attribute when checked. |
||
Copy
|
|||
off
|
type: boolean|string|number
Optional
The value of the refinement to apply on the attribute when unchecked. |
||
Copy
|
|||
classNames
|
type: Partial<ToggleRefinementClassNames>
Optional
The CSS classes you can override and pass to the widget’s elements. It’s useful to style widgets with class-based CSS frameworks like Bootstrap or Tailwind CSS.
|
||
Copy
|
|||
...props
|
type: React.ComponentProps<'div'>
Optional
Any |
||
Copy
|
Hook
React InstantSearch let you create your own UI for the <ToggleRefinement>
widget with useToggleRefinement()
. Hooks provide APIs to access the widget state and interact with InstantSearch.
The useToggleRefinement()
Hook accepts parameters and returns APIs.
Usage
First, create your React component:
import { useToggleRefinement } from 'react-instantsearch';
function CustomToggleRefinement(props) {
const {
value,
canRefine,
refine,
sendEvent,
createURL,
} = useToggleRefinement(props);
return <>{/* Your JSX */}</>;
}
Then, render the widget:
<CustomToggleRefinement {...props} />
Parameters
Hooks accept parameters. You can pass them manually, or forward the props from your custom component.
When you provide a function to Hooks, make sure to pass a stable reference to avoid rendering endlessly (for example, with useCallback()
). Objects and arrays are memoized; you don’t need to stabilize them.
Parameter | Description | ||
---|---|---|---|
attribute
|
type: string
Required
The name of the attribute in the records. To avoid unexpected behavior, you can’t use the same |
||
Copy
|
|||
on
|
type: boolean|string|number
Optional
The value of the refinement to apply on the attribute when checked. |
||
Copy
|
|||
off
|
type: boolean|string|number
Optional
The value of the refinement to apply on the attribute when unchecked. |
||
Copy
|
APIs
Hooks return APIs, such as state and functions. You can use them to build your UI and interact with React InstantSearch.
Parameter | Description | ||
---|---|---|---|
value
|
type: ToggleRefinementValue
The current refinement.
Copy
|
||
canRefine
|
type: boolean
Whether the search state can be refined. |
||
Copy
|
|||
refine
|
type: ({ isRefined: boolean }) => void
Updates to the next state by applying the toggle refinement. |
||
Copy
|
|||
sendEvent
|
type: (eventType: string, facetValue: string, eventName?: string) => void
A function to send |
||
Copy
|
|||
createURL
|
type: () => string
Generates a URL for the next state. |
||
Copy
|
Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from 'react';
import { useToggleRefinement } from 'react-instantsearch';
function CustomToggleRefinement(props) {
const { value, refine } = useToggleRefinement(props);
return (
<label>
<input
type="checkbox"
checked={value.isRefined}
onChange={(event) => {
refine({ isRefined: !event.target.checked });
}}
/>
<span>{props.attribute}</span>
</label>
);
}