Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pagination support #83

Merged
merged 2 commits into from
Feb 24, 2017
Merged

Pagination support #83

merged 2 commits into from
Feb 24, 2017

Conversation

appleton
Copy link
Contributor

@appleton appleton commented Feb 7, 2017

This PR adds support for GitHub API pagination in two steps:

  1. Parse and extract the contents of the Link response header into a hash of pagination links in the base adapter and add a links hash to the payload. I think this is required as there's no access to response headers from the serializer.
  2. Next, extract pagination information from the links hash into the meta property for use in the application.

Example usage to fetch two pages:

this.store.query('github-branch', {
  repo: 'some/repo',
  page: 1,
  per_page: 100
}).then((branches) => {
  const next = branches.get('meta.next');
  if (next) {
    this.store.query('github-branch', {
      repo: 'some/repo',
      page: next.page,
      per_page: next.per_page
    })
  }
});

@elwayman02 elwayman02 merged commit 90e72a5 into elwayman02:master Feb 24, 2017
@appleton appleton deleted the pagination branch March 1, 2017 20:38
@appleton appleton restored the pagination branch March 6, 2017 17:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants