Sha256: 556c88f6fd91774e0ff55d78bd3fdb314384b8c7e7bd51f8da0b3b4418d76d9b

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

module Kaminari
  module ActiveRecord
    extend ActiveSupport::Concern
    PER_PAGE = 25

    included do
      def self.inherited(kls)
        # TERRIBLE HORRIBLE NO GOOD VERY BAD HACK: inheritable_attributes is not yet set here on AR 3.0
        unless kls.default_scoping
          new_inheritable_attributes = Hash[inheritable_attributes.map do |key, value|
            [key, value.duplicable? ? value.dup : value]
          end]
          kls.instance_variable_set('@inheritable_attributes', new_inheritable_attributes)
        end
        kls.class_eval do
          # page(5)
          scope :page, lambda {|num|
            limit(PER_PAGE).offset(PER_PAGE * ([num.to_i, 1].max - 1))
          } do
            # page(3).per(10)
            def per(num)
              limit(num).offset(offset_value / limit_value * num)
            end

            def num_pages
              (except(:offset, :limit).count.to_f / limit_value).ceil
            end

            def current_page
              (offset_value / limit_value) + 1
            end
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kaminari-0.9.5 lib/kaminari/active_record.rb