views: factor out search_form_for helper.

Refactor search forms to use `search_form_for` so that we can set common
options on all search forms, such as autocomplete="off" (#4162).
This commit is contained in:
evazion
2019-09-10 00:26:02 -05:00
parent 49d38d6256
commit 1743f3797f
21 changed files with 27 additions and 20 deletions

View File

@@ -1,4 +1,4 @@
<%= simple_form_for(:search, url: moderator_dashboard_path, method: :get) do |f| %>
<%= search_form_for(moderator_dashboard_path) do |f| %>
<%= f.input :min_date, as: :date, html5: true, input_html: { value: @dashboard.min_date } %>
<%= f.input :max_level, collection: User.level_hash.to_a, include_blank: true, selected: @dashboard.max_level %>
<%= f.submit "Search" %>

View File

@@ -2,7 +2,7 @@
<div id="a-index">
<h1>Disapprovals</h1>
<%= simple_form_for(:search, url: moderator_post_disapprovals_path, method: :get, defaults: { required: false }, html: { class: "inline-form" }) do |f| %>
<%= search_form_for(moderator_post_disapprovals_path) do |f| %>
<%= f.input :user_name, label: "Creator", input_html: { value: params[:search][:user_name] } %>
<%= f.input :post_id, label: "Post ID", input_html: { value: params[:search][:post_id] } %>
<%= f.input :post_tags_match, label: "Tags", input_html: { value: params[:search][:post_tags_match], data: { autocomplete: "tag-query" } } %>