2024-11-04 20:27:31 -05:00
|
|
|
<%# locals: (account:) %>
|
|
|
|
|
2025-01-30 14:12:01 -05:00
|
|
|
<%= turbo_frame_tag dom_id(account, "entries") do %>
|
2025-07-18 05:52:18 -04:00
|
|
|
<div class="bg-container p-5 shadow-border-xs rounded-xl">
|
2025-04-30 18:14:22 -04:00
|
|
|
<div class="flex items-center justify-between mb-4" data-testid="activity-menu">
|
2025-01-30 14:12:01 -05:00
|
|
|
<%= tag.h2 t(".title"), class: "font-medium text-lg" %>
|
|
|
|
<% unless @account.plaid_account_id.present? %>
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= render MenuComponent.new(variant: "button") do |menu| %>
|
|
|
|
<% menu.with_button(text: "New", variant: "secondary", icon: "plus") %>
|
2025-01-30 14:12:01 -05:00
|
|
|
|
2025-04-30 18:14:22 -04:00
|
|
|
<% menu.with_item(
|
|
|
|
variant: "link",
|
|
|
|
text: "New balance",
|
|
|
|
icon: "circle-dollar-sign",
|
|
|
|
href: new_valuation_path(account_id: @account.id),
|
|
|
|
data: { turbo_frame: :modal }) %>
|
|
|
|
|
|
|
|
<% unless @account.crypto? %>
|
|
|
|
<% href = @account.investment? ? new_trade_path(account_id: @account.id) : new_transaction_path(account_id: @account.id) %>
|
|
|
|
<% menu.with_item(
|
|
|
|
variant: "link",
|
|
|
|
text: "New transaction",
|
|
|
|
icon: "credit-card",
|
|
|
|
href: href,
|
|
|
|
data: { turbo_frame: :modal }) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2025-01-30 14:12:01 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<%= form_with url: account_path(account),
|
|
|
|
id: "entries-search",
|
|
|
|
scope: :q,
|
|
|
|
method: :get,
|
|
|
|
data: { controller: "auto-submit-form" } do |form| %>
|
|
|
|
<div class="flex gap-2 mb-4">
|
|
|
|
<div class="grow">
|
2025-04-23 10:42:30 -03:00
|
|
|
<div class="flex items-center px-3 py-2 gap-2 border border-secondary rounded-lg focus-within:ring-gray-100 focus-within:border-gray-900">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon("search") %>
|
2025-01-30 14:12:01 -05:00
|
|
|
<%= hidden_field_tag :account_id, @account.id %>
|
|
|
|
<%= form.search_field :search,
|
|
|
|
placeholder: "Search entries by name",
|
|
|
|
value: @q[:search],
|
2025-02-13 11:31:07 -05:00
|
|
|
class: "form-field__input placeholder:text-sm placeholder:text-secondary",
|
2025-01-30 14:12:01 -05:00
|
|
|
"data-auto-submit-form-target": "auto" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if @entries.empty? %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<p class="text-secondary text-sm p-4"><%= t(".no_entries") %></p>
|
2025-01-30 14:12:01 -05:00
|
|
|
<% else %>
|
|
|
|
<%= tag.div id: dom_id(@account, "entries_bulk_select"),
|
|
|
|
data: {
|
|
|
|
controller: "bulk-select",
|
|
|
|
bulk_select_singular_label_value: t(".entry"),
|
|
|
|
bulk_select_plural_label_value: t(".entries")
|
|
|
|
} do %>
|
|
|
|
<div id="entry-selection-bar" data-bulk-select-target="selectionBar" class="flex justify-center hidden">
|
2025-04-14 11:40:34 -04:00
|
|
|
<%= render "entries/selection_bar" %>
|
2025-01-30 14:12:01 -05:00
|
|
|
</div>
|
|
|
|
|
2025-04-11 09:28:00 -05:00
|
|
|
<div class="grid bg-container-inset rounded-xl grid-cols-12 items-center uppercase text-xs font-medium text-secondary px-5 py-3 mb-4">
|
2025-01-30 14:12:01 -05:00
|
|
|
<div class="pl-0.5 col-span-8 flex items-center gap-4">
|
|
|
|
<%= check_box_tag "selection_entry",
|
2025-02-13 11:31:07 -05:00
|
|
|
class: "checkbox checkbox--light",
|
2025-01-30 14:12:01 -05:00
|
|
|
data: { action: "bulk-select#togglePageSelection" } %>
|
|
|
|
<p><%= t(".date") %></p>
|
|
|
|
</div>
|
|
|
|
<%= tag.p t(".amount"), class: "col-span-2 justify-self-end" %>
|
|
|
|
<%= tag.p t(".balance"), class: "col-span-2 justify-self-end" %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
2025-05-21 09:28:56 -05:00
|
|
|
<div class="space-y-4">
|
|
|
|
<% calculator = Balance::TrendCalculator.new(@account.balances) %>
|
2025-05-08 12:25:53 -04:00
|
|
|
|
2025-05-21 09:28:56 -05:00
|
|
|
<%= entries_by_date(@entries) do |entries| %>
|
|
|
|
<% entries.each_with_index do |entry, index| %>
|
|
|
|
<%= render entry, balance_trend: index == 0 ? calculator.trend_for(entry.date) : nil, view_ctx: "account" %>
|
2025-01-30 14:12:01 -05:00
|
|
|
<% end %>
|
2025-05-21 09:28:56 -05:00
|
|
|
<% end %>
|
2025-01-30 14:12:01 -05:00
|
|
|
</div>
|
|
|
|
|
2025-04-11 09:28:00 -05:00
|
|
|
<div class="p-4 bg-container rounded-bl-lg rounded-br-lg">
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= render "shared/pagination", pagy: @pagy %>
|
2025-01-30 14:12:01 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2024-11-04 20:27:31 -05:00
|
|
|
<% end %>
|