Angular Material Pagination Datasource

December 19, 2019 (updated May 12, 2020)

In the course of this article we’re developing a reactive datasource for the Angular Material library that’ll be reusable for many different paginated endpoints allowing you to configure search and sorting inputs on a per-instance basis. The final result is available on StackBlitz.

The data source developed in this article is available in the ngx-pagination-data-source library 📚

I’d appreciate it if you’d give it a star ⭐️ on GitHub, this helps to let people know about it

Although there is a bunch of stuff you can do with JavaScript, on many occasions we’re using it to fetch and display some data. In Angular, the fetching part is mostly done via HTTP while the displaying part can be performed by a variety of different user-interface components. This could be a table or a list or a tree-like structure or whatever else you might require.

Angular Material offers a couple components that could be used here - such as the table component. The creators even anticipated the need to disconnect data retrieval from data display and are therefore providing us with the concept of a DataSource.

For most real-world applications, providing the table a DataSource instance will be the best way to manage data. The DataSource is meant to serve a place to encapsulate any sorting, filtering, pagination, and data retrieval logic specific to the application.

So, a datasource therefore contains all logic required for sorting, filtering and paginating data.

Often times the amount of data we’d like to display is too big to be fetched in one batch. You can get around this by slicing your data and delivering it through pagination. Users will then be able to navigate from page to page smoothly. This is something we’ll probably need for many different views that display data - it makes sense to encapsulate this behaviour so we don’t have to write it over and over again.

Pagination and Sorting Datasource

Let’s have a look at a datasource implementation enabling you to sort data and fetch consecutive pages. First, we’ll simplify the Material datasource a bit:

import { DataSource } from "@angular/cdk/collections";
import { Observable } from "rxjs";
 
export interface SimpleDataSource<T> extends DataSource<T> {
  connect(): Observable<T[]>;
  disconnect(): void;
}

Usually, the methods connect() and disconnect() would accept a CollectionViewer, however, it seems ill-advised to have the component displaying the data also decide which part of the data it’s displaying. The official datasource for the Material table is ignoring the parameter as well.

Next we’ll define some reusable types for paginated data in a separate file called page.ts.

import { Observable } from "rxjs";
 
export interface Sort<T> {
  property: keyof T;
  order: "asc" | "desc";
}
 
export interface PageRequest<T> {
  page: number;
  size: number;
  sort?: Sort<T>;
}
 
export interface Page<T> {
  content: T[];
  totalElements: number;
  size: number;
  number: number;
}
 
export type PaginationEndpoint<T> = (req: PageRequest<T>) => Observable<Page<T>>;

The generic parameter T always refers to the type of data we’re dealing with - later on in our example it’s User.

The Sort<T> type defines a sorting to be applied (aka. send to the server) to the data. This sorting could be created through the headers of a Material table or via a selection component combined with a button group.

A PageRequest<T> is what we’ll eventually pass to a service which in turn will kick off a corresponding HTTP request. This service will then respond with a Page<T> containing the requested data.

A PaginationEndpoint<T> is a function accepting a PageRequest<T> and returning an RxJS stream aka. observable containing a corresponding Page<T>.

Now we can put these types to use by implementing our paginated datasource as follows:

import { BehaviorSubject, Observable, Subject } from "rxjs";
import { switchMap, startWith, map, shareReplay } from "rxjs/operators";
import { Page, Sort, PaginationEndpoint } from "./page";
 
export class PaginationDataSource<T> implements SimpleDataSource<T> {
  private pageNumber = new Subject<number>();
  private sort: BehaviorSubject<Sort<T>>;
 
  public page$: Observable<Page<T>>;
 
  constructor(endpoint: PaginationEndpoint<T>, initialSort: Sort<T>, size = 20) {
    this.sort = new BehaviorSubject<Sort<T>>(initialSort);
    this.page$ = this.sort.pipe(
      switchMap((sort) =>
        this.pageNumber.pipe(
          startWith(0),
          switchMap((page) => endpoint({ page, sort, size }))
        )
      ),
      shareReplay(1)
    );
  }
 
  sortBy(sort: Partial<Sort<T>>): void {
    const lastSort = this.sort.getValue();
    const nextSort = { ...lastSort, ...sort };
    this.sort.next(nextSort);
  }
 
  fetch(page: number): void {
    this.pageNumber.next(page);
  }
 
  connect(): Observable<T[]> {
    return this.page$.pipe(map((page) => page.content));
  }
 
  disconnect(): void {}
}

Let’s go through this step-by-step starting at the constructor. It accepts three parameters:

  • a paginated endpoint which we’ll use to fetch pages
  • an initial sorting to start with
  • an optional size for the pages to fetch, defaulting to 20 items per page

The field pageNumber is initialized with a RxJS Subject - a data sink through which page numbers will flow one-by-one when a user navigates between sites. The method fetch(page: number) allows us to tell our datasource which page to retrieve from the server upon user interaction.

We initialize the instance property sort with a behavior subject. This data sink enables us to retrieve its latest value synchronously via getValue(). In return we’ll have to provide an initial value - we’ll use the initial sorting passed into our constructor. The method sortBy(sort: Partial<Sort<T>>) accepts a partial representation of our sorting type - e.g. only the property for which we want to sort next while the sorting direction remains the same. To facilitate this, we’ll retrieve the latest complete sorting inside sortBy and then merge it with the possibly partial sorting through the spread operator. This way old query properties won’t be overridden when only one parameter is updated.

Our datasource will expose a stream of pages through the property page$. We construct this observable stream based on changes to the sorting. Now, anytime a new sorting is emitted, we’ll switch to a stream of page numbers by using the switchMap operator. As long as the sorting remains the same, we’ll be only looking at page numbers - starting with 0 for the first site, configured through the startWith operator.

When the datasource is supposed to fetch a different page - triggered by a call to fetch(page: number) - we’ll query the paginated endpoint with the required parameters. Eventually this observable now provides data pages to possibly multiple consuming components. Therefore you might use shareReplay to synchronize those subscriptions while providing late subscribers with the most recent page.

Finally, inside connect() we just provide a stream of lists of items by mapping any page to its contents using the map operator. This method will eventually be called by the Material table or any other component compatible with the DataSource interface. You might be wondering why we don’t map our pages directly to just their contents - that’s because we need other page properties like size or number which can then be used by a MatPaginator to allow users to navigate between pages. Therefore, it’s important that we keep the whole pages inside page$.

The disconnect() method won’t have to do anything here - our datasource will close automatically when all consuming components unsubscribe.

Using the Datasource in a Component

Inside a component that is dealing with specific data we can now utilise our datasource with the Material table. We do this by creating a new instance and passing a function that’ll forward page requests to a corresponding service. We also pass a default sorting.

The UserService will be responsible for converting the PageRequest<User> to a proper HTTP request that is in line with your server API inside the page() method.

@Component(...)
export class UsersComponent  {
 
    initialSort: Sort<T> = {property: 'username', order: 'desc'}
 
    dataSource = new PaginationDataSource<User>(
      request => this.users.page(request),
      this.initialSort
    )
 
    constructor(private users: UserService) {}
}

Here, the UserService is responsible for transforming a PageRequest<User> into a HTTP request which eventually provides a Page<User>. The method page(request: PageRequest<User>) might look as follows - depending on the shape in which your server expects such requests. Where necessary, you might also have to adapt the server response with the map operator to satisfy the Page<User> type. Alternatively you could also adapt this data type to your needs.

page(request: PageRequest<User>, query: UserQuery): Observable<Page<User>> {
    const params = {
      pageNumber: request.page,
      pageSize: request.size,
      sortOrder: request.sort.order,
      sortProperty: request.sort.property
    }
    return this.http.get<Page<User>>('/users', {params})
}

The data source can now be passed to a Material table (or any other component that can work with data sources) in the component template. We’ll also define a MatPaginator allowing the user to switch pages. The paginator can also easily consume the stream of pages from our datasource through the AsyncPipe and call upon dataSource.fetch(page: number) to get a different page.

We’ll provide a selection and a button group calling sortBy() on the data source to change the sorting.

<mat-form-field>
  <mat-label>Order by</mat-label>
  <mat-select
    [value]="initialSort.property"
    (selectionChange)="dataSource.sortBy({property: $event.value})"
  >
    <mat-option value="id">ID</mat-option>
    <mat-option value="username">Username</mat-option>
  </mat-select>
</mat-form-field>
<mat-button-toggle-group
  [value]="initialSort.order"
  (change)="dataSource.sortBy({order: $event.value})"
>
  <mat-button-toggle value="asc"><mat-icon>arrow_upward</mat-icon></mat-button-toggle>
  <mat-button-toggle value="desc"><mat-icon>arrow_downward</mat-icon></mat-button-toggle>
</mat-button-toggle-group>
<table mat-table [dataSource]="dataSource">
  <!-- column definitions -->
</table>
<mat-paginator
  *ngIf="dataSource.page$ | async as page"
  [length]="page.totalElements"
  [pageSize]="page.size"
  [pageIndex]="page.number"
  [hidePageSize]="true"
  (page)="dataSource.fetch($event.pageIndex)"
>
</mat-paginator>

Got stuck? Post a comment below or ping me on Twitter @n_mehlhorn

Searching & Filtering

When there’s a lot of data you probably want to assist your users in finding what they’re looking for. You might provide a text-based search or structured inputs for filtering the data by a certain property. These query parameters will differ based on the data you’re querying. To compensate for this we’ll adapt our datasource to work with a generic set of query parameters. For this purpose we’ll add a generic parameter Q to the datasource’s type representing a query model for some data, ending up with the type PaginationDataSource<T, Q>.

We’ll also add another constructor parameter for initial query parameters while creating a sink analogous to sort:

this.query = new BehaviourSubject<Q>(initalQuery);

Additionally, we append a method queryBy that works just like sortBy:

queryBy(query: Partial<Q>): void {
    const lastQuery = this.query.getValue();
    const nextQuery = {...lastQuery, ...query};
    this.query.next(nextQuery);
}

Then, instead of just basing our observable stream of pages on the sort subject, we’ll combine both changes to sort and query by using the RxJS function combineLatest.

this.page$ = combineLatest([this.sort, this.query]).pipe(
  switchMap(([sort, query]) =>
    this.pageNumber.pipe(
      startWith(0),
      switchMap((page) => endpoint({ page, sort, size }, query))
    )
  ),
  shareReplay(1)
);

Subsequently, we’ll also pass the query to the pagination endpoint. In order to do this we need to adapt its type like follows:

export type PaginationEndpoint<T, Q> = (req: PageRequest<T>, query: Q) => Observable<Page<T>>;

Now we can update our component to provide some query inputs. First adapt the initialization of PaginationDataSource<T, Q> with a type for a specific query like UserQuery. Then provide a paginated endpoint that forwards page request and query to UserService. Lastly pass an initial query.

In our example we’ll allow users to be searched through text-based input and a date selection for a user’s registration date:

interface UserQuery {
  search: string;
  registration: Date;
}
dataSource = new PaginationDataSource<User, UserQuery>(
  (request, query) => this.users.page(request, query),
  { property: "username", order: "desc" },
  { search: "", registration: undefined }
);

Inside the template we can simply forward input values to the datasource by calling dataSource.queryBy() with a partial query model containing the query parameter:

<mat-form-field>
  <mat-icon matPrefix>search</mat-icon>
  <input
    #in
    (input)="dataSource.queryBy({search: in.value})"
    type="text"
    matInput
    placeholder="Search"
  />
</mat-form-field>
<mat-form-field>
  <input
    (dateChange)="dataSource.queryBy({registration: $event.value})"
    matInput
    [matDatepicker]="picker"
    placeholder="Registration"
  />
  <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
  <mat-datepicker #picker></mat-datepicker>
</mat-form-field>
<table mat-table [dataSource]="dataSource">
  ...
</table>
...

Now anytime you change the inputs, the displayed page will update accordingly - provided you properly forwarded the query parameters to your servers and handle them there correctly.

Join my mailing list and follow me on Twitter @n_mehlhorn for more in-depth knowledge on web development.

Loading Indication

If you like to indicate to the user that you’re fetching a page, you can extend the PaginationDataSource<T, Q> with a corresponding observable property based on a private subject:

private loading = new Subject<boolean>();
 
public loading$ = this.loading.asObservable();

Then you can either manually update the subject’s value before and after calling the PaginationEndpoint<T, Q> by leveraging the finalize operator likes this:

this.page$ = param$.pipe(
  switchMap(([query, sort]) =>
    this.pageNumber.pipe(
      startWith(0),
      switchMap((page) => {
        this.loading.next(true);
        return this.endpoint({ page, sort, size }, query).pipe(
          finalize(() => this.loading.next(false))
        );
      })
    )
  ),
  share()
);

Or, rather use the operator indicate(indicator: Subject<boolean>) I’ve introduced in my article about loading indication in Angular. Just attach it to the observable returned by the paginated endpoint and you’re good:

this.page$ = param$.pipe(
  switchMap(([query, sort]) =>
    this.pageNumber.pipe(
      startWith(0),
      switchMap((page) => this.endpoint({ page, sort, size }, query).pipe(indicate(this.loading)))
    )
  ),
  share()
);

You can then display a loading indicator, e.g. the Material progress spinner, like this:

<mat-spinner *ngIf="dataSource.loading$ | async" diameter="32"></mat-spinner>

Wrapping up

Through clever behaviour parameterization we can reuse a bunch of logic and thus are able to write powerful yet configurable components for displaying any kind of data. Our extension of the Material datasource allows us to perform pagination, sorting and filtering of remote data in just a couple of lines.

Here’s the full example on StackBlitz. The data source is also available from the library ngx-pagination-data-source - I’m grateful for any stars on GitHub!