Created
July 18, 2018 03:29
-
-
Save ZackDeRose/1a623bf0c7821ecea4969a2fb2ce0c00 to your computer and use it in GitHub Desktop.
Data on Page initialization for "Angular CDK Tables" article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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