Sha256: ed17bf81cda561a1839a79c3fd74934dfc6c1267038a4ffdc6a5d8c39dd3d84e

Contents?: true

Size: 1.26 KB

Versions: 59

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

require "active_support/core_ext/module/attribute_accessors"
require "active_support/core_ext/enumerable"

module ActionView
  # = Active Model Helpers
  module Helpers #:nodoc:
    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(type, options, *)
        select_markup_helper?(type) ? super : 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 select_markup_helper?(type)
          ["optgroup", "option"].include?(type)
        end

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

Version data entries

59 entries across 59 versions & 4 rubygems

Version Path
actionview-6.1.7.10 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.9 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.8 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.7 lib/action_view/helpers/active_model_helper.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.6 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.5 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.4 lib/action_view/helpers/active_model_helper.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.3 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.2 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7.1 lib/action_view/helpers/active_model_helper.rb
actionview-6.0.6.1 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.7 lib/action_view/helpers/active_model_helper.rb
actionview-6.0.6 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.6.1 lib/action_view/helpers/active_model_helper.rb
actionview-6.0.5.1 lib/action_view/helpers/active_model_helper.rb
actionview-6.0.5 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.6 lib/action_view/helpers/active_model_helper.rb
actionview-6.1.5.1 lib/action_view/helpers/active_model_helper.rb