Module: BlacklightRangeLimit::ViewHelperOverride

Defined in:
lib/blacklight_range_limit/view_helper_override.rb

Overview

Meant to be applied on top of Blacklight helpers, to over-ride Will add rendering of limit itself in sidebar, and of constraings display.

Instance Method Summary collapse

Instance Method Details

#facet_field_in_params?(field_name) ⇒ Boolean

Over-ride to recognize our custom params for range facets

Returns:

  • (Boolean)


19
20
21
22
23
24
25
26
27
28
29
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 19

def facet_field_in_params?(field_name)
  return super || (
    range_config(field_name) &&
    params[:range] &&
    params[:range][field_name] &&
      ( params[:range][field_name]["begin"].present? ||
        params[:range][field_name]["end"].present? ||
        params[:range][field_name]["missing"].present?
      )
  )
end

#facet_partial_name(display_facet) ⇒ Object



8
9
10
11
12
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 8

def facet_partial_name(display_facet)
  config = range_config(display_facet.name)
  return config[:partial] || 'blacklight_range_limit/range_limit_panel' if config && should_show_limit(display_facet.name)
  super
end

#query_has_constraints?(my_params = params) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 14

def query_has_constraints?(my_params = params)
  super || has_range_limit_parameters?(my_params)
end

#range_config(solr_field) ⇒ Object



96
97
98
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 96

def range_config(solr_field)
  BlacklightRangeLimit.range_config(blacklight_config, solr_field)
end

#remove_range_param(solr_field, my_params = params) ⇒ Object



67
68
69
70
71
72
73
74
75
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 67

def remove_range_param(solr_field, my_params = params)
  my_params = Blacklight::SearchState.new(my_params, blacklight_config).to_h
  if ( my_params["range"] )
    my_params = my_params.dup
    my_params["range"] = my_params["range"].dup
    my_params["range"].delete(solr_field)
  end
  return my_params
end

#render_constraints_filters(my_params = params) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 31

def render_constraints_filters(my_params = params)
  content = super(my_params)
  # add a constraint for ranges?
  unless my_params[:range].blank?
    my_params[:range].each_pair do |solr_field, hash|

      next unless hash["missing"] || (!hash["begin"].blank?) || (!hash["end"].blank?)
      content << render_constraint_element(
        facet_field_label(solr_field),
        range_display(solr_field, my_params),
        :escape_value => false,
        :remove => remove_range_param(solr_field, my_params)
      )
    end
  end
  return content
end

#render_search_to_s_filters(my_params) ⇒ Object



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 49

def render_search_to_s_filters(my_params)
  content = super(my_params)
  # add a constraint for ranges?
  unless my_params[:range].blank?
    my_params[:range].each_pair do |solr_field, hash|
      next unless hash["missing"] || (!hash["begin"].blank?) || (! hash["end"].blank?)

      content << render_search_to_s_element(
        facet_field_label(solr_field),
        range_display(solr_field, my_params),
        :escape_value => false
      )

    end
  end
  return content
end

#solr_range_queries_to_a(solr_field) ⇒ Object

Looks in the solr @response for [“facet_counts“][solr_field], for elements expressed as ”solr_field:[X to Y]“, turns them into a list of hashes with [:from, :to, :count], sorted by :from. Assumes integers for sorting purposes.



81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/blacklight_range_limit/view_helper_override.rb', line 81

def solr_range_queries_to_a(solr_field)
  return [] unless @response["facet_counts"] && @response["facet_counts"]["facet_queries"]

  array = []

  @response["facet_counts"]["facet_queries"].each_pair do |query, count|
    if query =~ /#{solr_field}: *\[ *(-?\d+) *TO *(-?\d+) *\]/
      array << {:from => $1, :to => $2, :count => count}
    end
  end
  array = array.sort_by {|hash| hash[:from].to_i }

  return array
end