Class: FloatFieldType

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#floatObject

Returns the value of attribute float.



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

def float
  @float
end

Instance Method Details

#data=(data_hash) ⇒ Object



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

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

#elasticsearch_mappingObject



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

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

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



17
18
19
20
21
# File 'app/models/float_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['float']
  json
end