notes: include search form on search results page.

Also eliminate /notes/search endpoint.
This commit is contained in:
evazion
2020-12-17 21:36:43 -06:00
parent 2c92794eba
commit 53653372ec
6 changed files with 9 additions and 24 deletions

View File

@@ -4,6 +4,14 @@
<div id="a-index">
<h1>Notes</h1>
<%= search_form_for(notes_path) do |f| %>
<%= f.hidden_field :group_by, value: "note" %>
<%= f.input :body_matches, label: "Note", hint: "Use * for wildcard", input_html: { value: params[:search][:body_matches] } %>
<%= f.input :post_tags_match, label: "Tags", input_html: { value: params[:search][:post_tags_match], "data-autocomplete": "tag-query" } %>
<%= f.submit "Search" %>
<% end %>
<%= table_for @notes, class: "striped autofit" do |t| %>
<% t.column "Post" do |note| %>
<%= link_to note.post_id, note.post %>
@@ -12,7 +20,7 @@
<%= link_to "#{note.id}.#{note.version}", post_path(note.post_id, anchor: "note-#{note.id}") %>
<%= link_to "»", note_versions_path(search: { note_id: note.id }) %>
<% end %>
<% t.column "Body", td: { class: "col-expand" } do |note| %>
<% t.column "Text", td: { class: "col-expand" } do |note| %>
<%= note.body %>
<% unless note.is_active? %>
<span class="inactive">(deleted)</span>