|
@ -14,15 +14,16 @@ module Paginable |
|
|
# Differs from :paginate_by_max_id in that it gives the results immediately following min_id, |
|
|
# Differs from :paginate_by_max_id in that it gives the results immediately following min_id, |
|
|
# whereas since_id gives the items with largest id, but with since_id as a cutoff. |
|
|
# whereas since_id gives the items with largest id, but with since_id as a cutoff. |
|
|
# Results will be in ascending order by id. |
|
|
# Results will be in ascending order by id. |
|
|
scope :paginate_by_min_id, ->(limit, min_id = nil) { |
|
|
|
|
|
|
|
|
scope :paginate_by_min_id, ->(limit, min_id = nil, max_id = nil) { |
|
|
query = reorder(arel_table[:id]).limit(limit) |
|
|
query = reorder(arel_table[:id]).limit(limit) |
|
|
query = query.where(arel_table[:id].gt(min_id)) if min_id.present? |
|
|
query = query.where(arel_table[:id].gt(min_id)) if min_id.present? |
|
|
|
|
|
query = query.where(arel_table[:id].lt(max_id)) if max_id.present? |
|
|
query |
|
|
query |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
def self.to_a_paginated_by_id(limit, options = {}) |
|
|
def self.to_a_paginated_by_id(limit, options = {}) |
|
|
if options[:min_id].present? |
|
|
if options[:min_id].present? |
|
|
paginate_by_min_id(limit, options[:min_id]).reverse |
|
|
|
|
|
|
|
|
paginate_by_min_id(limit, options[:min_id], options[:max_id]).reverse |
|
|
else |
|
|
else |
|
|
paginate_by_max_id(limit, options[:max_id], options[:since_id]).to_a |
|
|
paginate_by_max_id(limit, options[:max_id], options[:since_id]).to_a |
|
|
end |
|
|
end |
|
|