Marginalia

Introduce Router Scroller in Angular v6.1

With Angular’s next minor update, a new feature will be out.

Its name is Router Scroller.

For long-time people using Angular it is a long-awaited feature that is so glad that tears come out.

In this article, for the strange one, “I can not wait next week beta.1! I want to try it now!”, I will also show you how to try it with the latest build.

Router Scroller

The Router Scroller provides functions related to scrolling to the Angular Router.

With Router Scroller, you can do the following things.

  • Restore to scroll position before transition when browser back
  • Fragmented URL like #foo and automatically scroll to elements with corresponding ID

If both of them are static HTML pages, the browser will do it automatically. And today, the same behavior can be easily introduced even by SPA by Angular Router.

I will introduce about each.

Scroll Position Restoration

Router Scroller The first function is to store and restore the scroll position.

Every time Router navigates, it stores the scroll position at that point.

And when the screen returns to the previous screen by the return operation of the browser, it automatically restores to the stored scroll position.

Since the timing is controlled by the Router in this restoration process, the scroll moves after the routing process of the previous screen is finished.

Anchor Scrolling

Another function is to scroll to an element with a corresponding ID if there is a fragment like #foo in the URL.

This is also a function commonly used in static HTML pages, but in Angular it did not work because the browser searches for the element earlier than component generation by Router.

This time Router has the Anchor Scrolling function, so even with Angular application it is possible to scroll by #foo.

In addition to navigation by Router, it scrolls in the same way even if you reload.

How to use

Both Scroll Position Restoration and Anchor Scrolling are disabled by default at v6.1.0.

So, you need to set RouterModule to enable it.

ScrollPositionRestoration and anchorScrolling have been added to the option of the second argument of RouterModule.forRoot method.

If set to ’enabled’ respectively, the function is enabled.

That’s all there is to it.

@NgModule({
  imports: [
    RouterModule.forRoot(routes, {
      scrollPositionRestoration: "enabled",
      anchorScrolling: "enabled"
    })
  ],
  exports: [RouterModule]
})
export class AppRoutingModule {}

Scroll Offset

You can also specify an offset for the Router Scroller.

If you want to shift the scroll position, such as when the header is fixed or sticky, set scrollOffset with the option of the second argument ofRouterModule.forRoot method.

In the previous example of Anchor Scrolling, since the upper header is sticky, the y coordinate is shifted down by 64 px.

@NgModule({
  imports: [
    RouterModule.forRoot(routes, {
      scrollPositionRestoration: "enabled",
      anchorScrolling: "enabled",
      scrollOffset: [0, 64] // [x, y]
    })
  ],
  exports: [RouterModule]
})
export class AppRoutingModule {}

Learn more

For those who want to know more, it would be better to read the commit content of the function.

The sample code of this article is published on GitHub.

Thanks.