Sha256: 6f6b96b10d5c472dbfee24d51079f662491286fb98b65ec0791fdae821ba41e8

Contents?: true

Size: 1.07 KB

Versions: 74

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true
##
##
# = Introduction
# Blacklight::Solr::Document is the module with logic for a class representing
# an individual document returned from Solr results.  It can be added in to any
# local class you want, but in default Blacklight a SolrDocument class is
# provided for you which is pretty much a blank class "include"ing
# Blacklight::Solr::Document.
#
# Blacklight::Solr::Document provides some DefaultFinders.
#
# It also provides support for Document Extensions, which advertise supported
# transformation formats.
#

module Blacklight::Solr::Document
  extend ActiveSupport::Concern
  include Blacklight::Document
  include Blacklight::Document::ActiveModelShim

  def more_like_this
    response.more_like(self).map { |doc| self.class.new(doc, response) }
  end

  def has_highlight_field? k
    return false if response['highlighting'].blank? || response['highlighting'][id].blank?

    response['highlighting'][id].key? k.to_s
  end

  def highlight_field k
    response['highlighting'][id][k.to_s].map(&:html_safe) if has_highlight_field? k
  end
end

Version data entries

74 entries across 74 versions & 2 rubygems

Version Path
blacklight-7.7.0 lib/blacklight/solr/document.rb
blacklight-7.6.0 lib/blacklight/solr/document.rb
blacklight-7.5.1 lib/blacklight/solr/document.rb
blacklight-7.5.0 lib/blacklight/solr/document.rb
blacklight-7.4.2 lib/blacklight/solr/document.rb
blacklight-7.4.1 lib/blacklight/solr/document.rb
blacklight-7.4.0 lib/blacklight/solr/document.rb
blacklight-7.3.0 lib/blacklight/solr/document.rb
blacklight-7.2.0 lib/blacklight/solr/document.rb
blacklight-7.1.0 app/models/concerns/blacklight/solr/document.rb
blacklight-7.1.0.alpha app/models/concerns/blacklight/solr/document.rb
blacklight-7.0.1 app/models/concerns/blacklight/solr/document.rb
blacklight-7.0.0 app/models/concerns/blacklight/solr/document.rb
blacklight-7.0.0.rc2 app/models/concerns/blacklight/solr/document.rb