history
Angular InstantSearch isn’t compatible with Angular’s Ivy view engine. We’re investigating how best to support this. For more information and to vote for Algolia’s support of Angular 16 and beyond, see the GitHub issue Algolia Support for Angular InstantSearch
import { history } from 'instantsearch.js/es/lib/routers'; history({ // Optional parameters windowTitle: function, createURL: function, parseURL: function, writeDelay: number, getLocation: function, push: function, start: function, dispose: function, });
About this widget
The history
router is the default for the ais-instantsearch
object’s routing prop.
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
7
8
9
10
11
12
13
14
15
16
17
import { history } from 'instantsearch.js/es/lib/routers';
@Component({
template: `
<ais-instantsearch [config]="config">
<!-- Widgets -->
</ais-instantsearch>
`
})
export class AppComponent {
config = {
// ...
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
|