Sha256: c5e9ecd82aecdf62111e10941e02c25c25168f2941797115789ee121b661cd2e

Contents?: true

Size: 836 Bytes

Versions: 43

Compression:

Stored size: 836 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 ||= self.name.split("::").last.sub("Field", "").downcase
          end
        end

        private

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

Version data entries

43 entries across 43 versions & 4 rubygems

Version Path
actionview-5.0.7.2 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.7.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.7 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.6 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.6.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.5 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.5.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.5.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.4 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.4.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.3 lib/action_view/helpers/tags/text_field.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actionview-5.0.2/lib/action_view/helpers/tags/text_field.rb
actionview-5.0.2 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.2.rc1 lib/action_view/helpers/tags/text_field.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb