2024-08-09 11:22:57 -04:00
|
|
|
<% entry, transaction, account = @entry, @entry.account_transaction, @entry.account %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
|
|
|
<%= drawer do %>
|
|
|
|
<div>
|
|
|
|
<header class="mb-4 space-y-1">
|
|
|
|
<div class="flex items-center gap-4">
|
|
|
|
<h3 class="font-medium">
|
|
|
|
<span class="text-2xl"><%= format_money -entry.amount_money %></span>
|
|
|
|
<span class="text-lg text-gray-500"><%= entry.currency %></span>
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
<% if entry.marked_as_transfer? %>
|
|
|
|
<%= lucide_icon "arrow-left-right", class: "text-gray-500 mt-1 w-5 h-5" %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<span class="text-sm text-gray-500"><%= entry.date.strftime("%A %d %B") %></span>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="space-y-2">
|
|
|
|
<details class="group space-y-2" open>
|
|
|
|
<summary class="flex list-none items-center justify-between rounded-xl px-3 py-2 text-xs font-medium uppercase text-gray-500 bg-gray-25 focus-visible:outline-none">
|
|
|
|
<h4><%= t(".overview") %></h4>
|
|
|
|
<%= lucide_icon "chevron-down", class: "group-open:transform group-open:rotate-180 text-gray-500 w-5" %>
|
|
|
|
</summary>
|
|
|
|
|
|
|
|
<div class="pb-6">
|
2024-08-09 11:22:57 -04:00
|
|
|
<%= styled_form_with model: [account, entry], url: account_transaction_path(account, entry), class: "space-y-2", data: { controller: "auto-submit-form" } do |f| %>
|
2024-07-16 14:08:24 -04:00
|
|
|
<%= f.text_field :name, label: t(".name_label"), "data-auto-submit-form-target": "auto" %>
|
|
|
|
<% unless entry.marked_as_transfer? %>
|
|
|
|
<div class="flex space-x-2">
|
|
|
|
<div>
|
|
|
|
<%= f.select :nature, [["Expense", "expense"], ["Income", "income"]], { label: t(".nature"), selected: entry.amount.negative? ? "income" : "expense" }, "data-auto-submit-form-target": "auto" %>
|
2024-07-03 21:54:05 +02:00
|
|
|
</div>
|
2024-07-16 14:08:24 -04:00
|
|
|
<div class="flex-grow">
|
|
|
|
<%= f.number_field :amount, value: entry.amount.abs, label: t(".amount"), step: "0.01", "data-auto-submit-form-target": "auto", "data-autosubmit-trigger-event": "change" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<%= f.date_field :date, label: t(".date_label"), max: Date.current, "data-auto-submit-form-target": "auto" %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-07-16 14:08:24 -04:00
|
|
|
<%= f.fields_for :entryable do |ef| %>
|
|
|
|
<% unless entry.marked_as_transfer? %>
|
|
|
|
<%= ef.collection_select :category_id, Current.family.categories.alphabetically, :id, :name, { prompt: t(".category_placeholder"), label: t(".category_label"), class: "text-gray-400" }, "data-auto-submit-form-target": "auto" %>
|
|
|
|
<%= ef.collection_select :merchant_id, Current.family.merchants.alphabetically, :id, :name, { prompt: t(".merchant_placeholder"), label: t(".merchant_label"), class: "text-gray-400" }, "data-auto-submit-form-target": "auto" %>
|
2024-07-01 10:49:43 -04:00
|
|
|
<% end %>
|
2024-07-16 14:08:24 -04:00
|
|
|
<% end %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
2024-07-16 14:08:24 -04:00
|
|
|
<%= f.collection_select :account_id, Current.family.accounts.alphabetically, :id, :name, { prompt: t(".account_placeholder"), label: t(".account_label"), class: "text-gray-500" }, { class: "form-field__input cursor-not-allowed text-gray-400", disabled: "disabled" } %>
|
2024-07-01 10:49:43 -04:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<details class="group space-y-2" open>
|
|
|
|
<summary class="flex list-none items-center justify-between rounded-xl px-3 py-2 text-xs font-medium uppercase text-gray-500 bg-gray-25 focus-visible:outline-none">
|
|
|
|
<h4><%= t(".additional") %></h4>
|
|
|
|
<%= lucide_icon "chevron-down", class: "group-open:transform group-open:rotate-180 text-gray-500 w-5" %>
|
|
|
|
</summary>
|
|
|
|
|
2024-07-16 14:08:24 -04:00
|
|
|
<div class="pb-6">
|
2024-08-09 11:22:57 -04:00
|
|
|
<%= styled_form_with model: [account, entry], url: account_transaction_path(account, entry), class: "space-y-2", data: { controller: "auto-submit-form" } do |f| %>
|
2024-07-01 10:49:43 -04:00
|
|
|
|
|
|
|
<%= f.fields_for :entryable do |ef| %>
|
|
|
|
<%= ef.select :tag_ids,
|
2024-07-16 14:08:24 -04:00
|
|
|
options_for_select(Current.family.tags.alphabetically.pluck(:name, :id), transaction.tag_ids),
|
2024-07-01 10:49:43 -04:00
|
|
|
{
|
|
|
|
multiple: true,
|
2024-08-09 11:22:57 -04:00
|
|
|
label: t(".tags_label"),
|
|
|
|
class: "placeholder:text-gray-500"
|
2024-07-01 10:49:43 -04:00
|
|
|
},
|
|
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<%= ef.text_area :notes, label: t(".note_label"), placeholder: t(".note_placeholder"), "data-auto-submit-form-target": "auto" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<details class="group space-y-2" open>
|
|
|
|
<summary class="flex list-none items-center justify-between rounded-xl px-3 py-2 text-xs font-medium uppercase text-gray-500 bg-gray-25 focus-visible:outline-none">
|
|
|
|
<h4><%= t(".settings") %></h4>
|
|
|
|
<%= lucide_icon "chevron-down", class: "group-open:transform group-open:rotate-180 text-gray-500 w-5" %>
|
|
|
|
</summary>
|
|
|
|
|
|
|
|
<div class="pb-6">
|
2024-08-09 11:22:57 -04:00
|
|
|
<%= styled_form_with model: [account, entry], url: account_transaction_path(account, entry), class: "p-3 space-y-3", data: { controller: "auto-submit-form" } do |f| %>
|
2024-07-01 10:49:43 -04:00
|
|
|
<%= f.fields_for :entryable do |ef| %>
|
|
|
|
<div class="flex cursor-pointer items-center gap-2 justify-between">
|
|
|
|
<div class="text-sm space-y-1">
|
|
|
|
<h4 class="text-gray-900"><%= t(".exclude_title") %></h4>
|
|
|
|
<p class="text-gray-500"><%= t(".exclude_subtitle") %></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="relative inline-block select-none">
|
|
|
|
<%= ef.check_box :excluded, class: "sr-only peer", "data-auto-submit-form-target": "auto" %>
|
|
|
|
<label for="account_entry_entryable_attributes_excluded" class="maybe-switch"></label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% unless entry.marked_as_transfer? %>
|
|
|
|
<div class="flex items-center justify-between gap-2 p-3">
|
|
|
|
<div class="text-sm space-y-1">
|
|
|
|
<h4 class="text-gray-900"><%= t(".delete_title") %></h4>
|
|
|
|
<p class="text-gray-500"><%= t(".delete_subtitle") %></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= button_to t(".delete"),
|
|
|
|
account_entry_path(account, entry),
|
|
|
|
method: :delete,
|
2024-08-09 11:22:57 -04:00
|
|
|
class: "rounded-lg px-3 py-2 text-red-500 text-sm font-medium border border-alpha-black-200",
|
|
|
|
data: { turbo_confirm: true, turbo_frame: "_top" } %>
|
2024-07-01 10:49:43 -04:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</details>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|