Sha256: e6f93411407e51f17eaca3c09e8c61d117e9737709e2da8e0d89379151f5c631

Contents?: true

Size: 1.01 KB

Versions: 10

Compression:

Stored size: 1.01 KB

Contents

<fieldset class="btn-group">
  <legend class="sr-only"><%= @facet_field.label %></legend>
  <button class="btn btn-secondary dropdown-toggle" type="button" id="<%= @facet_field.key.parameterize %>" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true" aria-controls="<%= @facet_field.key.parameterize + '-dropdown-options' %>">
    <%= @facet_field.label %>
  </button>
  <ul class="dropdown-menu" id="<%= @facet_field.key.parameterize + '-dropdown-options' %>">
    <% facet_item_presenters.each do |item| -%>
      <li class="dropdown-item">
        <%= render Blacklight::FacetItemComponent.new(facet_item: item, wrapping_element: nil) %>
      </li>
    <% end %>

    <% if @facet_field.modal_path %>
      <li class="dropdown-item more_facets">
        <%= link_to t("more_#{@facet_field.key}_html", scope: 'blacklight.search.facets', default: :more_html, field_name: @facet_field.label),
          @facet_field.modal_path,
          data: { blacklight_modal: 'trigger' } %>
      </li>
    <% end %>
  </ul>
</fieldset>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-5.0.0 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-5.0.0.rc3 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-5.0.0.rc2 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-5.0.0.rc1 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-4.0.0 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-4.0.0.rc3 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-4.0.0.rc2 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-4.0.0.rc1 app/components/hyrax/dropdown_facet_field_component.html.erb
hyrax-4.0.0.beta2 app/components/hyrax/dropdown_facet_field_component.html.erb