Class: Spree::TestingSupport::Microdata::Item

Inherits:
Object
  • Object
show all
Defined in:
lib/spree/testing_support/microdata.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(top_node) ⇒ Item

Returns a new instance of Item.



29
30
31
32
33
34
35
36
# File 'lib/spree/testing_support/microdata.rb', line 29

def initialize(top_node)
  @top_node = top_node
  @type = extract_item_type
  @id   = extract_item_id
  @properties = {}
  add_item_ref_properties(@top_node)
  parse_elements(extract_elements(@top_node))
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



27
28
29
# File 'lib/spree/testing_support/microdata.rb', line 27

def id
  @id
end

#propertiesObject (readonly)

Returns the value of attribute properties.



27
28
29
# File 'lib/spree/testing_support/microdata.rb', line 27

def properties
  @properties
end

#typeObject (readonly)

Returns the value of attribute type.



27
28
29
# File 'lib/spree/testing_support/microdata.rb', line 27

def type
  @type
end

Instance Method Details

#to_hashObject



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/spree/testing_support/microdata.rb', line 38

def to_hash
  hash = {}
  hash[:id] = id if id
  hash[:type] = type if type
  hash[:properties] = {}
  properties.each do |name, values|
    final_values = values.map do |value|
      if value.reponds_to?(:to_hash)
        value.to_hash
      else
        value
      end
    end
    hash[:properties][name] = final_values
  end
  hash
end