Retrospring/app/controllers/concerns/paginates_answers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
313 B
Ruby
Raw Normal View History

2023-02-16 15:35:03 -08:00
# frozen_string_literal: true
module PaginatesAnswers
def paginate_answers
@answers = yield(last_id: params[:last_id])
2023-02-16 15:35:03 -08:00
answer_ids = @answers.map(&:id)
@answers_last_id = answer_ids.min
@more_data_available = !yield(last_id: @answers_last_id, size: 1).select("answers.id").count.zero?
2023-02-16 15:35:03 -08:00
end
end