Sha256: 96324647a4dbade567d2f8f8684ee289bdb6679837cf9b73d5ebd4edebe384a5

Contents?: true

Size: 1.02 KB

Versions: 29

Compression:

Stored size: 1.02 KB

Contents

# The BootstrapBreadcrumbsBuilder is a Bootstrap compatible breadcrumb builder.
# It provides basic functionalities to render a breadcrumb navigation according to Bootstrap's conventions.
#
# BootstrapBreadcrumbsBuilder accepts a limited set of options:
#
# You can use it with the :builder option on render_breadcrumbs:
#     <%= render_breadcrumbs builder: Hyrax::BootstrapBreadcrumbsBuilder %>
#
class Hyrax::BootstrapBreadcrumbsBuilder < BreadcrumbsOnRails::Breadcrumbs::Builder
  include ActionView::Helpers::OutputSafetyHelper
  def render
    return "" if @elements.blank?

    @context.content_tag(:ul, class: 'breadcrumb') do
      safe_join(@elements.uniq.collect { |e| render_element(e) })
    end
  end

  def render_element(element)
    html_class = 'active' if @context.current_page?(compute_path(element))

    @context.content_tag(:li, class: html_class) do
      @context.link_to_unless_current(@context.truncate(compute_name(element), length: 30, separator: ' '), compute_path(element), element.options)
    end
  end
end

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
hyrax-1.1.1 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.3 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0.rc4 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0.rc3 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0.rc2 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0.rc1 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-1.1.0 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0.beta2 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.2 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.1.0.beta1 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.1 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0.rc3 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0.rc2 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0.rc1 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-1.0.5 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0.beta5 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0.beta4 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb
hyrax-2.0.0.beta3 app/builders/hyrax/bootstrap_breadcrumbs_builder.rb