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.5 lib/action_view/helpers/tags/text_field.rb
actionview-8.0.0.beta1 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha7 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha4 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha3 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha2 lib/action_view/helpers/tags/text_field.rb
omg-actionview-8.0.0.alpha1 lib/action_view/helpers/tags/text_field.rb
actionview-7.1.4 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.1 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.0 lib/action_view/helpers/tags/text_field.rb
actionview-7.2.0.rc1 lib/action_view/helpers/tags/text_field.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/helpers/tags/text_field.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/text_field.rb
actionview-7.2.0.beta3 lib/action_view/helpers/tags/text_field.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/text_field.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/text_field.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/text_field.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/text_field.rb