-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
56 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# frozen_string_literal: true | ||
|
||
module Blacklight | ||
# Render facet items and any subtree | ||
class FacetItemPivotComponent < ::ViewComponent::Base | ||
with_collection_parameter :facet_item | ||
|
||
def initialize(facet_item:, wrapping_element: 'li', suppress_link: false) | ||
@facet_item = facet_item | ||
@wrapping_element = wrapping_element | ||
@suppress_link = suppress_link | ||
end | ||
|
||
def call | ||
facet = Blacklight::FacetItemComponent.new(facet_item: @facet_item, wrapping_element: nil, suppress_link: @suppress_link) | ||
|
||
content_tag @wrapping_element do | ||
concat content_tag('span', render_component(facet), class: 'facet-values') | ||
|
||
if @facet_item.items.present? | ||
concat(content_tag('ul', class: 'pivot-facet list-unstyled') do | ||
render_component( | ||
self.class.with_collection( | ||
@facet_item.items.map { |i| facet_item_presenter(i) } | ||
) | ||
) | ||
end) | ||
end | ||
end | ||
end | ||
|
||
private | ||
|
||
# This is a little convoluted in Blacklight 7 in order to maintain backwards-compat | ||
# with overrides of deprecated helpers. In 8.x, we can just call Component#render_in | ||
# and call it a day | ||
def render_component(component) | ||
@view_context.render(component) | ||
end | ||
|
||
def facet_item_presenter(facet_item) | ||
Blacklight::FacetItemPresenter.new(facet_item, @facet_item.facet_config, @view_context, @facet_item.facet_field, @facet_item.search_state) | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,3 @@ | ||
<ul class="pivot-facet list-unstyled"> | ||
<% display_facet.items.each do |item| -%> | ||
<li> | ||
<span class="facet-values"> | ||
<% if facet_in_params?(field_name, item) %> | ||
<%= render_selected_facet_value(field_name, item) %> | ||
<% else %> | ||
<%= render_facet_value(field_name, item) %> | ||
<% end -%> | ||
</span> | ||
|
||
<% unless item.items.blank? %> | ||
<%= render 'facet_pivot', display_facet: item, field_name: field_name %> | ||
<% end %> | ||
</li> | ||
<% end %> | ||
|
||
</ul> | ||
<%= render(Blacklight::FacetFieldListComponent.new( | ||
facet_field: facet_field_presenter(facet_field.merge(item_component: Blacklight::FacetItemPivotComponent), display_facet), | ||
layout: false)) %> |