-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinput_serializer.rb
173 lines (146 loc) · 5.27 KB
/
input_serializer.rb
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
class InputSerializer
# Fetches the default value for an input from the dataset.
class DefaultFromDataset
def initialize(*); end
def call(values)
values[:default]
end
end
# Fetches the default value for an input from the parent scenario, if set, otherwise from the
# dataset.
class DefaultFromParent
def initialize(input, parent)
@key = input.key
@parent = parent
end
def call(values)
@parent.user_values[@key] || @parent.balanced_values[@key] || values[:default]
end
end
# Given an array of inputs, returns JSON for all of them.
#
# @param [Array<Input>] inputs
# The input for which we want JSON.
# @param [Scenario] scenario
# The scenario whose values are being rendered.
# @param [true, false] extras
# Do you want the extra attributes (key, unit, step) to be included in
# the output?
def self.collection(
inputs, scenario, can_change: true, extra_attributes: false, default_values_from: :parent
)
scenario = IndifferentScenario.from(scenario)
inputs.each_with_object({}) do |input, data|
data[input.key] = serializer_for(
input, scenario, can_change:, extra_attributes:, default_values_from:
)
end
end
# Public: Creates an appropriate serializer for the given input.
#
# @param [Input] input
# The input for which we want JSON.
#
# @see InputSerializer#initialize
#
# @return [InputSerializer]
# Returns the input serializer (or subclass) instance.
def self.serializer_for(input, *args, **kwargs)
klass = input.unit == 'enum' ? EnumInputSerializer : self
klass.new(input, *args, **kwargs)
end
# Creates a new Input API serializer.
#
# @param [Input] input
# The input for which we want JSON.
# @param [Scenario] scenario
# The scenario whose values are being rendered.
# @param [boolean] extra_attributes
# Do you want the extra attributes (key, unit, step) to be included in
# the output?
# @param [:parent, :original] default_values_from
# When a scenario inherits from another, the default values are set to be those from the parent
# scenario. Set this to `:original` to use the default values for the dataset instead.
#
def initialize(input, scenario, can_change: true, extra_attributes: false, default_values_from: :parent)
@input = input
@scenario = IndifferentScenario.from(scenario)
@can_change = can_change
@extra_attributes = extra_attributes
@default_values_from =
if default_values_from == :parent && scenario.parent
DefaultFromParent.new(input, scenario.parent)
else
DefaultFromDataset.new
end
end
# Creates a Hash suitable for conversion to JSON by Rails.
#
# @return [Hash{Symbol=>Object}]
# The Hash containing the input attributes.
#
def as_json(*)
json = {}
values = Input.cache(@scenario.original).read(@scenario.original, @input)
user_values = @scenario.user_values
balanced_values = @scenario.balanced_values
user_val = user_values[@input.key] || balanced_values[@input.key]
json[:min] = values[:min]
json[:max] = values[:max]
json[:default] = @default_values_from.call(values)
json[:unit] = @input.unit
json[:user] = user_val if user_val.present?
json[:cache_error] = values[:error] if values[:error]
json[:disabled] = !@can_change || values[:disabled] || @scenario.inputs.disabled?(@input)
json[:coupling_disabled] = @scenario.inputs.coupling_disabled?(@input) if @scenario.inputs.disabled?(@input)
json[:disabled_by] = @input.disabled_by if @input.disabled_by.present?
json[:disabled_by_couplings] = @input.disabled_by_couplings if @input.disabled_by_couplings.present?
json[:coupling_groups] = @input.coupling_groups if @input.coupling_groups.present?
json[:share_group] = @input.share_group if @input.share_group.present?
if @extra_attributes
json[:step] = values[:step] || @input.step_value
json[:code] = @input.key
end
json[:label] = { value: values[:label], suffix: @input.label } if values[:label].present?
json
end
def to_csv_row
json = as_json.with_indifferent_access
[
@input.key, # Key
json[:min] || "", # Min Value
json[:max] || "", # Max Value
json[:default] || "", # Default Value
json[:user] || "", # User Value
json[:unit] || "", # Unit
json[:share_group] || "" # Share Group
]
end
# A simple wrapper around Scenario which converts user and balanced values
# to an indifferent-access hash. Prevents creating new copies of these
# hashes for each and every input being presented.
class IndifferentScenario
attr_reader :original
delegate :inputs, to: :original
def self.from(scenario)
scenario.is_a?(self) ? scenario : new(scenario)
end
def initialize(original)
@original = original
end
def user_values
@user ||= ActiveSupport::HashWithIndifferentAccess.new(
@original.user_values
)
end
def balanced_values
@balanced ||= ActiveSupport::HashWithIndifferentAccess.new(
@original.balanced_values
)
end
def parent
@parent ||=
@original.parent && IndifferentScenario.from(@original.parent)
end
end
end