npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-jsonapi-pagination

v0.0.4

Published

A JSON API spec pagination addon for ember.

Downloads

14

Readme

ember-jsonapi-pagination

This addon improves pagination support to Ember applications that use Ember Data's JSONAPI serializer. It provides the following:

  1. A JsonapiPaginationSerializer that will append JSONAPI pagination properties when returning a response for a findAll or query request.

  2. A <JsonapiPagination /> component than can be used to render an unordered list of pagination links that can be used in your templates

Compatibility

  • Ember.js v3.16 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

Installation

ember install ember-jsonapi-pagination

Usage

Serializer

The minimum usage of this addon requires using the JsonapiPaginationSerializer for any models that will return JSONAPI compliant pagination links. You can use this serializer for specific models or as your application serializer, depending on your needs and preference.

The serializer extends Ember Data's built in JSONAPISerializer.

import JsonapiPaginationSerializer from 'ember-jsonapi-pagination/serializers/jsonapi-pagination';

export default class ApplicationSerializer extends JsonapiPaginationSerializer {}

The serializer will include a pagination object on the model's meta object. It will parse the links and pull the page number from each link's page query param. If your JSONAPI document looks like this:

{
  "data": [...],
  "included": [...],
  "links": {
    "first": "https://example.com/api/posts?page=1",
    "prev": "https://example.com/api/posts?page=2",
    "self": "https://example.com/api/posts?page=3",
    "next": "https://example.com/api/posts?page=4",
    "last": "https://example.com/api/posts?page=10"
  }
}

Then, for example in a controller, this.model.meta.pagination will look like this:

{
  "first": { "number": 1 },
  "prev": { "number": 2 },
  "self": { "number": 3 },
  "next": { "number": 4 },
  "last": { "number": 10 }
}

Component

The <JsonapiPagination /> component can be used with or without a block that provides a template for pagination.

Example (without block):

<JsonapiPagination @model={{this.model}} @goToPage={{this.goToPage}} />

Example (with block):

<JsonapiPagination @model={{this.model}} @padBy={{2}} as |pages|>
  <ul>
    {{#each pages as |page|}}
      <li><a href="#" {{on "click" (fn this.goToPage page.number)}}>{{page.number}}</a></li>
    {{/each}}
  </ul>
</JsonapiPagination>

Arguments:

|Name|Type|Description| |---|---|---| |@model|JSONAPI Document|The collection model as returned by Ember Data| |@goToPage|Function|An action that will be called when a page number is clicked. It will receive one argument: the page number| |@padBy|Number|The number of pagination objects to include between first and prev + next and last links| |@minimalMode|Boolean|If true, only previous and next page objects are built|

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.