Sha256: bbe4551d4e6b20e37e5f21caeb8fe71801bea2cb5da64d48931536fcaab324fe

Contents?: true

Size: 859 Bytes

Versions: 141

Compression:

Stored size: 859 Bytes

Contents

# frozen_string_literal: true

require "action_view/helpers/tags/placeholderable"

module ActionView
  module Helpers
    module Tags # :nodoc:
      class TextField < Base # :nodoc:
        include Placeholderable

        def render
          options = @options.stringify_keys
          options["size"] = options["maxlength"] unless options.key?("size")
          options["type"] ||= field_type
          options["value"] = options.fetch("value") { value_before_type_cast } unless field_type == "file"
          add_default_name_and_id(options)
          tag("input", options)
        end

        class << self
          def field_type
            @field_type ||= name.split("::").last.sub("Field", "").downcase
          end
        end

        private
          def field_type
            self.class.field_type
          end
      end
    end
  end
end

Version data entries

141 entries across 136 versions & 11 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/text_field.rb
actionview-8.0.1 lib/action_view/helpers/tags/text_field.rb
actionview-8.0.0.1 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.2.1 lib/action_view/helpers/tags/text_field.rb
actionview-7.1.5.1 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.8.7 lib/action_view/helpers/tags/text_field.rb
actionview-8.0.0 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.2 lib/action_view/helpers/tags/text_field.rb
actionview-7.1.5 lib/action_view/helpers/tags/text_field.rb
actionview-8.0.0.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.1.2 lib/action_view/helpers/tags/text_field.rb
actionview-7.1.4.2 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.8.6 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.10 lib/action_view/helpers/tags/text_field.rb
actionview-8.0.0.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.9 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.1.1 lib/action_view/helpers/tags/text_field.rb
actionview-7.1.4.1 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.8.5 lib/action_view/helpers/tags/text_field.rb
actionview-8.0.0.beta1 lib/action_view/helpers/tags/text_field.rb