diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 921f183e5..02ddbe8e6 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -162,6 +162,13 @@ module ApplicationHelper tag.input value: "Preview", type: "button", class: "dtext-preview-button", "data-input-id": input_id, "data-preview-id": preview_id end + def search_form_for(url, classes: "inline-form", &block) + defaults = { required: false } + html_options = { autocomplete: "off", class: "search-form #{classes}" } + + simple_form_for(:search, method: :get, url: url, defaults: defaults, html: html_options, &block) + end + def search_field(method, label: method.titleize, hint: nil, value: nil, **attributes) content_tag(:div, class: "input") do label_html = label_tag("search_#{method}", label) diff --git a/app/views/artist_commentaries/search.html.erb b/app/views/artist_commentaries/search.html.erb index bc8292a63..78b98139a 100644 --- a/app/views/artist_commentaries/search.html.erb +++ b/app/views/artist_commentaries/search.html.erb @@ -2,7 +2,7 @@