Sha256: b26922e5e3bb31ac0e96c8b5c61923680574b5e3e60139f929204f3907ed575b

Contents?: true

Size: 948 Bytes

Versions: 2

Compression:

Stored size: 948 Bytes

Contents

module Admin::Resources::DataTypes::StringHelper

  def display_string(item, attribute)
    item.send(attribute)
  end

  alias_method :display_text, :display_string
  alias_method :display_position, :display_string
  alias_method :display_integer, :display_string
  alias_method :display_decimal, :display_string

  def string_filter(filter)
    values = set_context.send(filter.to_s).to_a

    items = [[Typus::I18n.t("Show by %{attribute}", :attribute => @resource.human_attribute_name(filter).downcase), ""]]
    array = values.first.is_a?(Array) ? values : values.map { |i| [i, i] }
    items += array
  end

  def table_string_field(attribute, item)
    (raw_content = item.send(attribute)).present? ? raw_content : "—".html_safe
  end

  alias :table_decimal_field :table_string_field
  alias :table_float_field :table_string_field
  alias :table_integer_field :table_string_field
  alias :table_virtual_field :table_string_field

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typus-3.1.0.rc8 app/helpers/admin/resources/data_types/string_helper.rb
typus-3.1.0.rc7 app/helpers/admin/resources/data_types/string_helper.rb