Class: AxTrack::Collection

Inherits:
Object
  • Object
show all
Defined in:
lib/ax_track/collection.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data:, total:, next_cursor:, prev_cursor:) ⇒ Collection

Returns a new instance of Collection.



15
16
17
18
19
20
# File 'lib/ax_track/collection.rb', line 15

def initialize(data:, total:, next_cursor:, prev_cursor:)
  @data = data
  @total = total
  @next_cursor = next_cursor.nil? || next_cursor.empty? ? nil : next_cursor
  @prev_cursor = prev_cursor.nil? || prev_cursor.empty? ? nil : prev_cursor
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



3
4
5
# File 'lib/ax_track/collection.rb', line 3

def data
  @data
end

#next_cursorObject (readonly)

Returns the value of attribute next_cursor.



3
4
5
# File 'lib/ax_track/collection.rb', line 3

def next_cursor
  @next_cursor
end

#prev_cursorObject (readonly)

Returns the value of attribute prev_cursor.



3
4
5
# File 'lib/ax_track/collection.rb', line 3

def prev_cursor
  @prev_cursor
end

#totalObject (readonly)

Returns the value of attribute total.



3
4
5
# File 'lib/ax_track/collection.rb', line 3

def total
  @total
end

Class Method Details

.from_response(json_response, key:, type:) ⇒ Object

key is the subset of the json_response for which to create an array type is the class Type to wrap the results from key



7
8
9
10
11
12
13
# File 'lib/ax_track/collection.rb', line 7

def self.from_response(json_response, key:, type: )
  body = json_response.body
  new(data: body[key].map { |attrs| type.new(attrs ) },
      total: body.dig('count'),
      next_cursor: body.dig('next'),
      prev_cursor: body.dig('previous'))
end