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">
|
2025-02-22 23:39:32 +09:00
|
|
|
|
<%= 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 %>
|
2025-02-25 09:23:00 +09:00
|
|
|
|
<%= 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",
|
|
|
|
|
data: { turbo_frame: "modal" } do %>
|
|
|
|
|
<span class="flex items-center">
|
2025-02-26 06:57:17 +09:00
|
|
|
|
+ 入力
|
2025-02-25 09:23:00 +09:00
|
|
|
|
</span>
|
|
|
|
|
<% end %>
|
2025-02-20 22:46:52 +09:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-02-25 09:23:00 +09:00
|
|
|
|
<%= turbo_frame_tag "memos", data: { turbo_action: :advance } do %>
|
2025-02-22 22:33:09 +09:00
|
|
|
|
<div id="memos-container" class="flex flex-col gap-4">
|
|
|
|
|
<%= render @memos %>
|
2025-02-22 23:39:32 +09:00
|
|
|
|
<%= render "empty_results", query: @q&.content_cont if @memos.empty? %>
|
2025-02-22 22:33:09 +09:00
|
|
|
|
</div>
|
2025-02-26 06:57:17 +09:00
|
|
|
|
<% unless @memos.empty? %>
|
|
|
|
|
<div class="text-center mt-8 flex justify-center items-center gap-4">
|
|
|
|
|
<div class="flex-1 text-right">
|
|
|
|
|
<%= link_to_previous_page @memos, "後退",
|
|
|
|
|
class: "inline-flex items-center px-4 py-2 bg-gray-500 hover:bg-gray-600 text-white font-medium rounded-lg transition-colors duration-200",
|
|
|
|
|
data: { turbo_frame: "memos-container" } if @memos.current_page > 1 %>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="text-gray-700 mx-2">
|
|
|
|
|
<%= @memos.current_page %> / <%= @memos.total_pages %> 枚数
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex-1 text-left">
|
|
|
|
|
<%= link_to_next_page @memos, "前進",
|
|
|
|
|
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",
|
|
|
|
|
data: { turbo_frame: "memos-container" } %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<% end %>
|
2025-02-22 23:39:32 +09:00
|
|
|
|
<% end %>
|