Class: Spotlight::BrowseController

Inherits:
ApplicationController show all
Includes:
Blacklight::Facet, Catalog
Defined in:
app/controllers/spotlight/browse_controller.rb

Overview

Index and read actions for browse (see SearchesController for the curator’s create-update-delete actions)

Instance Method Summary collapse

Methods included from Catalog

#add_facet_visibility_field

Methods included from SearchHelper

#search_service, #search_service_context

Methods included from Base

#autocomplete_json_response, #autocomplete_json_response_for_document, #blacklight_config, #controller_tracking_method

Methods included from Config

#exhibit_specific_blacklight_config

Methods included from Concerns::ApplicationController

#enabled_in_spotlight_view_type_configuration?, #field_enabled?

Methods included from Controller

#blacklight_config, #current_exhibit, #current_masthead=, #current_site, #default_url_options, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_path, #search_action_url, #search_facet_path, #set_exhibit_locale_scope, #set_locale

Instance Method Details

#indexObject



29
30
31
32
# File 'app/controllers/spotlight/browse_controller.rb', line 29

def index
  @groups = @exhibit.groups.published
  @searches = @searches.published
end

#showObject



34
35
36
37
38
39
40
41
42
# File 'app/controllers/spotlight/browse_controller.rb', line 34

def show
  @response, @document_list = search_service.search_results do |builder|
    builder.with(params.merge(browse_category_id: @search.id))
  end

  respond_to do |format|
    format.html
  end
end