blob: b4c112b729a9f86477de09746812bccde127c67b (
plain)
1
2
3
4
5
6
7
8
9
10
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
38
39
|
module ActiveAttr::MultiParameterAttributes
def assign_attributes(new_attributes, options = {})
super(
expand_multiparameter_attributes(new_attributes),
options
)
end
def expand_multiparameter_attributes(attributes)
attributes ||= {}
single_parameter_attributes = {}
multi_parameter_attributes = {}
attributes.each do |key, value|
matches = key.match(/^(?<key>[^\(]+)\((?<index>\d+)i\)$/)
unless matches
single_parameter_attributes[key] = value
next
end
args = (multi_parameter_attributes[matches['key']] ||= [])
args[matches['index'].to_i - 1] = (value.present? ? value.to_i : nil)
end
single_parameter_attributes.merge(
multi_parameter_attributes.inject({}) do |hash, (key, args)|
if args.all?(&:present?)
hash.merge(key => _attribute_type(key).new(*args))
else
hash
end
end
)
end
end
|