Module: Hyrax::PresentsAttributes

Included in:
CollectionPresenter, FileSetPresenter, WorkShowPresenter
Defined in:
app/presenters/hyrax/presents_attributes.rb

Instance Method Summary collapse

Instance Method Details

#attribute_to_html(field, options = {}) ⇒ Object

Present the attribute as an HTML table row.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :render_as (Symbol)

    use an alternate renderer (e.g., :linked or :linked_attribute to use LinkedAttributeRenderer)

  • :search_field (String)

    If the method_name of the attribute is different than how the attribute name should appear on the search URL, you can explicitly set the URL’s search field name

  • :label (String)

    The default label for the field if no translation is found

  • :include_empty (TrueClass, FalseClass)

    should we display a row if there are no values?



14
15
16
17
18
19
20
21
# File 'app/presenters/hyrax/presents_attributes.rb', line 14

def attribute_to_html(field, options = {})
  unless respond_to?(field)
    Rails.logger.warn("#{self.class} attempted to render #{field}, but no method exists with that name.")
    return
  end

  renderer_for(field, options).new(field, send(field), options).render
end

#display_microdata?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'app/presenters/hyrax/presents_attributes.rb', line 31

def display_microdata?
  Hyrax.config.display_microdata?
end

#microdata_type_to_htmlObject



35
36
37
38
39
# File 'app/presenters/hyrax/presents_attributes.rb', line 35

def microdata_type_to_html
  return "" unless display_microdata?
  value = Microdata.fetch(microdata_type_key, default: Hyrax.config.microdata_default_type)
  " itemscope itemtype=\"#{value}\"".html_safe
end

#permission_badgeObject



23
24
25
# File 'app/presenters/hyrax/presents_attributes.rb', line 23

def permission_badge
  permission_badge_class.new(solr_document.visibility).render
end

#permission_badge_classObject



27
28
29
# File 'app/presenters/hyrax/presents_attributes.rb', line 27

def permission_badge_class
  PermissionBadge
end