Sha256: 54c4ccdc70772caa04f06f95bb8f530e63292d6f2f494e92946ba53ec3c7ff25

Contents?: true

Size: 1.29 KB

Versions: 35

Compression:

Stored size: 1.29 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?
          @template_object.instance_exec(html_tag, self, &Base.field_error_proc)
        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

35 entries across 33 versions & 4 rubygems

Version Path
actionview-7.0.8.6 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.8.5 lib/action_view/helpers/active_model_helper.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/helpers/active_model_helper.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/active_model_helper.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/active_model_helper.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/active_model_helper.rb
actionview-7.0.8.4 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.8.1 lib/action_view/helpers/active_model_helper.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/active_model_helper.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/active_model_helper.rb
actionview-7.0.8 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.7.2 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.7.1 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.7 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.6 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.5.1 lib/action_view/helpers/active_model_helper.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/active_model_helper.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/active_model_helper.rb
actionview-7.0.5 lib/action_view/helpers/active_model_helper.rb
actionview-7.0.4.3 lib/action_view/helpers/active_model_helper.rb