This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-24 05:21:53 -07:00
|
|
|
module Paginable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2016-11-09 08:48:44 -08:00
|
|
|
scope :paginate_by_max_id, -> (limit, max_id = nil, since_id = nil) {
|
|
|
|
query = order(arel_table[:id].desc).limit(limit)
|
2016-10-16 16:23:41 -07:00
|
|
|
query = query.where(arel_table[:id].lt(max_id)) unless max_id.blank?
|
|
|
|
query = query.where(arel_table[:id].gt(since_id)) unless since_id.blank?
|
2016-10-02 13:35:27 -07:00
|
|
|
query
|
2016-11-09 08:48:44 -08:00
|
|
|
}
|
2016-03-24 05:21:53 -07:00
|
|
|
end
|
|
|
|
end
|