Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ZackDeRose/1a623bf0c7821ecea4969a2fb2ce0c00 to your computer and use it in GitHub Desktop.
Save ZackDeRose/1a623bf0c7821ecea4969a2fb2ce0c00 to your computer and use it in GitHub Desktop.
Data on Page initialization for "Angular CDK Tables" article
combineLatest(this.tableDataSource$, this.currentPage$, this.pageSize$)
.subscribe(([allSources, currentPage, pageSize]) => {
const startingIndex = (currentPage - 1) * pageSize;
const onPage = allSources.slice(startingIndex, startingIndex + pageSize);
this.dataOnPage$.next(onPage);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment