# frozen_string_literal: true
module Decidim
module Admin
# Custom helpers, scoped to the admin panel.
#
module AttributesDisplayHelper
# Displays the given attributes list in a list. This is a simple
# `show_for` alternative, so there's no way to modify how an attribute is
# shown and there is no intention on adding this. It is intnded to be
# used inside a `dl` HTML tag, so you can customize how a specific
# attribute has to be shown directly:
#
#
# <%= display_for @post, :title, :body %>
# - Comments number
# - 2
#
#
# This will render this HTML:
#
#
# - Title
# - Hello, world!
# - Body
# - Lorem ipsum dolor sit amet...
# - Comments number
# - 2
#
#
# record - any Ruby object that needs some attributes rendered
# attrs - a list of N attributes of the `record`.
def display_for(record, *attrs)
attrs.map do |attr|
if record.column_for_attribute(attr).type == :hstore
I18n.available_locales.map do |locale|
display_label(record, attr, locale) + display_value(record, attr, locale)
end.reduce(:+)
else
display_label(record, attr) + display_value(record, attr)
end
end.reduce(:+)
end
# Holds the logic to render a label for a given attribute.
def display_label(record, attr, locale = nil)
return content_tag(:dt, record.class.human_attribute_name(attr)) unless locale
content_tag(:dt, record.class.human_attribute_name(attr) + " (#{locale})")
end
private
# Private: Holds the logic to render the attribute value.
def display_value(record, attr, locale = nil)
return I18n.with_locale(locale) do
content_tag(:dd, translated_attribute(record.send(attr)).try(:html_safe))
end if locale
content_tag(:dd, record.send(attr).try(:html_safe))
end
end
end
end