Class: IntegerFieldType

Inherits:
Cortex::FieldType
  • Object
show all
Defined in:
app/models/integer_field_type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#integerObject

Returns the value of attribute integer.



2
3
4
# File 'app/models/integer_field_type.rb', line 2

def integer
  @integer
end

Instance Method Details

#data=(data_hash) ⇒ Object



13
14
15
# File 'app/models/integer_field_type.rb', line 13

def data=(data_hash)
  @integer = data_hash['integer']
end

#elasticsearch_mappingObject



9
10
11
# File 'app/models/integer_field_type.rb', line 9

def elasticsearch_mapping
  { name: mapping_field_name, type: :integer }
end

#field_item_as_indexed_json_for_field_type(field_item, options = {}) ⇒ Object



17
18
19
20
21
# File 'app/models/integer_field_type.rb', line 17

def field_item_as_indexed_json_for_field_type(field_item, options = {})
  json = {}
  json[mapping_field_name] = field_item.data['integer']
  json
end