Sha256: 38b8aaa024d5766efe8fb315b2ba4b6591277be4454a4ff9656a86a80b4baeff
Contents?: true
Size: 1.78 KB
Versions: 12
Compression:
Stored size: 1.78 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 reminder = @count while reminder.positive? pages += 1 reminder -= gearbox_items[pages - 1] end [pages, 1].max end) end end prepend GearboxExtra end
Version data entries
12 entries across 12 versions & 1 rubygems