Sha256: 01841490096c6c245350aca8f389bb02cf31ffd30d257a98653577e3be139a1d
Contents?: true
Size: 1.07 KB
Versions: 21
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
21 entries across 21 versions & 2 rubygems