11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/json_api_params.rb', line 11
def
case data = fetch(:data)
when Array
return data.map {|_data|
self.class.new(data: _data).
}
end
relationships = data.fetch(:relationships) { self.class.new }
attributes = self.class[*data.fetch(:attributes) { Hash.new }.flat_map {|key, value|
[key.underscore, value]
}]
relationships.each_with_object(attributes) {|(key, value), attrs|
k = key.underscore
case _data = value.fetch(:data)
when Array
attrs["#{k}_ids"] = _data.map {|item|
item.fetch(:id)
}
else
attrs["#{k}_id"] = _data.try(:fetch, :id)
end
}
end
|