mirror of
https://github.com/we-promise/sure.git
synced 2026-04-13 00:57:22 +00:00
* Enhance security handling logic: - Prioritize user's country in sorting securities and country codes. - Add comprehensive mapping for MIC codes to user-friendly exchange names. - Revamp combobox to consistently pull from a provider when available. - Improve handling of custom ticker and exchange input fields. * Localize securities combobox display and exchange labels. --------- Co-authored-by: luckyPipewrench <luckypipewrench@proton.me>
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
<div class="flex items-center">
|
|
<% if combobox_security.logo_url.present? %>
|
|
<%= image_tag(combobox_security.logo_url, class: "rounded-full h-8 w-8 inline-block mr-2" ) %>
|
|
<% end %>
|
|
<div class="flex items-center justify-between w-full">
|
|
<div class="flex flex-col">
|
|
<span class="text-sm font-medium">
|
|
<%= combobox_security.name.presence || combobox_security.symbol %>
|
|
</span>
|
|
<span class="text-xs text-secondary">
|
|
<%= t("securities.combobox.exchange_label", symbol: combobox_security.symbol, exchange: combobox_security.exchange_name) %>
|
|
</span>
|
|
</div>
|
|
<% if combobox_security.country_code.present? %>
|
|
<div class="flex items-center bg-container-inset rounded-sm px-1.5 py-1 gap-1">
|
|
<%= image_tag("https://hatscripts.github.io/circle-flags/flags/#{combobox_security.country_code.downcase}.svg",
|
|
class: "h-4 rounded-sm",
|
|
alt: "#{combobox_security.country_code.upcase} flag",
|
|
title: combobox_security.country_code.upcase) %>
|
|
<span class="text-xs text-secondary">
|
|
<%= combobox_security.country_code.upcase %>
|
|
</span>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|