%#
Copyright © 2012 The Pennsylvania State University
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
%>
<% facets_display_heading ||= "" %>
<% # main container for facets/limits menu -%>
<%=h facets_display_heading %>
<% facet_field_names.each do |solr_fname| %>
<% display_facet = @response.facets.detect {|f| f.name == solr_fname} -%>
<%#- raise solr_fname.inspect unless display_facet -%>
<% if display_facet && display_facet.items.length > 0 %>
<%= facet_field_labels[solr_fname] -%>
<% item_counter = 0 %>
<% display_facet.items.each do |item| -%>
<% if item.hits > 0 %>
<% facet_count_for_value = facet_value_hits(@facet_lookup, solr_fname, item.value) %>
<% if facet_in_params? solr_fname, item.value %>
-
<%= h(item.value) %> (<%= format_num facet_count_for_value %>)
<% link_options = remove_facet_params(solr_fname, item.value, params).merge!Hash["controller" => "catalog", :action=> "index"] %>
[<%= link_to 'remove', url_for(link_options), :class=>'remove' %>]
<% else %>
<%- if item_counter > Blacklight.config[:facet_more_num]-1 -%>
-
<%- else -%>
-
<%- end -%>
<%= facet_field_labels[solr_fname] -%>
<% item_counter = 0 %>
<% display_facet.items.each do |item| -%>
<% if item.hits > 0 %>
<% facet_count_for_value = facet_value_hits(@facet_lookup, solr_fname, item.value) %>
<% if facet_in_params? solr_fname, item.value %>
-
<%= h(item.value) %> (<%= format_num facet_count_for_value %>)
<% link_options = remove_facet_params(solr_fname, item.value, params).merge!Hash["controller" =>"catalog", :action=> "index"] %>
[<%= link_to 'remove', url_for(link_options), :class=>'remove' %>]
<% else %>
<%- if item_counter > Blacklight.config[:facet_more_num]-1 -%>
-
<%- else -%>
-
<%- end -%>
<% link_options = add_facet_params(solr_fname, item.value).merge!Hash["controller" =>"catalog", :action=> "index"] %>
<%= link_to h(item.value), url_for(link_options) %> (<%= format_num facet_count_for_value %>)
<% end -%>
<% end -%>
<% item_counter += 1 %>
<% end %>
<%= display_facet.items.length >
Blacklight.config[:facet_more_num] ? "- more
#{pluralize(2,
facet_field_labels[solr_fname])[2..-1].downcase}
"
: "" %>
<%= display_facet.items.length >
Blacklight.config[:facet_more_num] ? "- less
#{pluralize(2,
facet_field_labels[solr_fname])[2..-1].downcase}
"
: "" %>
<% end %>
<% end %>