Class: Valkyrie::Persistence::Solr::ModelConverter::IDPropertyValue

Inherits:
ValueMapper
  • Object
show all
Defined in:
lib/valkyrie/persistence/solr/model_converter.rb

Overview

Casts ID values into a recognizable string in solr.

Instance Attribute Summary

Attributes inherited from ValueMapper

#calling_mapper, #value

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ValueMapper

for, #initialize, register

Constructor Details

This class inherits a constructor from Valkyrie::ValueMapper

Class Method Details

.handles?(value) ⇒ Boolean

Returns:

  • (Boolean)


188
189
190
# File 'lib/valkyrie/persistence/solr/model_converter.rb', line 188

def self.handles?(value)
  value.is_a?(Property) && value.value.is_a?(::Valkyrie::ID)
end

Instance Method Details

#resultObject



192
193
194
# File 'lib/valkyrie/persistence/solr/model_converter.rb', line 192

def result
  calling_mapper.for(Property.new(value.key, "id-#{value.value.id}")).result
end