Class: Render::HashAttribute
- Defined in:
- lib/render/attributes/hash_attribute.rb
Constant Summary
Constants inherited from Attribute
Instance Attribute Summary
Attributes inherited from Attribute
#enums, #format, #name, #required, #schema, #type
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ HashAttribute
constructor
A new instance of HashAttribute.
- #initialize_schema!(options) ⇒ Object
- #serialize(explicit_value, maintain_nil = false) ⇒ Object
Methods inherited from Attribute
#bias_type, #default_value, #nested_schema?
Constructor Details
#initialize(options = {}) ⇒ HashAttribute
Returns a new instance of HashAttribute.
6 7 8 9 10 11 12 13 14 |
# File 'lib/render/attributes/hash_attribute.rb', line 6 def initialize( = {}) super self.name = .keys.first = [name] process_type!() initialize_schema!() if nested_schema?() end |
Instance Method Details
#initialize_schema!(options) ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/render/attributes/hash_attribute.rb', line 16 def initialize_schema!() = { title: name, type: bias_type } self.schema = Schema.new(.merge()) end |
#serialize(explicit_value, maintain_nil = false) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/render/attributes/hash_attribute.rb', line 25 def serialize(explicit_value, maintain_nil = false) if !!schema value = schema.serialize!(explicit_value) { name.to_sym => value } else if (maintain_nil && !explicit_value) value = explicit_value else value = (explicit_value || default_value) end { name.to_sym => value } end end |