2024-11-27 16:01:50 -05:00
|
|
|
<%# locals: (transaction:) %>
|
|
|
|
|
|
|
|
<div class="relative" data-controller="menu" id="<%= dom_id(transaction, :category_menu) %>">
|
2024-05-22 12:31:25 +02:00
|
|
|
<button data-menu-target="button" class="flex cursor-pointer">
|
2024-06-20 08:15:09 -04:00
|
|
|
<%= render partial: "categories/badge", locals: { category: transaction.category } %>
|
2024-04-04 17:29:50 -04:00
|
|
|
</button>
|
|
|
|
<div data-menu-target="content" class="absolute z-10 hidden w-screen mt-2 max-w-min cursor-default">
|
2024-12-20 11:37:26 -05:00
|
|
|
<div class="w-80 text-sm font-semibold leading-6 text-gray-900 bg-white shadow-lg shrink rounded-xl ring-1 ring-gray-900/5">
|
2024-11-27 16:01:50 -05:00
|
|
|
<%= turbo_frame_tag "category_dropdown", src: category_dropdown_path(category_id: transaction.category_id, transaction_id: transaction.id), loading: :lazy do %>
|
2024-05-22 12:31:25 +02:00
|
|
|
<div class="p-6 flex items-center justify-center">
|
|
|
|
<p class="text-sm text-gray-500 animate-pulse"><%= t(".loading") %></p>
|
2024-04-04 17:29:50 -04:00
|
|
|
</div>
|
2024-05-22 12:31:25 +02:00
|
|
|
<% end %>
|
2024-04-04 17:29:50 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|