mirror of
https://github.com/we-promise/sure.git
synced 2026-05-10 22:25:00 +00:00
* Initial implementation * Tiingo fixes * Adds 2 providers, remove 2 * Add extra checks * FIX a big hotwire race condition // Fix hotwire_combobox race condition: when typing quickly, a slow response for // an early query (e.g. "A") can overwrite the correct results for the final query // (e.g. "AAPL"). We abort the previous in-flight request whenever a new one fires, // so stale Turbo Stream responses never reach the DOM. * pipelock * Update price_test.rb * Reviews * i8n * fixes * fixes * Update tiingo.rb * fixes * Improvements * Big revamp * optimisations * Update 20260408151837_add_offline_reason_to_securities.rb * Add missing tests, fixes * small rank tests * FIX tests * Update show.html.erb * Update resolver.rb * Update usd_converter.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update holdings_controller.rb * Update _yahoo_finance_settings.html.erb
37 lines
1.7 KiB
Plaintext
37 lines
1.7 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) %>
|
|
<% if combobox_security.price_provider.present? %>
|
|
<span class="text-xs text-tertiary">· <%= t("securities.providers.#{combobox_security.price_provider}", default: combobox_security.price_provider.humanize) %></span>
|
|
<% end %>
|
|
</span>
|
|
</div>
|
|
<div class="flex items-center gap-1.5">
|
|
<% if combobox_security.currency.present? %>
|
|
<span class="text-xs text-secondary bg-container-inset rounded-sm px-1.5 py-1">
|
|
<%= combobox_security.currency %>
|
|
</span>
|
|
<% end %>
|
|
<% 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>
|
|
</div>
|