Class: LHS::Pagination::Page
- Inherits:
-
Base
- Object
- Base
- LHS::Pagination::Page
show all
- Defined in:
- lib/lhs/pagination/page.rb
Constant Summary
collapse
- DEFAULT_OFFSET =
1
Constants inherited
from Base
Base::DEFAULT_LIMIT
Instance Attribute Summary
Attributes inherited from Base
#data
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#first_page, #initialize, #last_page, #limit, #limit_value, #next?, #next_page, #offset, page_to_offset, #pages_left, #pages_left?, #parallel?, #prev_page, #previous?, #total, #total_pages
Class Method Details
.next_offset(current_page, _limit, step = 1) ⇒ Object
15
16
17
|
# File 'lib/lhs/pagination/page.rb', line 15
def self.next_offset(current_page, _limit, step = 1)
current_page.to_i + step.to_i
end
|
Instance Method Details
#current_page ⇒ Object
7
8
9
|
# File 'lib/lhs/pagination/page.rb', line 7
def current_page
offset
end
|
#next_offset(step = 1) ⇒ Object
11
12
13
|
# File 'lib/lhs/pagination/page.rb', line 11
def next_offset(step = 1)
self.class.next_offset(current_page, limit, step)
end
|