Sha256: 8dbd68bb1ddd12a33997c794cf136129706f41a571a612e0234409174d81044f

Contents?: true

Size: 860 Bytes

Versions: 114

Compression:

Stored size: 860 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

114 entries across 106 versions & 7 rubygems

Version Path
actionview-5.2.8.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.8 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.7.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.7 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.6.3 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.6.2 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.6.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.6 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.4.6 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.5 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.4.5 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.4.4 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.4.3 lib/action_view/helpers/tags/text_field.rb
actionview-6.0.2.2 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.4.2 lib/action_view/helpers/tags/text_field.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/text_field.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/actionview-6.0.2.1/lib/action_view/helpers/tags/text_field.rb
actionview-6.0.2.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.2.4.1 lib/action_view/helpers/tags/text_field.rb
actionview-6.0.2 lib/action_view/helpers/tags/text_field.rb