mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
27a4e6076b
using InstanceMethods is deprecated since 401393b656
37 lines
753 B
Ruby
37 lines
753 B
Ruby
module Kaminari
|
|
module PageScopeMethods
|
|
# Specify the <tt>per_page</tt> value for the preceding <tt>page</tt> scope
|
|
# Model.page(3).per(10)
|
|
def per(num)
|
|
if (n = num.to_i) <= 0
|
|
self
|
|
else
|
|
limit(n).offset(offset_value / limit_value * n)
|
|
end
|
|
end
|
|
|
|
def padding(num)
|
|
offset(offset_value + num.to_i)
|
|
end
|
|
|
|
# Total number of pages
|
|
def num_pages
|
|
(total_count.to_f / limit_value).ceil
|
|
end
|
|
|
|
# Current page number
|
|
def current_page
|
|
(offset_value / limit_value) + 1
|
|
end
|
|
|
|
# First page of the collection ?
|
|
def first_page?
|
|
current_page == 1
|
|
end
|
|
|
|
# Last page of the collection?
|
|
def last_page?
|
|
current_page >= num_pages
|
|
end
|
|
end
|
|
end
|