history
history({ // Optional parameters windowTitle: function, createURL: function, parseURL: function, writeDelay: number, getLocation: function, push: function, start: function, dispose: function, cleanUrlOnDispose: boolean, });
1
import { history } from 'instantsearch.js/es/lib/routers';
About this widget
You are currently reading the documentation for InstantSearch.js V4. Read our migration guide to learn how to upgrade from V3 to V4. You can still access the V3 documentation for this page.
The history
router is the default for the instantsearch
object’s routing option.
The router provides an API that lets you customize some of its behaviors. To get a sense of what you can do with the API, see the Routing URLs guide.
Examples
1
2
3
4
5
6
instantsearch({
// ...
routing: {
router: history(),
},
});
Options
Parameter | Description | ||
---|---|---|---|
windowTitle
|
type: function
Optional
This function lets you dynamically customize the window title based on the provided |
||
Copy
|
|||
createURL
|
type: function
Optional
This function lets you directly change the format of URLs that are created and rendered for the browser URL bar or widgets. It’s called every time InstantSearch needs to create a URL. The provided options are:
|
||
Copy
|
|||
parseURL
|
type: function
Optional
This function is responsible for parsing the URL string back into a
|
||
Copy
|
|||
writeDelay
|
type: number
default: 400
Optional
This option controls the number of milliseconds the router waits before writing the new URL to the browser. You can think about it this way: “400 ms after the last user action, the URL is pushed to the browser”. This helps reduce:
400 ms is a typically a pretty good |
||
Copy
|
|||
getLocation
|
type: function
default: () => window.location
Optional
This function lets you return a custom implementation of By default, it generates an error if there isn’t a custom implementation outside a browser environment. |
||
Copy
|
|||
push
|
type: function
Optional
This function lets you customize the behavior of the router when it pushes a new URL so that you can delegate it to a third party router or set a custom history state. It’s called every time users refine the UI and the history timer completes. The provided option is:
|
||
Copy
|
|||
start
|
type: function
Optional
This function is called when the router starts. You can use it to synchronize InstantSearch’s router with a third party router by hooking events to it. The provided option is:
|
||
Copy
|
|||
dispose
|
type: function
Optional
This function is called when the router gets disposed of. You can use it to detach events you may have set in |
||
Copy
|
|||
cleanUrlOnDispose
|
since: v4.63.0
type: boolean
default: true
Optional
This option controls whether the URL is cleaned up from active refinements when the router is disposed of. It’s useful when the search experience is in a modal, to remove query parameters from the URL when the modal is closed. |
||
Copy
|