Sha256: 3318507be131329eac758177592ebabdf4109244f4d28b6dfe71cdb5d2aeb421

Contents?: true

Size: 876 Bytes

Versions: 44

Compression:

Stored size: 876 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"
          yield options if block_given?
          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

44 entries across 43 versions & 8 rubygems

Version Path
actionview-4.2.11.3 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.11.2 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.11.1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.11 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.10 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.10.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.9 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.9.rc2 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.9.rc1 lib/action_view/helpers/tags/text_field.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/actionview-4.2.8/lib/action_view/helpers/tags/text_field.rb
actionview-4.2.8 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.8.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.7.1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.7 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.7.rc1 lib/action_view/helpers/tags/text_field.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/actionview-4.2.6/lib/action_view/helpers/tags/text_field.rb
actionview-4.2.6 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.6.rc1 lib/action_view/helpers/tags/text_field.rb
actionview-4.2.5.2 lib/action_view/helpers/tags/text_field.rb
activejob-lock-0.0.2 rails/actionview/lib/action_view/helpers/tags/text_field.rb