Class: Spotlight::SearchConfigurationsController

Inherits:
ApplicationController show all
Includes:
Blacklight::SearchHelper
Defined in:
app/controllers/spotlight/search_configurations_controller.rb

Overview

CRUD actions for Blacklight search configuration

Instance Method Summary collapse

Methods included from Concerns::ApplicationController

#enabled_in_spotlight_view_type_configuration?, #field_enabled?

Methods included from Controller

#blacklight_config, #current_exhibit, #current_masthead, #current_masthead=, #current_site, #default_url_options, #exhibit_masthead?, #exhibit_search_action_url, #exhibit_search_facet_url, #resource_masthead?, #search_action_url, #search_facet_url, #set_exhibit_locale_scope, #set_locale

Methods included from Config

#exhibit_specific_blacklight_config

Instance Method Details

#editObject



21
22
23
24
25
26
27
# File 'app/controllers/spotlight/search_configurations_controller.rb', line 21

def edit
  add_breadcrumb t(:'spotlight.exhibits.breadcrumb', title: @exhibit.title), @exhibit
  add_breadcrumb t(:'spotlight.configuration.sidebar.header'), exhibit_dashboard_path(@exhibit)
  add_breadcrumb t(:'spotlight.configuration.sidebar.search_configuration'), edit_exhibit_search_configuration_path(@exhibit)

  @field_metadata = Spotlight::FieldMetadata.new(current_exhibit, repository, @blacklight_configuration.blacklight_config)
end

#showObject



13
14
15
16
17
18
19
# File 'app/controllers/spotlight/search_configurations_controller.rb', line 13

def show
  respond_to do |format|
    format.json do
      render json: @blacklight_configuration.default_blacklight_config.view.to_h.reject { |_k, v| v.if == false }.keys
    end
  end
end

#updateObject



29
30
31
32
33
34
35
36
# File 'app/controllers/spotlight/search_configurations_controller.rb', line 29

def update
  if @blacklight_configuration.update(exhibit_params)
    flash[:notice] = t(:'helpers.submit.blacklight_configuration.updated', model: @blacklight_configuration.class.model_name.human.downcase)
    redirect_to edit_exhibit_search_configuration_path(@exhibit)
  else
    render action: 'edit'
  end
end