bcomnes / header-pagination

Parse rfc5988 style pagination Link headers from a fetch Response object.

Home Page:https://npmjs.com/header-pagination

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

header-pagination

Actions Status

Parse rfc5988 style pagination Link headers from a fetch Response object.

npm install header-pagination

Usage

import { getPagination } from 'header-pagination'

window.fetch(req).then(async response => {
  const pagination = getPagination(response.headers)
  // {
  //    last,
  //    next,
  //    prev,
  //    first,
  //    current,
  //    total (if X-Total-Count is included)
  // }
  const json = await response.json()
  return {pagination, json}
})

API

getPagination(response)

Given a fetch Response, returns an object with the following properties:

{
  last,
  next,
  prev,
  first,
  current,
  total // if X-Total-Count is included
}

See also

License

MIT

About

Parse rfc5988 style pagination Link headers from a fetch Response object.

https://npmjs.com/header-pagination

License:MIT License


Languages

Language:JavaScript 100.0%