2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-24 12:21:53 +00:00
|
|
|
module Paginable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2017-05-01 14:31:02 +00:00
|
|
|
scope :paginate_by_max_id, ->(limit, max_id = nil, since_id = nil) {
|
2016-11-09 16:48:44 +00:00
|
|
|
query = order(arel_table[:id].desc).limit(limit)
|
2017-06-08 11:24:28 +00:00
|
|
|
query = query.where(arel_table[:id].lt(max_id)) if max_id.present?
|
|
|
|
query = query.where(arel_table[:id].gt(since_id)) if since_id.present?
|
2016-10-02 20:35:27 +00:00
|
|
|
query
|
2016-11-09 16:48:44 +00:00
|
|
|
}
|
2018-02-26 02:31:28 +00:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
# Results will be in ascending order by id.
|
|
|
|
scope :paginate_by_min_id, ->(limit, min_id = nil) {
|
|
|
|
query = reorder(arel_table[:id]).limit(limit)
|
|
|
|
query = query.where(arel_table[:id].gt(min_id)) if min_id.present?
|
|
|
|
query
|
|
|
|
}
|
2016-03-24 12:21:53 +00:00
|
|
|
end
|
|
|
|
end
|