Router events
Learn about how to subscribe to and handle router events.
You can use the lifecycle hooks (instance and shared) to intercept different stages of the navigation when you are working with the routed components directly. However, if you want to tap into different navigation phases from a non-routed component, such as standalone service or a simple custom element, then you need to leverage router events. This section discusses that.
Emitted events
The router emits the following events.
au:router:location-change
: Emitted when the browser location is changed via thepopstate
andhashchange
events.au:router:navigation-start
: Emitted by router before executing a routing instruction; or in other words, before performing navigation.au:router:navigation-end
: Emitted when the navigation is completed successfully.au:router:navigation-cancel
: Emitted when the navigation is cancelled via a non-true
return value fromcanLoad
orcanUnload
lifecycle hooks.au:router:navigation-error
: Emitted when the navigation is erred.
Subscribing to the events
The events can be subscribed to using the event aggregator. However, there is another type-safe alternative to that.
To this end, inject the IRouterEvents
and use the IRouterEvents#subscribe
.
Note that the event-data for every event has a different type. When you are using TypeScript, using IRouterEvents
correctly types the event-data to the corresponding event type and naturally provides you with intellisense. This type information won't be available if you subscribe to the events using the event aggregator.
The following example demonstrates the usage of router events, where the root component displays a spinner at the start of navigation, and removes it when the navigation ends.
This is shown in action below.
Current route
Sometimes, you only need the information about the current route. In that case, you can surely subscribe to the au:router:navigation-end
event and get the current route from the event data. For the ease of use, there is a ICurrentRoute
exposed from router-lite that does exactly the same. You can directly inject it to your class to use it and avoid the boilerplate code altogether. Below is an example of how you can use it.
Last updated