Class: TrackerApi::Client::Pagination

Inherits:
Object
  • Object
show all
Defined in:
lib/tracker_api/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(headers) ⇒ Pagination

Returns a new instance of Pagination.



178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# File 'lib/tracker_api/client.rb', line 178

def initialize(headers)
  @headers  = headers
  @total    = headers['x-tracker-pagination-total'].to_i
  @limit    = headers['x-tracker-pagination-limit'].to_i
  @offset   = headers['x-tracker-pagination-offset'].to_i
  @returned = headers['x-tracker-pagination-returned'].to_i

  # if offset is negative (e.g. Iterations Endpoint).
  #   For the 'Done' scope, negative numbers can be passed, which
  #   specifies the number of iterations preceding the 'Current' iteration.
  # then need to adjust the negative offset to account for a smaller total,
  #   and set total to zero since we are paginating from -X to 0.
  if @offset < 0
    @offset = -@total if @offset.abs > @total
    @total  = 0
  end
end

Instance Attribute Details

#headersObject

Returns the value of attribute headers.



176
177
178
# File 'lib/tracker_api/client.rb', line 176

def headers
  @headers
end

#limitObject

Returns the value of attribute limit.



176
177
178
# File 'lib/tracker_api/client.rb', line 176

def limit
  @limit
end

#offsetObject

Returns the value of attribute offset.



176
177
178
# File 'lib/tracker_api/client.rb', line 176

def offset
  @offset
end

#returnedObject

Returns the value of attribute returned.



176
177
178
# File 'lib/tracker_api/client.rb', line 176

def returned
  @returned
end

#totalObject

Returns the value of attribute total.



176
177
178
# File 'lib/tracker_api/client.rb', line 176

def total
  @total
end

Instance Method Details

#more?Boolean

Returns:

  • (Boolean)


196
197
198
# File 'lib/tracker_api/client.rb', line 196

def more?
  (offset + limit) < total
end

#next_offsetObject



200
201
202
# File 'lib/tracker_api/client.rb', line 200

def next_offset
  offset + limit
end

#next_page_paramsObject



204
205
206
# File 'lib/tracker_api/client.rb', line 204

def next_page_params
  { limit: limit, offset: next_offset }
end