Sha256: bbe4551d4e6b20e37e5f21caeb8fe71801bea2cb5da64d48931536fcaab324fe

Contents?: true

Size: 859 Bytes

Versions: 143

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

143 entries across 137 versions & 11 rubygems

Version Path
actionview-7.0.8 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.7.2 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.6 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.7.1 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.5 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.7 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.6 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.5.1 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.4 lib/action_view/helpers/tags/text_field.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/tags/text_field.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/tags/text_field.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/tags/text_field.rb
actionview-7.0.5 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.4.3 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.3 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.2 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.4.2 lib/action_view/helpers/tags/text_field.rb
actionview-7.0.4.1 lib/action_view/helpers/tags/text_field.rb
actionview-6.1.7.1 lib/action_view/helpers/tags/text_field.rb
actionview-6.0.6.1 lib/action_view/helpers/tags/text_field.rb