Files
sure/app/views/simplefin_items/select_existing_account.html.erb
Juan José Mata 868a0ae4d8 Add family moniker selection and dynamic UI labels (#981)
* Add family moniker selection and dynamic UI labels

Introduce a Family moniker persisted in the database with allowed values Family/Group, add required onboarding selection for it, and thread moniker-aware copy through key user-facing views and locales. Also add helper methods and tests for onboarding form presence and family moniker behavior.

* Small copy edits/change moniker question order

* Conditional Group/Family onboarding flow fixes

* Fix label

* Grouping of fields

* Profile Info page Group/Family changes

* Only admins can change Group/Family moniker

* Repetitive defaults

* Moniker in Account model

* Moniker in User model

* Auth fix

* Sure product is also a moniker

---------

Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
2026-02-13 19:30:29 +01:00

44 lines
2.3 KiB
Plaintext

<%# Modal: Link an existing manual account to a SimpleFIN account %>
<%= turbo_frame_tag "modal" do %>
<%= render DS::Dialog.new do |dialog| %>
<% dialog.with_header(title: "Link SimpleFIN account") %>
<% dialog.with_body do %>
<% if @available_simplefin_accounts.blank? %>
<div class="p-4 text-sm text-secondary">
<p class="mb-2"><%= t("simplefin_items.select_existing_account.no_accounts_found", moniker: family_moniker_downcase) %></p>
<ul class="list-disc list-inside space-y-1">
<li><%= t("simplefin_items.select_existing_account.wait_for_sync") %></li>
<li><%= t("simplefin_items.select_existing_account.check_provider_health") %></li>
</ul>
</div>
<% else %>
<%= form_with url: link_existing_account_simplefin_items_path, method: :post, class: "space-y-4" do %>
<%= hidden_field_tag :account_id, @account.id %>
<div class="space-y-2 max-h-64 overflow-auto">
<% @available_simplefin_accounts.each do |sfa| %>
<label class="flex items-center gap-3 p-2 rounded border border-surface-inset/50 hover:border-primary cursor-pointer">
<%= radio_button_tag :simplefin_account_id, sfa.id, false %>
<div class="flex flex-col">
<span class="text-sm text-primary font-medium"><%= sfa.name.presence || sfa.account_id %></span>
<span class="text-xs text-secondary">
<%= sfa.currency %> • Balance: <%= number_to_currency((sfa.current_balance || sfa.available_balance || 0), unit: sfa.currency) %>
</span>
<% if sfa.current_account.present? %>
<span class="text-xs text-secondary"><%= t("simplefin_items.select_existing_account.currently_linked_to", account_name: sfa.current_account.name) %></span>
<% end %>
</div>
</label>
<% end %>
</div>
<div class="flex items-center justify-end gap-2">
<%= render DS::Button.new(text: "Link", variant: :primary, icon: "link-2", type: :submit) %>
<%= render DS::Link.new(text: "Cancel", variant: :secondary, href: accounts_path, data: { turbo_frame: "_top" }) %>
</div>
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>