Sha256: 3b89d8cec522a58731f6ced25bd39569ce53342c4c35f0cc4d3dd77596bc0c2a
Contents?: true
Size: 1.3 KB
Versions: 2
Compression:
Stored size: 1.3 KB
Contents
module Kaminari module ActiveRecordRelationMethods # a workaround for AR 3.0.x that returns 0 for #count when page > 1 # if +limit_value+ is specified, load all the records and count them if ActiveRecord::VERSION::STRING < '3.1' def count(column_name = nil, options = {}) #:nodoc: limit_value && !options[:distinct] ? length : super(column_name, options) end end def entry_name model_name.human.downcase end def total_count(column_name = :all, options = {}) #:nodoc: # #count overrides the #select which could include generated columns referenced in #order, so skip #order here, where it's irrelevant to the result anyway @total_count ||= begin c = except(:offset, :limit, :order) # Remove includes only if they are irrelevant c = c.except(:includes) unless references_eager_loaded_tables? # Rails 4.1 removes the `options` argument from AR::Relation#count args = [column_name] args << options if ActiveRecord::VERSION::STRING < '4.1.0' # .group returns an OrderdHash that responds to #count c = c.count(*args) if c.is_a?(Hash) || c.is_a?(ActiveSupport::OrderedHash) c.count else c.respond_to?(:count) ? c.count(*args) : c end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kaminari-0.16.1 | lib/kaminari/models/active_record_relation_methods.rb |
kaminari-0.16.0 | lib/kaminari/models/active_record_relation_methods.rb |