Sha256: 1351289317e34d341ceae9ba2c563b1c0589fa765b7056356a54e74996c90bea

Contents?: true

Size: 1.31 KB

Versions: 43

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

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

module ActionView
  module Helpers # :nodoc:
    module ActiveModelHelper
    end

    # = Active \Model Instance Tag \Helpers
    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

43 entries across 43 versions & 6 rubygems

Version Path
actionview-8.0.2 lib/action_view/helpers/active_model_helper.rb
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/active_model_helper.rb
actionview-8.0.1 lib/action_view/helpers/active_model_helper.rb
actionview-8.0.0.1 lib/action_view/helpers/active_model_helper.rb
actionview-7.2.2.1 lib/action_view/helpers/active_model_helper.rb
actionview-7.1.5.1 lib/action_view/helpers/active_model_helper.rb
actionview-8.0.0 lib/action_view/helpers/active_model_helper.rb
actionview-7.2.2 lib/action_view/helpers/active_model_helper.rb
actionview-7.1.5 lib/action_view/helpers/active_model_helper.rb
actionview-8.0.0.rc2 lib/action_view/helpers/active_model_helper.rb
actionview-7.2.1.2 lib/action_view/helpers/active_model_helper.rb
actionview-7.1.4.2 lib/action_view/helpers/active_model_helper.rb
actionview-8.0.0.rc1 lib/action_view/helpers/active_model_helper.rb
actionview-7.2.1.1 lib/action_view/helpers/active_model_helper.rb
actionview-7.1.4.1 lib/action_view/helpers/active_model_helper.rb
actionview-8.0.0.beta1 lib/action_view/helpers/active_model_helper.rb
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/active_model_helper.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/active_model_helper.rb
omg-actionview-8.0.0.alpha7 lib/action_view/helpers/active_model_helper.rb
omg-actionview-8.0.0.alpha4 lib/action_view/helpers/active_model_helper.rb