Sha256: f352c583c38534e32280f91587ea710f9b03023dec06d42ef4065417fb15a4d5

Contents?: true

Size: 482 Bytes

Versions: 19

Compression:

Stored size: 482 Bytes

Contents

class BooleanFieldType < FieldType
  attr_accessor :value

  def data=(data_hash)
    @value = data_hash.deep_symbolize_keys[:value]
  end

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

  def mapping
    { name: mapping_field_name, type: :string, analyzer: :snowball }
  end

  private

  def mapping_field_name
    "#{field_name.parameterize('_')}_boolean"
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
cortex-plugins-core-0.12.3 app/models/boolean_field_type.rb
cortex-plugins-core-0.12.2 app/models/boolean_field_type.rb
cortex-plugins-core-0.12.1 app/models/boolean_field_type.rb
cortex-plugins-core-0.12.0 app/models/boolean_field_type.rb
cortex-plugins-core-0.11.3 app/models/boolean_field_type.rb
cortex-plugins-core-0.11.2 app/models/boolean_field_type.rb
cortex-plugins-core-0.11.1 app/models/boolean_field_type.rb
cortex-plugins-core-0.11.0 app/models/boolean_field_type.rb
cortex-plugins-core-0.10.4 app/models/boolean_field_type.rb
cortex-plugins-core-0.10.2 app/models/boolean_field_type.rb
cortex-plugins-core-0.10.1 app/models/boolean_field_type.rb
cortex-plugins-core-0.10.0 app/models/boolean_field_type.rb
cortex-plugins-core-0.9.1 app/models/boolean_field_type.rb
cortex-plugins-core-0.9.0 app/models/boolean_field_type.rb
cortex-plugins-core-0.8.0 app/models/boolean_field_type.rb
cortex-plugins-core-0.7.2 app/models/boolean_field_type.rb
cortex-plugins-core-0.7.1 app/models/boolean_field_type.rb
cortex-plugins-core-0.7.0 app/models/boolean_field_type.rb
cortex-plugins-core-0.6.0 app/models/boolean_field_type.rb