2024-11-04 20:27:31 -05:00
|
|
|
<%= turbo_stream_from @account %>
|
|
|
|
|
|
|
|
<%= turbo_frame_tag dom_id(@account) do %>
|
|
|
|
<%= tag.div class: "space-y-4" do %>
|
|
|
|
<%= render "accounts/show/header", account: @account %>
|
|
|
|
|
2024-11-15 13:49:37 -05:00
|
|
|
<% if @account.plaid_account_id.present? %>
|
|
|
|
<%= render "investments/chart", account: @account %>
|
|
|
|
<% else %>
|
|
|
|
<%= render "accounts/show/chart",
|
2024-11-04 20:27:31 -05:00
|
|
|
account: @account,
|
|
|
|
title: t(".chart_title"),
|
|
|
|
tooltip: render(
|
|
|
|
"investments/value_tooltip",
|
|
|
|
value: @account.value,
|
|
|
|
cash: @account.balance_money
|
|
|
|
) %>
|
2024-11-15 13:49:37 -05:00
|
|
|
<% end %>
|
2024-11-04 20:27:31 -05:00
|
|
|
|
|
|
|
<div class="min-h-[800px]">
|
|
|
|
<%= render "accounts/show/tabs", account: @account, tabs: [
|
|
|
|
{ key: "activity", contents: render("accounts/show/activity", account: @account) },
|
|
|
|
{ key: "holdings", contents: render("investments/holdings_tab", account: @account) },
|
|
|
|
{ key: "cash", contents: render("investments/cash_tab", account: @account) }
|
|
|
|
] %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|