rails8-memoapp/app/views/memos/index.html.erb

31 lines
1.2 KiB
Text
Raw Normal View History

2025-02-20 22:46:52 +09:00
<div class="mb-8 mt-8">
<div class="flex items-center gap-4">
2025-02-24 22:51:13 +09:00
<%= search_form_for @q, html: { data: { turbo_frame: "memos", controller: "search" } } do |f| %>
2025-02-20 22:46:52 +09:00
<div class="relative">
<%= f.text_field :content_cont,
2025-02-20 22:46:52 +09:00
class: "w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500",
placeholder: "検索...",
2025-02-24 22:51:13 +09:00
data: { action: "input->search#search" } %>
2025-02-20 22:46:52 +09:00
</div>
<% end %>
<%= link_to new_memo_path, class: "bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded-lg transition-colors duration-200" do %>
<span class="flex items-center">
出力開始
</span>
<% end %>
</div>
</div>
<%= turbo_frame_tag "memos" do %>
<div id="memos-container" class="flex flex-col gap-4">
<%= render @memos %>
<%= render "empty_results", query: @q&.content_cont if @memos.empty? %>
</div>
<div class="text-center mt-8">
<%= link_to_next_page @memos, "気力十分😤",
2025-02-20 22:46:52 +09:00
class: "inline-flex items-center px-4 py-2 bg-blue-500 hover:bg-blue-600 text-white font-medium rounded-lg transition-colors duration-200",
2025-02-24 22:51:13 +09:00
data: { turbo_frame: "memos-container" } %>
</div>
<% end %>