Sha256: a820ed0b9da5bdbb52789b384cd1fbd5c4f6da625ba3eda90197e2c700243930

Contents?: true

Size: 1.24 KB

Versions: 152

Compression:

Stored size: 1.24 KB

Contents

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

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

      %w(content_tag to_date_select_tag to_datetime_select_tag to_time_select_tag).each do |meth|
        module_eval "def #{meth}(*) error_wrapping(super) end", __FILE__, __LINE__
      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?(:full_messages) && error_message.any?
      end

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

Version data entries

152 entries across 113 versions & 18 rubygems

Version Path
actionpack-3.2.22.5 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.22.4 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.22.3 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.22.2 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.22.1 lib/action_view/helpers/active_model_helper.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.22 lib/action_view/helpers/active_model_helper.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/actionpack-3.2.12/lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.21 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.20 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.19 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.18 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.17 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.16 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.15 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.15.rc3 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.15.rc2 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.15.rc1 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.14 lib/action_view/helpers/active_model_helper.rb
actionpack-3.2.14.rc2 lib/action_view/helpers/active_model_helper.rb