Sha256: 5edd5c28947882699a56d6b7f7efe42c47275130a64a58e2256774aa7ced1658
Contents?: true
Size: 1.37 KB
Versions: 2
Compression:
Stored size: 1.37 KB
Contents
# See the Pagy documentation: https://ddnexus.github.io/pagy/extras/countless # frozen_string_literal: true require 'pagy/countless' class Pagy DEFAULT[:countless_minimal] = false module CountlessExtra private # Return Pagy object and items def pagy_countless(collection, vars = {}) pagy = Pagy::Countless.new(pagy_countless_get_vars(collection, vars)) [pagy, pagy_countless_get_items(collection, pagy)] end # Sub-method called only by #pagy_countless: here for easy customization of variables by overriding def pagy_countless_get_vars(_collection, vars) pagy_set_items_from_params(vars) if defined?(ItemsExtra) vars[:page] ||= params[vars[:page_param] || DEFAULT[:page_param]] vars end # Sub-method called only by #pagy_countless: here for easy customization of record-extraction by overriding def pagy_countless_get_items(collection, pagy) # This should work with ActiveRecord, Sequel, Mongoid... return collection.offset(pagy.offset).limit(pagy.items) if pagy.vars[:countless_minimal] items = collection.offset(pagy.offset).limit(pagy.items + 1).to_a items_size = items.size items.pop if items_size == pagy.items + 1 # finalize may adjust pagy.items, so must be used after checking the size pagy.finalize(items_size) items end end Backend.prepend CountlessExtra end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pagy-5.0.1 | lib/pagy/extras/countless.rb |
pagy-5.0.0 | lib/pagy/extras/countless.rb |