mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
- Update BalanceSheet model to directly calculate account weights based on converted balances. - Modify dashboard view to compute account weight as a percentage of classification total, enhancing clarity. - Adjust group weight partial to handle effective weight, ensuring accurate rendering of weight representation.
12 lines
465 B
Text
12 lines
465 B
Text
<%# locals: (weight:, color:) %>
|
|
|
|
<% effective_weight = weight.presence || 0 %>
|
|
|
|
<div class="w-full flex items-center justify-between gap-2">
|
|
<div class="flex gap-[3px]">
|
|
<% 10.times do |i| %>
|
|
<div class="w-0.5 h-2.5 rounded-lg <%= i < (effective_weight / 10.0).ceil ? "" : "opacity-20" %>" style="background-color: <%= color %>;"></div>
|
|
<% end %>
|
|
</div>
|
|
<p class="text-sm"><%= number_to_percentage(effective_weight, precision: 2) %></p>
|
|
</div>
|