Giter VIP home page Giter VIP logo

Comments (4)

tiagopog avatar tiagopog commented on May 30, 2024

Hey there, @peco8!

You mean to set the pagination's config (default_page_size and maximum_page_size) for each resource?

If so, it's not natively supported by JU nor JR (as far as I know), but there's a workaround: you can create custom paginators to encapsulate the needed logic for each resource.

For example, say you want to create a custom paginator for UserResource and PostResource, you could do something like this:

# app/resources/paginators/custom_paginator.rb
module Paginators
  class CustomPaginator < JSONAPI::Paginator
    def pagination_range(page_params, default_page_size:)
      offset = page_params['offset'] || 0
      limit  = page_params['limit'] || default_page_size # apply a custom default page size for each resource
      offset..offset + limit - 1 # resulting range
    end
  end
end

# app/resources/paginators/user_custom_paginator.rb
module Paginators
  class UserCustomPaginator < CustomPaginator
    def pagination_range(page_params)
      super(page_params, default_page_size: 50)
    end
  end
end

# app/resources/paginators/post_custom_paginator.rb
module Paginators
  class PostCustomPaginator < CustomPaginator
    def pagination_range(page_params)
      super(page_params, default_page_size: 10)
    end
  end
end

Then it's all about to set those custom paginators in their own resources:

class UserResource < JSONAPI::Resource
  # ...
  paginator :user_custom_paginator
end

class PostResource < JSONAPI::Resource
  # ...
  paginator :post_custom_paginator
end

from jsonapi-utils.

tiagopog avatar tiagopog commented on May 30, 2024

I will hopefully add this to the README as soon as a I get some free time :-)

from jsonapi-utils.

peco8 avatar peco8 commented on May 30, 2024

@tiagopog
Thanks for the quick response even you seem pretty busy busy!
I'll try that out sometime soon :)

I'll close this issue!

from jsonapi-utils.

tiagopog avatar tiagopog commented on May 30, 2024

Cheers!

from jsonapi-utils.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.