rails8-memoapp/app/views/memos/index.turbo_stream.erb
2025-02-20 22:46:52 +09:00

11 lines
421 B
Text

<%= turbo_stream.append "memos" do %>
<%= render @memos %>
<% end %>
<%= turbo_stream.update "load-more" do %>
<% if @pagy.next %>
<%= link_to "もっと見る",
pagy_url_for(@pagy, @pagy.next),
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_method: :get } %>
<% end %>
<% end %>