2025-04-18 18:53:10 +05:30
|
|
|
<div class="fixed bottom-30 md:bottom-6 z-10 flex items-center justify-between rounded-xl bg-gray-900 px-4 text-sm text-white md:w-[420px] w-[90%] py-1.5">
|
2024-06-07 12:44:06 -04:00
|
|
|
<div class="flex items-center gap-2">
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= check_box_tag "entry_selection", 1, true, class: "checkbox checkbox--dark", data: { action: "bulk-select#deselectAll" } %>
|
2024-06-07 12:44:06 -04:00
|
|
|
|
|
|
|
<p data-bulk-select-target="selectionBarText"></p>
|
|
|
|
</div>
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
<div class="flex items-center gap-1 text-secondary">
|
2024-06-07 18:59:46 -04:00
|
|
|
<%= turbo_frame_tag "bulk_transaction_edit_drawer" %>
|
2025-04-14 11:40:34 -04:00
|
|
|
<%= link_to new_transactions_bulk_update_path,
|
2024-06-07 18:59:46 -04:00
|
|
|
class: "p-1.5 group hover:bg-gray-700 flex items-center justify-center rounded-md",
|
|
|
|
title: "Edit",
|
|
|
|
data: { turbo_frame: "bulk_transaction_edit_drawer" } do %>
|
2024-06-07 12:44:06 -04:00
|
|
|
<%= lucide_icon "pencil-line", class: "w-5 group-hover:text-white" %>
|
|
|
|
<% end %>
|
|
|
|
|
2025-04-14 11:40:34 -04:00
|
|
|
<%= form_with url: transactions_bulk_deletion_path, data: { turbo_confirm: true, turbo_frame: "_top" } do %>
|
2024-06-07 18:59:46 -04:00
|
|
|
<button type="button" data-bulk-select-scope-param="bulk_delete" data-action="bulk-select#submitBulkRequest" class="p-1.5 group hover:bg-gray-700 flex items-center justify-center rounded-md" title="Delete">
|
2024-06-07 16:56:30 -04:00
|
|
|
<%= lucide_icon "trash-2", class: "w-5 group-hover:text-white" %>
|
|
|
|
</button>
|
2024-06-07 12:44:06 -04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|