aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/search_field.rb
blob: 38304d8d73dbab73a7d2697b7ae6d021fd9c9570 (plain) (tree)
1
2
3
4
5
6
7
8
                             

                 

                                             
                  
                                           
 


                                                                             
               




                                                                                
             


                            




           
# frozen_string_literal: true
module ActionView
  module Helpers
    module Tags # :nodoc:
      class SearchField < TextField # :nodoc:
        def render
          options = @options.stringify_keys

          if options["autosave"]
            if options["autosave"] == true
              options["autosave"] = request.host.split(".").reverse.join(".")
            end
            options["results"] ||= 10
          end

          if options["onsearch"]
            options["incremental"] = true unless options.has_key?("incremental")
          end

          @options = options
          super
        end
      end
    end
  end
end