Sha256: d81923af6abe34c91d8f86fda84e4792affd2419a6777a1a14a2b277b0cc77bc
Contents?: true
Size: 1.93 KB
Versions: 23
Compression:
Stored size: 1.93 KB
Contents
# frozen_string_literal: true module Blacklight class DocumentTitleComponent < Blacklight::Component renders_many :before_titles renders_many :after_titles renders_many :actions # rubocop:disable Metrics/ParameterLists def initialize(title = nil, document: nil, presenter: nil, as: :h3, counter: nil, classes: 'index_title document-title-heading col', link_to_document: true, document_component: nil, actions: true) raise ArgumentError, 'missing keyword: :document or :presenter' if presenter.nil? && document.nil? @title = title @document = document @presenter = presenter @as = as || :h3 @counter = counter @classes = classes @link_to_document = link_to_document @document_component = document_component @actions = actions end # rubocop:enable Metrics/ParameterLists # Content for the document title area; should be an inline element def title if @link_to_document helpers.link_to_document presenter.document, @title.presence || content.presence, counter: @counter, itemprop: 'name' else content_tag('span', @title.presence || content.presence || presenter.heading, itemprop: 'name') end end # Content for the document actions area def actions return [] unless @actions if block_given? @has_actions_slot = true return super end (@has_actions_slot && get_slot(:actions)) || ([@document_component&.actions] if @document_component&.actions.present?) || [helpers.render_index_doc_actions(presenter.document, wrapping_class: 'index-document-functions col-sm-3 col-lg-2')] end def counter return unless @counter content_tag :span, class: 'document-counter' do t('blacklight.search.documents.counter', counter: @counter) end end private def presenter @presenter ||= helpers.document_presenter(@document) end end end
Version data entries
23 entries across 23 versions & 2 rubygems