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
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-5.0.1/lib/action_view/helpers/tags/text_field.rb
abaci-0.3.0 vendor/bundle/gems/actionview-5.0.0/lib/action_view/helpers/tags/text_field.rb
actionview-5.0.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.1.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.1.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.racecar1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.beta4 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.beta3 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.beta2 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.beta1.1 lib/action_view/helpers/tags/text_field.rb
actionview-5.0.0.beta1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.0 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.0.rc3 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.0.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.0.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.0.beta4 lib/action_view/helpers/tags/text_field.rb