Class: Concepts::AlphabeticalController

Inherits:
ConceptsController
  • Object
show all
Includes:
DatasetInitialization
Defined in:
app/controllers/concepts/alphabetical_controller.rb

Direct Known Subclasses

ExpiredController

Instance Method Summary collapse

Methods included from DatasetInitialization

#datasets_as_json, #init_datasets

Instance Method Details

#indexObject



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'app/controllers/concepts/alphabetical_controller.rb', line 22

def index
  authorize! :read, Concept::Base

  # only initilaize dataset if dataset param is set
  # prevent obsolet http request when using matches widget
  datasets = params[:dataset] ? init_datasets : []

  identify_used_first_letters

  if dataset = datasets.detect { |dataset| dataset.name == params[:dataset] }
    query = params[:prefix].mb_chars.downcase.to_s
    @search_results = dataset.alphabetical_search(query, I18n.locale) || []
    @search_results = Kaminari.paginate_array(@search_results).page(params[:page])
  else
    # When in single query mode, AR handles ALL includes to be loaded by that
    # one query. We don't want that! So let's do it manually :-)
    includes = Iqvoc::Concept.base_class.default_includes
    if Iqvoc::Concept.note_classes.include?(Note::SKOS::Definition)
      includes << Note::SKOS::Definition.name.to_relation_name
    end

    search_results_size = find_labelings.count
    search_results = find_labelings.page(params[:page])
    Iqvoc::Concept.pref_labeling_class.preload(search_results, owner: includes)

    @search_results = search_results.to_a.map { |pl| AlphabeticalSearchResult.new(pl) }
    @search_results = Kaminari.paginate_array(@search_results, total_count: search_results_size).page(params[:page])
  end

  respond_to do |format|
    format.html { render :index, layout: with_layout? }
  end
end