Sha256: 6d43c61ebf7a8706670a62ccd9f49d9f040d31a762bd6685f20d0082fe754bca

Contents?: true

Size: 1.06 KB

Versions: 30

Compression:

Stored size: 1.06 KB

Contents

require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/core_ext/enumerable'

module ActionView
  # = Active Model Helpers
  module Helpers
    module ActiveModelHelper
    end

    module ActiveModelInstanceTag
      def object
        @active_model_object ||= begin
          object = super
          object.respond_to?(:to_model) ? object.to_model : object
        end
      end

      def content_tag(*)
        error_wrapping(super)
      end

      def tag(type, options, *)
        tag_generate_errors?(options) ? error_wrapping(super) : super
      end

      def error_wrapping(html_tag)
        if object_has_errors?
          Base.field_error_proc.call(html_tag, self)
        else
          html_tag
        end
      end

      def error_message
        object.errors[@method_name]
      end

      private

      def object_has_errors?
        object.respond_to?(:errors) && object.errors.respond_to?(:[]) && error_message.present?
      end

      def tag_generate_errors?(options)
        options['type'] != 'hidden'
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
actionpack-4.0.13 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.13.rc1 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.11.1 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.12 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.11 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.10 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.10.rc2 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.10.rc1 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.9 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.8 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.7 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.6 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.6.rc3 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.6.rc2 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.6.rc1 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.5 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.4 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.4.rc1 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.3 lib/action_view/helpers/active_model_helper.rb
actionpack-4.0.2 lib/action_view/helpers/active_model_helper.rb