1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00
kaminari--kaminari/lib/kaminari/active_record.rb

38 lines
1.1 KiB
Ruby
Raw Normal View History

2011-02-05 08:55:38 -05:00
module Kaminari
module ActiveRecord
extend ActiveSupport::Concern
2011-02-06 06:11:45 -05:00
PER_PAGE = 25
2011-02-05 08:55:38 -05:00
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
2011-02-05 08:55:38 -05:00
kls.class_eval do
# page(5)
scope :page, lambda {|num|
offset(PER_PAGE * ([num.to_i, 1].max - 1)).limit(PER_PAGE)
} do
2011-02-06 06:11:45 -05:00
# page(3).per(10)
2011-02-05 08:55:38 -05:00
def per(num)
offset(offset_value / limit_value * num).limit(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