Class: AuthorFieldType

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#author_nameObject

Returns the value of attribute author_name.



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

def author_name
  @author_name
end

Instance Method Details

#data=(data_hash) ⇒ Object



11
12
13
14
# File 'app/models/author_field_type.rb', line 11

def data=(data_hash)
  data_hash[:author_name] = data_hash[:default_author_name] if data_hash['author_name'].blank?
  @author_name = data_hash['author_name']
end

#elasticsearch_mappingObject



7
8
9
# File 'app/models/author_field_type.rb', line 7

def elasticsearch_mapping
  { name: mapping_field_name, type: :string, analyzer: :keyword }
end

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



16
17
18
19
20
# File 'app/models/author_field_type.rb', line 16

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