22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# File 'app/controllers/eivo/concerns/pagination.rb', line 22
def (collection)
options = {
is_collection: true,
meta: {
total: collection.total_count,
pages: collection.total_pages
},
links: {
self: url_for(params.to_unsafe_h.merge(page: collection.current_page)),
first: url_for(params.to_unsafe_h.merge(page: 1)),
last: url_for(params.to_unsafe_h.merge(page: collection.total_pages))
}
}
if !collection.out_of_range? && !collection.first_page?
options[:links][:prev] = url_for(params.to_unsafe_h.merge(page: collection.prev_page))
end
if !collection.out_of_range? && !collection.last_page?
options[:links][:next] = url_for(params.to_unsafe_h.merge(page: collection.next_page))
end
options
end
|