Sha256: ae37a08d5d7945606395a3b05e4de03f40566493637a5ca21c05af2a62735306

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

class ActiveRecord::Base

  def self.relationship_with(model)
    association = reflect_on_association(model.table_name.to_sym) ||
                  reflect_on_association(model.model_name.underscore.to_sym)
    association.macro
  end

  #--
  # On a model:
  #
  #     class Post < ActiveRecord::Base
  #       STATUS = {  t("Published") => "published",
  #                   t("Pending") => "pending",
  #                   t("Draft") => "draft" }
  #     end
  #
  #     >> Post.first.status
  #     => "published"
  #     >> Post.first.mapping(:status)
  #     => "Published"
  #     >> I18n.locale = :es
  #     => :es
  #     >> Post.first.mapping(:status)
  #     => "Publicado"
  #++
  def mapping(attribute)
    klass = self.class
    values = if klass.const_defined?(attribute.upcase)
               klass::const_get(attribute.upcase)
             else
               klass.send(attribute)
             end

    array = values.first.is_a?(Array) ? values : values.map { |i| [i, i] }

    value = array.rassoc(send(attribute))
    value ? value.first : send(attribute)
  end

  def to_label
    if respond_to?(:name) && send(:name).present?
      send(:name)
    else
      [self.class, id].join("#")
    end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
typus-3.1.0.rc4 lib/support/active_record.rb
typus-3.1.0.rc3 lib/support/active_record.rb
typus-3.1.0.rc2 lib/support/active_record.rb
typus-3.1.0.rc1 lib/support/active_record.rb