Class: RSolr::Response::PaginatedDocSet

Inherits:
Array
  • Object
show all
Defined in:
lib/rsolr/response.rb

Overview

A response module which gets mixed into the solr [“response”] array.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#page_startObject Also known as: start

Returns the value of attribute page_start.



46
47
48
# File 'lib/rsolr/response.rb', line 46

def page_start
  @page_start
end

#page_totalObject Also known as: total

Returns the value of attribute page_total.



46
47
48
# File 'lib/rsolr/response.rb', line 46

def page_total
  @page_total
end

#per_pageObject

Returns the value of attribute per_page.



46
47
48
# File 'lib/rsolr/response.rb', line 46

def per_page
  @per_page
end

Instance Method Details

#current_pageObject

Returns the current page calculated from ‘rows’ and ‘start’



55
56
57
58
59
# File 'lib/rsolr/response.rb', line 55

def current_page
  return 1 if start < 1
  per_page_normalized = per_page < 1 ? 1 : per_page
  @current_page ||= (start / per_page_normalized).ceil + 1
end

#has_next?Boolean

Returns:

  • (Boolean)


76
77
78
# File 'lib/rsolr/response.rb', line 76

def has_next?
  current_page < total_pages
end

#has_previous?Boolean

Returns:

  • (Boolean)


80
81
82
# File 'lib/rsolr/response.rb', line 80

def has_previous?
  current_page > 1
end

#next_pageObject

returns the next page number or the last



72
73
74
# File 'lib/rsolr/response.rb', line 72

def next_page
  @next_page ||= (current_page == total_pages) ? total_pages : current_page+1
end

#previous_pageObject

returns the previous page number or 1



67
68
69
# File 'lib/rsolr/response.rb', line 67

def previous_page
  @previous_page ||= (current_page > 1) ? current_page - 1 : 1
end

#total_pagesObject

Calcuates the total pages from ‘numFound’ and ‘rows’



62
63
64
# File 'lib/rsolr/response.rb', line 62

def total_pages
  @total_pages ||= per_page > 0 ? (total / per_page.to_f).ceil : 1
end