mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-10 07:55:21 +02:00
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT * [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT * Update stimulus controller references to use namespace * Fix remaining tests
65 lines
3 KiB
Text
65 lines
3 KiB
Text
<%# locals: (account_group:, mobile: false, all_tab: false, open: nil, **args) %>
|
|
|
|
<div id="<%= account_group.dom_id(tab: all_tab ? :all : nil, mobile: mobile) %>">
|
|
<% is_open = open.nil? ? account_group.accounts.any? { |account| page_active?(account_path(account)) } : open %>
|
|
<%= render DS::Disclosure.new(align: :left, open: is_open) do |disclosure| %>
|
|
<% disclosure.with_summary_content do %>
|
|
<div class="flex items-center gap-3">
|
|
<%= icon "chevron-right", class: "group-open:transform group-open:rotate-90" %>
|
|
<%= tag.span class: class_names("text-sm text-primary font-medium", "animate-pulse" => account_group.syncing?) do %>
|
|
<%= account_group.name %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="ml-auto text-right grow">
|
|
<%= tag.p format_money(account_group.total_money), class: "text-sm font-medium text-primary" %>
|
|
<%= turbo_frame_tag "#{account_group.key}_sparkline", src: accountable_sparkline_path(account_group.key), loading: "lazy", data: { controller: "turbo-frame-timeout", turbo_frame_timeout_timeout_value: 10000 } do %>
|
|
<div class="flex items-center w-8 h-4 ml-auto">
|
|
<div class="w-6 h-px bg-loader"></div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="space-y-1">
|
|
<% account_group.accounts.each do |account| %>
|
|
<%= link_to account_path(account),
|
|
class: class_names(
|
|
"block flex items-center gap-2 px-3 py-2 rounded-lg",
|
|
page_active?(account_path(account)) ? "bg-container" : "hover:bg-surface-hover"
|
|
),
|
|
title: account.name do %>
|
|
<%= render "accounts/logo", account: account, size: "sm", color: account_group.color %>
|
|
|
|
<div class="min-w-0 grow">
|
|
<div class="flex items-center gap-2 mb-0.5">
|
|
<%= tag.p account.name, class: class_names("text-sm text-primary font-medium truncate", "animate-pulse" => account.syncing?) %>
|
|
</div>
|
|
<%= tag.p account.short_subtype_label, class: "text-sm text-secondary truncate" %>
|
|
</div>
|
|
|
|
<div class="ml-auto text-right grow h-10">
|
|
<%= tag.p format_money(account.balance_money), class: "text-sm font-medium text-primary whitespace-nowrap" %>
|
|
<%= turbo_frame_tag dom_id(account, :sparkline), src: sparkline_account_path(account), loading: "lazy", data: { controller: "turbo-frame-timeout", turbo_frame_timeout_timeout_value: 10000 } do %>
|
|
<div class="flex items-center w-8 h-4 ml-auto">
|
|
<div class="w-6 h-px bg-loader"></div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="my-2">
|
|
<%= render DS::Link.new(
|
|
href: new_polymorphic_path(account_group.key, step: "method_select"),
|
|
text: "New #{account_group.name.downcase.singularize}",
|
|
icon: "plus",
|
|
full_width: true,
|
|
variant: "ghost",
|
|
frame: :modal,
|
|
class: "justify-start"
|
|
) %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|