mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 15:54:48 +00:00
* **Add Coinbase integration with item and account management** - Creates migrations for `coinbase_items` and `coinbase_accounts`. - Adds models, controllers, views, and background tasks to support account linking, syncing, and transaction handling. - Implements Coinbase API client and adapter for seamless integration. - Supports ActiveRecord encryption for secure credential storage. - Adds UI components for provider setup, account management, and synchronization. * Localize Coinbase-related UI strings, refine account linking for security, and add timeouts to Coinbase API requests. * Localize Coinbase account handling to support native currencies (USD, EUR, GBP, etc.) across balances, trades, holdings, and transactions. * Improve Coinbase processing with timezone-safe parsing, native currency support, and immediate holdings updates. * Improve trend percentage formatting and enhance race condition handling for Coinbase account linking. * Fix log message wording for orphan cleanup * Ensure `selected_accounts` parameter is sanitized by rejecting blank entries. * Add tests for Coinbase integration: account, item, and controller coverage - Adds unit tests for `CoinbaseAccount` and `CoinbaseItem` models. - Adds integration tests for `CoinbaseItemsController`. - Introduces Stimulus `select-all` controller for UI checkbox handling. - Localizes UI strings and logging for Coinbase integration. * Update test fixtures to use consistent placeholder API keys and secrets * Refine `coinbase_item` tests to ensure deterministic ordering and improve scope assertions. * Integrate `SyncStats::Collector` into Coinbase syncer to streamline statistics collection and enhance consistency. * Localize Coinbase sync status messages and improve sync summary test coverage. * Update `CoinbaseItem` encryption: use deterministic encryption for `api_key` and standard for `api_secret`. * fix schema drift * Beta labels to lower expectations --------- Co-authored-by: luckyPipewrench <luckypipewrench@proton.me> Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
42 lines
1.9 KiB
Plaintext
42 lines
1.9 KiB
Plaintext
<%= turbo_frame_tag dom_id(@account, "holdings") do %>
|
|
<div class="bg-container space-y-4 px-3 py-4 lg:p-4 rounded-xl shadow-border-xs">
|
|
<div class="flex items-center justify-between">
|
|
<%= tag.h2 t(".holdings"), class: "font-medium text-lg" %>
|
|
<%= link_to new_trade_path(account_id: @account.id),
|
|
id: dom_id(@account, "new_trade"),
|
|
data: { turbo_frame: :modal },
|
|
class: "flex gap-1 font-medium items-center bg-gray-50 theme-dark:bg-gray-700 hover:bg-gray-100 theme-dark:hover:bg-gray-600 text-primary p-2 rounded-lg" do %>
|
|
<span class="text-primary">
|
|
<%= icon("plus", color: "current") %>
|
|
</span>
|
|
<%= tag.span t(".new_holding"), class: "text-sm" %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="bg-container-inset rounded-xl p-1 overflow-x-auto">
|
|
<div class="w-max lg:w-full">
|
|
<div class="grid grid-cols-12 items-center uppercase text-xs font-medium text-secondary px-4 py-2">
|
|
<%= tag.p t(".name"), class: "col-span-4" %>
|
|
<%= tag.p t(".weight"), class: "col-span-2 justify-self-end" %>
|
|
<%= tag.p t(".average_cost"), class: "col-span-2 justify-self-end" %>
|
|
<%= tag.p t(".holdings"), class: "col-span-2 justify-self-end" %>
|
|
<%= tag.p t(".return"), class: "col-span-2 justify-self-end" %>
|
|
</div>
|
|
|
|
<div class="bg-container rounded-lg shadow-border-xs">
|
|
<% if @account.cash_balance.to_d > 0 %>
|
|
<%= render "holdings/cash", account: @account %>
|
|
<%= render "shared/ruler" %>
|
|
<% end %>
|
|
|
|
<% if @account.current_holdings.any? %>
|
|
<%= render partial: "holdings/holding",
|
|
collection: @account.current_holdings,
|
|
spacer_template: "shared/ruler" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% end %>
|