Sha256: 239e6de883e0ac6edec3880abdba98fea936f3b8028552515bc0f8b75ffe6846

Contents?: true

Size: 705 Bytes

Versions: 46

Compression:

Stored size: 705 Bytes

Contents

# frozen_string_literal: true

module Blacklight
  class FacetFieldFilterComponent < Blacklight::Component
    def initialize(facet_field:)
      @facet_field = facet_field
    end

    def render?
      @facet_field.facet_field.index_range.any?
    end

    def prefix
      @facet_field.paginator.prefix
    end

    def clear_facet_prefix_url
      @facet_field.paginator.params_for_resort_url('index', @facet_field.search_state.to_h.except(@facet_field.paginator.request_keys[:prefix]))
    end

    def facet_prefix_url(letter)
      @facet_field.paginator.params_for_resort_url('index', @facet_field.search_state.to_h.merge(@facet_field.paginator.request_keys[:prefix] => letter))
    end
  end
end

Version data entries

46 entries across 45 versions & 2 rubygems

Version Path
blacklight-8.6.1 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.40.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.6.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.5.1 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.5.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.39.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.4.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.38.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/blacklight-7.37.0/app/components/blacklight/facet_field_filter_component.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/blacklight-8.3.0/app/components/blacklight/facet_field_filter_component.rb
blacklight-8.3.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.2.2 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.2.1 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.2.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.37.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.36.2 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.36.1 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.36.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-7.35.0 app/components/blacklight/facet_field_filter_component.rb
blacklight-8.1.0 app/components/blacklight/facet_field_filter_component.rb