blob: dedaf6f861df66e972f0f96de7cd53cf9e35728a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import { Amounts } from "@gnu-taler/taler-util";
import { ProviderInfo } from "@gnu-taler/taler-wallet-core/src/operations/backup";
import { useEffect, useState } from "preact/hooks";
import * as wxApi from "../wxApi";
export interface ProvidersByCurrency {
[s: string]: ProviderInfo | undefined
}
export interface BackupStatus {
deviceName: string;
providers: ProvidersByCurrency
}
export function useBackupStatus(): BackupStatus | undefined {
const [status, setStatus] = useState<BackupStatus | undefined>(undefined)
useEffect(() => {
async function run() {
//create a first list of backup info by currency
const status = await wxApi.getBackupInfo()
const providers = status.providers.reduce((p, c) => {
if (c.terms) {
p[Amounts.parseOrThrow(c.terms.annualFee).currency] = c
}
return p
}, {} as ProvidersByCurrency)
//add all the known currency with no backup info
const list = await wxApi.listKnownCurrencies()
const currencies = list.exchanges.map(e => e.name).concat(list.auditors.map(a => a.name))
currencies.forEach(c => {
if (!providers[c]) {
providers[c] = undefined
}
})
setStatus({ deviceName: status.deviceId, providers })
}
run()
}, [])
return status
}
|