Class: FormObj::Struct::Attribute
- Inherits:
-
Object
- Object
- FormObj::Struct::Attribute
- Defined in:
- lib/form_obj/struct/attribute.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #default_value ⇒ Object
-
#initialize(name, array: false, class: nil, default: nil, parent:, primary_key: nil, &block) ⇒ Attribute
constructor
A new instance of Attribute.
- #subform? ⇒ Boolean
- #validate_value!(value) ⇒ Object
Constructor Details
#initialize(name, array: false, class: nil, default: nil, parent:, primary_key: nil, &block) ⇒ Attribute
Returns a new instance of Attribute.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/form_obj/struct/attribute.rb', line 6 def initialize(name, array: false, class: nil, default: nil, parent:, primary_key: nil, &block) @name = name.to_sym @array = array @default_value = default @parent = parent @nested_class = binding.local_variable_get(:class) @nested_class = @nested_class.constantize if @nested_class.is_a? String @nested_class = Class.new(@parent.nested_class, &block) if !@nested_class && block_given? raise ArgumentError.new('Nested structure has to be defined (either with :class parameter or with block) for arrays if :default parameter is not specified') if @array && @nested_class.nil? && @default_value.nil? if primary_key if @nested_class @nested_class.primary_key = primary_key else parent.primary_key = name.to_sym end end if @array && @nested_class._attributes.find(@nested_class.primary_key).nil? raise FormObj::NonexistentPrimaryKeyError.new("#{@nested_class.inspect} has no attribute :#{@nested_class.primary_key} which is specified/defaulted as primary key") end end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/form_obj/struct/attribute.rb', line 4 def name @name end |
Instance Method Details
#default_value ⇒ Object
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 |
# File 'lib/form_obj/struct/attribute.rb', line 53 def default_value if @default_value.nil? if @nested_class if @array create_array else create_nested end end else value = if @default_value.is_a? ::Proc @default_value.call(@parent, self) else @default_value end if @nested_class if @array raise FormObj::WrongDefaultValueClassError unless value.is_a? ::Array value = create_array(value.map do |val| val = create_nested(val) if val.is_a?(::Hash) raise FormObj::WrongDefaultValueClassError if val.class != @nested_class val end) else value = create_nested(value) if value.is_a? ::Hash raise FormObj::WrongDefaultValueClassError if value.class != @nested_class end end value end end |
#subform? ⇒ Boolean
31 32 33 |
# File 'lib/form_obj/struct/attribute.rb', line 31 def subform? !@nested_class.nil? end |
#validate_value!(value) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/form_obj/struct/attribute.rb', line 35 def validate_value!(value) if @nested_class if @array unless value.class == @parent.array_class raise ArgumentError.new(":#{@name} attribute value should be of class #{@parent.nested_class.name}::Array while attempt to assign value of class #{value.class.name}") end unless value.item_class == @nested_class raise ArgumentError.new(":#{@name} attribute value should be an array with items of class #{@nested_class.name} while attempt to assign an array with items of class #{value.item_class.name}") end else unless value.class == @nested_class raise ArgumentError.new(":#{@name} attribute value should be of class #{@nested_class.name} while attempt to assign value of class #{value.class.name}") end end end end |