mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 12:05:19 +02:00
135 lines
5.1 KiB
Text
135 lines
5.1 KiB
Text
<%= drawer(reload_on_close: true) do %>
|
|
<%= render "account/transactions/header", entry: @entry %>
|
|
|
|
<div class="space-y-2">
|
|
<!-- Overview Section -->
|
|
<%= disclosure t(".overview") do %>
|
|
<div class="pb-4">
|
|
<%= styled_form_with model: @entry,
|
|
url: account_transaction_path(@entry),
|
|
class: "space-y-2",
|
|
data: { controller: "auto-submit-form" } do |f| %>
|
|
|
|
<%= f.text_field @entry.enriched_at.present? ? :enriched_name : :name,
|
|
label: t(".name_label"),
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<%= f.date_field :date,
|
|
label: t(".date_label"),
|
|
max: Date.current,
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<% unless @entry.marked_as_transfer? %>
|
|
<div class="flex items-center gap-2">
|
|
<%= f.select :nature,
|
|
[["Expense", "outflow"], ["Income", "inflow"]],
|
|
{ container_class: "w-1/3", label: t(".nature"), selected: @entry.amount.negative? ? "inflow" : "outflow" },
|
|
{ data: { "auto-submit-form-target": "auto" } } %>
|
|
|
|
<%= f.money_field :amount, label: t(".amount"),
|
|
container_class: "w-2/3",
|
|
auto_submit: true,
|
|
min: 0,
|
|
value: @entry.amount.abs %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= f.select :account,
|
|
options_for_select(
|
|
Current.family.accounts.alphabetically.pluck(:name, :id),
|
|
@entry.account_id
|
|
),
|
|
{ label: t(".account_label") },
|
|
{ disabled: true } %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<!-- Details Section -->
|
|
<%= disclosure t(".details") do %>
|
|
<div class="pb-4">
|
|
<%= styled_form_with model: @entry,
|
|
url: account_transaction_path(@entry),
|
|
class: "space-y-2",
|
|
data: { controller: "auto-submit-form" } do |f| %>
|
|
<% unless @entry.marked_as_transfer? %>
|
|
<%= f.fields_for :entryable do |ef| %>
|
|
<%= ef.collection_select :category_id,
|
|
Current.family.categories.alphabetically,
|
|
:id, :name,
|
|
{ label: t(".category_label"),
|
|
class: "text-gray-400", include_blank: t(".uncategorized") },
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<%= ef.collection_select :merchant_id,
|
|
Current.family.merchants.alphabetically,
|
|
:id, :name,
|
|
{ include_blank: t(".none"),
|
|
label: t(".merchant_label"),
|
|
class: "text-gray-400" },
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<%= ef.select :tag_ids,
|
|
Current.family.tags.alphabetically.pluck(:name, :id),
|
|
{
|
|
include_blank: t(".none"),
|
|
multiple: true,
|
|
label: t(".tags_label"),
|
|
container_class: "h-40"
|
|
},
|
|
{ "data-auto-submit-form-target": "auto" } %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= f.text_area :notes,
|
|
label: t(".note_label"),
|
|
placeholder: t(".note_placeholder"),
|
|
rows: 5,
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<!-- Settings Section -->
|
|
<%= disclosure t(".settings") do %>
|
|
<div class="pb-4">
|
|
<!-- Exclude Transaction Form -->
|
|
<%= styled_form_with model: @entry,
|
|
url: account_transaction_path(@entry),
|
|
class: "p-3",
|
|
data: { controller: "auto-submit-form" } do |f| %>
|
|
<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">
|
|
<%= f.check_box :excluded,
|
|
class: "sr-only peer",
|
|
"data-auto-submit-form-target": "auto" %>
|
|
<label for="account_entry_excluded"
|
|
class="maybe-switch"></label>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
|
|
<!-- Delete Transaction Form -->
|
|
<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(@entry),
|
|
method: :delete,
|
|
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" } %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|