Class: DataMapper::Paginator::ControlHelper::Jumping
- Inherits:
-
Object
- Object
- DataMapper::Paginator::ControlHelper::Jumping
- Defined in:
- lib/dm-paginator/control/jumping.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#paginator ⇒ Object
readonly
Returns the value of attribute paginator.
Instance Method Summary collapse
-
#initialize(paginator, options = {}) ⇒ Jumping
constructor
A new instance of Jumping.
- #pages(page_range = nil) ⇒ Object
Methods included from DataMapper::Paginator::ControlHelperAbstract
#normalize_page_number, #pages_in_range
Constructor Details
#initialize(paginator, options = {}) ⇒ Jumping
Returns a new instance of Jumping.
9 10 11 12 13 14 15 16 17 |
# File 'lib/dm-paginator/control/jumping.rb', line 9 def initialize paginator, = {} if !paginator.is_a?( Main ) raise ArgumentError, "paginator argument is not an instance of Main" end @paginator = paginator @options = @options[:page_range] = [:page_range].to_i || DataMapper::Paginator::default[:page_range] end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/dm-paginator/control/jumping.rb', line 7 def @options end |
#paginator ⇒ Object (readonly)
Returns the value of attribute paginator.
7 8 9 |
# File 'lib/dm-paginator/control/jumping.rb', line 7 def paginator @paginator end |
Instance Method Details
#pages(page_range = nil) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/dm-paginator/control/jumping.rb', line 19 def pages page_range = nil return unless paginator.page_count > 0 page_range = [:page_range] || page_range page_number = paginator.page delta = page_number % page_range if delta == 0 delta = page_range end offset = page_number - delta lower = offset + 1 upper = offset + page_range return pages_in_range lower, upper end |