Sha256: 2cf539d7fd7f26aee0a32499bb14b59d7e96045afac8f0765da5334b47fb745c

Contents?: true

Size: 837 Bytes

Versions: 20

Compression:

Stored size: 837 Bytes

Contents

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(object) } 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

20 entries across 20 versions & 1 rubygems

Version Path
actionview-5.1.7 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.7.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.6.2 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.6.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.6 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.5 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.5.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.4 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.4.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.3 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.3.rc3 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.3.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.3.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.2 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.2.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.0 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.0.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.0.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.1.0.beta1 lib/action_view/helpers/tags/text_field.rb