feat(wallet): a balance that isn't loaded yet says so, in pixels
Demo images / Build & push demo images (push) Failing after 2m18s
Demo images / Build & push demo images (push) Failing after 2m18s
An unloaded balance rendered as `0`. Zero is not a loading state — it is
a number, and it is the one number that frightens people. Someone
opening the dashboard while the RPCs were still in flight was told, in
the wallet's own typeface, that their money was gone.
There is no formatting fix for that. The fix is to stop claiming a
figure we do not have, so `null` now means "not known yet" and `0` means
"none", and the two are kept apart end to end: the refs start at null,
a rail becomes a number only when its call actually succeeds, and a
snapshot key that was never written stays unknown instead of becoming a
zero.
In place of the figure, a small dot-matrix scans in the rail's own
colour. It inherits currentColor, so on-chain shimmers orange, Lightning
yellow, Cashu purple, Fedimint blue and Ark teal with no colour table to
keep in sync — and it is sized to the figure it stands in for, so
nothing jumps when the real number lands. It carries role="status" and
names what it is waiting for; a shimmering box with no text is nothing
at all to a screen reader.
Two consequences worth stating. The total is withheld until every rail
that makes it up is known — summing nulls as zero would show a total
*lower* than the rails beneath it, which is worse than showing nothing
because it looks authoritative. And the Ark row stays hidden while its
balance is unknown, since "unknown" must not be read as "> 0" on the
many nodes with no Ark sidecar.
The LND app UI had the same bug in a different shape: its tiles start as
an em-dash, but renderBalances() runs on every poll including before the
first response, and `num(null && …)` is 0 — so the dashes were painted
over with "0 sats" almost immediately. Same treatment, in plain CSS.
Also fixes a stale assertion in AppHeroSection's suite, which has been
red since 9ccc325a changed "Restarting..." to a real ellipsis; and two
test proofs that used a plausible-looking hex string for `C`. The V3
codec never parses that field so it went unnoticed, but the V4 encoder
hands it to the reference implementation, which checks the point is
actually on secp256k1. Real curve points now.
Frontend: 996 tests green. Backend: 1436 green.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
fc98c1d8dd
commit
fa6fe32ef9
@@ -0,0 +1,119 @@
|
||||
import { describe, it, expect } from 'vitest'
|
||||
import { mount } from '@vue/test-utils'
|
||||
import BalanceAmount from '../BalanceAmount.vue'
|
||||
import HomeWalletCard from '@/views/home/HomeWalletCard.vue'
|
||||
import i18n from '@/i18n'
|
||||
|
||||
/**
|
||||
* The distinction this whole component exists to protect: `0` is a balance,
|
||||
* `null` is the absence of one. Rendering the first when you mean the second
|
||||
* tells someone their money is gone, in the wallet's own typeface. Every case
|
||||
* below is really one assertion — that the two never get confused.
|
||||
*/
|
||||
describe('BalanceAmount', () => {
|
||||
it('shows the pixel readout when the balance is not known yet', () => {
|
||||
const w = mount(BalanceAmount, { props: { sats: null, label: 'on-chain balance' } })
|
||||
expect(w.find('.balance-pixels').exists()).toBe(true)
|
||||
expect(w.text()).not.toContain('0')
|
||||
})
|
||||
|
||||
it('treats undefined the same as null', () => {
|
||||
// Optional props (`arkBalance?.spendable_sats`) arrive as undefined, not
|
||||
// null, and must not fall through to a figure.
|
||||
const w = mount(BalanceAmount, { props: { sats: undefined } })
|
||||
expect(w.find('.balance-pixels').exists()).toBe(true)
|
||||
})
|
||||
|
||||
it('shows a genuine zero as a figure, not as loading', () => {
|
||||
// The inverse mistake: a node that really has no coins must be told so
|
||||
// plainly, not left shimmering forever.
|
||||
const w = mount(BalanceAmount, { props: { sats: 0 } })
|
||||
expect(w.find('.balance-pixels').exists()).toBe(false)
|
||||
expect(w.text()).toBe('0 sats')
|
||||
})
|
||||
|
||||
it('formats a real balance with thousands separators', () => {
|
||||
const w = mount(BalanceAmount, { props: { sats: 9922 } })
|
||||
expect(w.text()).toBe('9,922 sats')
|
||||
})
|
||||
|
||||
it('can drop the unit for bare figures', () => {
|
||||
const w = mount(BalanceAmount, { props: { sats: 21, suffix: '' } })
|
||||
expect(w.text()).toBe('21')
|
||||
})
|
||||
|
||||
it('announces what is loading instead of being silently empty', () => {
|
||||
// A shimmering box with no text is nothing at all to a screen reader.
|
||||
const w = mount(BalanceAmount, { props: { sats: null, label: 'Cashu balance' } })
|
||||
const el = w.find('.balance-pixels')
|
||||
expect(el.attributes('role')).toBe('status')
|
||||
expect(el.attributes('aria-label')).toBe('Loading Cashu balance')
|
||||
})
|
||||
|
||||
it('inherits the rail colour rather than hard-coding one', () => {
|
||||
// The pixels are painted with currentColor, which is what makes the
|
||||
// on-chain row orange and the Cashu row purple with no colour table to
|
||||
// keep in sync. Guard the mechanism: a literal colour here would drift.
|
||||
const w = mount(BalanceAmount, { props: { sats: null } })
|
||||
expect(w.find('.balance-pixel').exists()).toBe(true)
|
||||
expect(w.html()).not.toMatch(/background:\s*#|rgb\(/)
|
||||
})
|
||||
|
||||
it('renders enough cells to read as a matrix', () => {
|
||||
const w = mount(BalanceAmount, { props: { sats: null } })
|
||||
expect(w.findAll('.balance-pixel').length).toBe(28)
|
||||
})
|
||||
})
|
||||
|
||||
describe('HomeWalletCard balances', () => {
|
||||
const base = {
|
||||
animate: false,
|
||||
walletConnected: true,
|
||||
walletOnchain: null,
|
||||
walletLightning: null,
|
||||
walletEcash: null,
|
||||
walletFedimint: null,
|
||||
walletArk: null,
|
||||
walletTransactions: [],
|
||||
isDev: false,
|
||||
}
|
||||
|
||||
const mountCard = (props: Record<string, unknown>) =>
|
||||
mount(HomeWalletCard, { props: { ...base, ...props }, global: { plugins: [i18n] } })
|
||||
|
||||
it('shows no figures at all before anything has loaded', () => {
|
||||
const w = mountCard({})
|
||||
// Six rows could be showing 0 sats here; none of them may.
|
||||
expect(w.findAll('.balance-pixels').length).toBeGreaterThan(0)
|
||||
expect(w.text()).not.toMatch(/\b0 sats\b/)
|
||||
})
|
||||
|
||||
it('withholds the total until every rail it sums is known', () => {
|
||||
// A total computed with nulls as 0 would read *lower* than the rails
|
||||
// beneath it — worse than showing nothing, because it looks authoritative.
|
||||
const w = mountCard({ walletOnchain: 5000, walletLightning: null, walletEcash: 0, walletFedimint: 0 })
|
||||
expect(w.text()).not.toContain('5,000 sats\n')
|
||||
expect(w.findAll('.balance-pixels').length).toBeGreaterThan(0)
|
||||
})
|
||||
|
||||
it('sums the total once every rail has reported', () => {
|
||||
const w = mountCard({ walletOnchain: 9000, walletLightning: 900, walletEcash: 22, walletFedimint: 0 })
|
||||
expect(w.text()).toContain('9,922 sats')
|
||||
expect(w.findAll('.balance-pixels').length).toBe(0)
|
||||
})
|
||||
|
||||
it('shows an empty wallet as zero rather than as loading', () => {
|
||||
const w = mountCard({ walletOnchain: 0, walletLightning: 0, walletEcash: 0, walletFedimint: 0 })
|
||||
expect(w.findAll('.balance-pixels').length).toBe(0)
|
||||
expect(w.text()).toContain('0 sats')
|
||||
})
|
||||
|
||||
it('keeps the Ark row hidden while its balance is unknown', () => {
|
||||
// Ark only appears once barkd reports something; "unknown" must not be
|
||||
// read as "> 0" and conjure a row on the many nodes with no Ark sidecar.
|
||||
const loaded = { walletOnchain: 1, walletLightning: 0, walletEcash: 0, walletFedimint: 0 }
|
||||
expect(mountCard({ ...loaded, walletArk: null }).text()).not.toContain('Ark')
|
||||
expect(mountCard({ ...loaded, walletArk: 0 }).text()).not.toContain('Ark')
|
||||
expect(mountCard({ ...loaded, walletArk: 7 }).text()).toContain('Ark')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user