2025-03-07 17:35:55 -05:00
|
|
|
<%# locals: (account:, title: nil, tooltip: nil, chart_view: nil, **args) %>
|
2024-11-04 20:27:31 -05:00
|
|
|
|
2025-03-07 17:35:55 -05:00
|
|
|
<% period = @period || Period.last_30_days %>
|
2024-11-04 20:27:31 -05:00
|
|
|
<% default_value_title = account.asset? ? t(".balance") : t(".owed") %>
|
|
|
|
|
2024-11-27 16:01:50 -05:00
|
|
|
<div id="<%= dom_id(account, :chart) %>" class="bg-white shadow-xs rounded-xl border border-alpha-black-25 rounded-lg space-y-2">
|
|
|
|
<div class="flex justify-between px-4 pt-4 mb-2">
|
2024-11-04 20:27:31 -05:00
|
|
|
<div class="space-y-2">
|
|
|
|
<div class="flex items-center gap-1">
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= tag.p title || default_value_title, class: "text-sm font-medium text-secondary" %>
|
2024-11-04 20:27:31 -05:00
|
|
|
<%= tooltip %>
|
|
|
|
</div>
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= tag.p format_money(account.balance_money), class: "text-primary text-3xl font-medium" %>
|
2024-11-04 20:27:31 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= form_with url: request.path, method: :get, data: { controller: "auto-submit-form" } do |form| %>
|
2025-03-07 17:35:55 -05:00
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<% if chart_view.present? %>
|
|
|
|
<%= form.select :chart_view,
|
|
|
|
[["Total value", "balance"], ["Holdings", "holdings_balance"], ["Cash", "cash_balance"]],
|
|
|
|
{ selected: chart_view },
|
|
|
|
class: "border border-secondary rounded-lg text-sm pr-7 cursor-pointer text-primary focus:outline-hidden focus:ring-0",
|
|
|
|
data: { "auto-submit-form-target": "auto" }
|
|
|
|
%>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= period_select form: form, selected: period %>
|
|
|
|
</div>
|
2024-11-04 20:27:31 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2025-03-07 17:35:55 -05:00
|
|
|
<%= turbo_frame_tag dom_id(account, :chart_details), src: chart_account_path(account, period: period.key, chart_view: chart_view) do %>
|
2024-11-27 16:01:50 -05:00
|
|
|
<%= render "accounts/chart_loader" %>
|
|
|
|
<% end %>
|
2024-11-04 20:27:31 -05:00
|
|
|
</div>
|