Sha256: b2d4814c816dfd85ce9c44e360e1321a8cfd4263909f31069b42afe2fea8d106
Contents?: true
Size: 1.79 KB
Versions: 17
Compression:
Stored size: 1.79 KB
Contents
# See the Pagy documentation: https://ddnexus.github.io/pagy/extras/gearbox # frozen_string_literal: true class Pagy # :nodoc: DEFAULT[:gearbox_extra] = true # extra enabled by default DEFAULT[:gearbox_items] = [15, 30, 60, 100] # Automatically change the number of items per page depending on the page number # accepts an array as the :gearbox_items variable, that will determine the items for the first pages module GearboxExtra # Setup @items based on the :gearbox_items variable def setup_items_var return super if !@vars[:gearbox_extra] || @vars[:items_extra] gearbox_items = @vars[:gearbox_items] raise VariableError.new(self, :gearbox_items, 'to be an Array of positives', gearbox_items) \ unless gearbox_items.is_a?(Array) && gearbox_items.all? { |num| num.positive? rescue false } # rubocop:disable Style/RescueModifier @items = gearbox_items[@page - 1] || gearbox_items.last end # Setup @pages and @last based on the :gearbox_items variable def setup_pages_var return super if !@vars[:gearbox_extra] || @vars[:items_extra] gearbox_items = @vars[:gearbox_items] # This algorithm is thousands of times faster than the one in the geared_pagination gem @pages = @last = (if @count > (sum = gearbox_items.sum) [((@count - sum).to_f / gearbox_items.last).ceil, 1].max + gearbox_items.count else pages = 0 remainder = @count while remainder.positive? pages += 1 remainder -= gearbox_items[pages - 1] end [pages, 1].max end) end end prepend GearboxExtra end
Version data entries
17 entries across 17 versions & 1 rubygems