Class: Spotlight::Search
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Spotlight::Search
show all
- Extended by:
- FriendlyId
- Includes:
- SearchHelper, Translatables
- Defined in:
- app/models/spotlight/search.rb
Overview
Instance Method Summary
collapse
#search_service, #search_service_context
Instance Method Details
#count ⇒ Object
57
58
59
60
61
|
# File 'app/models/spotlight/search.rb', line 57
def count
@count ||= Rails.cache.fetch([exhibit, self, 'count']) do
documents.size
end
end
|
65
66
67
|
# File 'app/models/spotlight/search.rb', line 65
def display_masthead?
masthead&.display?
end
|
#documents ⇒ Object
44
45
46
47
48
49
50
51
52
53
54
55
|
# File 'app/models/spotlight/search.rb', line 44
def documents
start = 0
response = repository.search(search_params.start(start))
return to_enum(:documents) { response['response']['numFound'] } unless block_given?
while response.documents.present?
response.documents.each { |x| yield x }
start += response.documents.length
response = repository.search(search_params.start(start))
end
end
|
#full_title ⇒ Object
34
35
36
|
# File 'app/models/spotlight/search.rb', line 34
def full_title
[title, subtitle.presence].compact.join(' ยท ')
end
|
#merge_params_for_search(params, blacklight_config) ⇒ Object
73
74
75
76
77
|
# File 'app/models/spotlight/search.rb', line 73
def merge_params_for_search(params, blacklight_config)
base_query = Blacklight::SearchState.new(query_params, blacklight_config)
user_query = Blacklight::SearchState.new(params, blacklight_config).to_h
base_query.params_for_search(user_query).merge(user_query.slice(:page))
end
|
#search_params ⇒ Object
69
70
71
|
# File 'app/models/spotlight/search.rb', line 69
def search_params
search_service.search_builder.with(query_params.with_indifferent_access).merge(facet: false)
end
|
#thumbnail_image_url ⇒ Object
38
39
40
41
42
|
# File 'app/models/spotlight/search.rb', line 38
def thumbnail_image_url
return unless thumbnail&.iiif_url
thumbnail.iiif_url
end
|