mirror of
https://github.com/we-promise/sure.git
synced 2026-04-12 16:47:22 +00:00
* feat: Add duplicate button when a transaction is selected * feat: add merchant field * feat: add duplicate transaction btn 2
35 lines
1.8 KiB
Plaintext
35 lines
1.8 KiB
Plaintext
<div class="fixed bottom-[calc(5rem_+_env(safe-area-inset-bottom))] md:bottom-6 z-50 flex items-center justify-between rounded-xl bg-surface-inset border-secondary shadow-border-xs px-4 text-sm text-primary md:w-[420px] w-[90%] py-1.5">
|
|
<div class="flex items-center gap-2">
|
|
<%= check_box_tag "entry_selection", 1, true, class: "checkbox checkbox--light", data: { action: "bulk-select#deselectAll" } %>
|
|
|
|
<p data-bulk-select-target="selectionBarText"></p>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-1 text-secondary">
|
|
<%= turbo_frame_tag "bulk_transaction_edit_drawer" %>
|
|
|
|
<%= link_to new_transaction_path,
|
|
class: "p-1.5 group/duplicate hover:bg-inverse flex items-center justify-center rounded-md hidden",
|
|
title: t("transactions.selection_bar.duplicate"),
|
|
data: {
|
|
turbo_frame: "modal",
|
|
bulk_select_target: "duplicateLink"
|
|
} do %>
|
|
<%= icon "copy", class: "group-hover/duplicate:text-inverse" %>
|
|
<% end %>
|
|
|
|
<%= link_to new_transactions_bulk_update_path,
|
|
class: "p-1.5 group/edit hover:bg-inverse flex items-center justify-center rounded-md",
|
|
title: t("transactions.selection_bar.edit"),
|
|
data: { turbo_frame: "bulk_transaction_edit_drawer" } do %>
|
|
<%= icon "pencil-line", class: "group-hover/edit:text-inverse" %>
|
|
<% end %>
|
|
|
|
<%= form_with url: transactions_bulk_deletion_path, data: { turbo_confirm: true, turbo_frame: "_top" } do %>
|
|
<button type="button" data-bulk-select-scope-param="bulk_delete" data-action="bulk-select#submitBulkRequest" class="p-1.5 group/delete hover:bg-inverse flex items-center justify-center rounded-md" title="Delete">
|
|
<%= icon "trash-2", class: "group-hover/delete:text-inverse" %>
|
|
</button>
|
|
<% end %>
|
|
</div>
|
|
</div>
|