Sha256: 71a7b13ccbe07cb71c5a29f815d0ea51482559709e9d4e9be4c7026d4e1a46ba

Contents?: true

Size: 409 Bytes

Versions: 55

Compression:

Stored size: 409 Bytes

Contents

class LHS::Pagination::Offset < LHS::Pagination::Base

  DEFAULT_OFFSET = 0

  def current_page
    (offset + limit) / limit
  end

  def next_offset(step = 1)
    self.class.next_offset(offset, limit, step)
  end

  def self.page_to_offset(page, limit = DEFAULT_LIMIT)
    (page.to_i - 1) * limit.to_i
  end

  def self.next_offset(offset, limit, step = 1)
    offset.to_i + limit.to_i * step.to_i
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
lhs-16.1.5 lib/lhs/pagination/offset.rb
lhs-16.1.4 lib/lhs/pagination/offset.rb
lhs-16.1.3 lib/lhs/pagination/offset.rb
lhs-16.1.2 lib/lhs/pagination/offset.rb
lhs-16.1.1 lib/lhs/pagination/offset.rb
lhs-16.1.0 lib/lhs/pagination/offset.rb
lhs-16.0.1 lib/lhs/pagination/offset.rb
lhs-16.0.0 lib/lhs/pagination/offset.rb
lhs-15.7.0 lib/lhs/pagination/offset.rb
lhs-15.6.1 lib/lhs/pagination/offset.rb
lhs-15.6.0 lib/lhs/pagination/offset.rb
lhs-15.5.1 lib/lhs/pagination/offset.rb
lhs-15.5.0 lib/lhs/pagination/offset.rb
lhs-15.4.1 lib/lhs/pagination/offset.rb
lhs-15.4.0 lib/lhs/pagination/offset.rb
lhs-15.4.0.pre.hasone.1 lib/lhs/pagination/offset.rb
lhs-15.3.3 lib/lhs/pagination/offset.rb
lhs-15.3.3.pre.fixoptions.1 lib/lhs/pagination/offset.rb
lhs-15.3.2 lib/lhs/pagination/offset.rb
lhs-15.3.1 lib/lhs/pagination/offset.rb