@@ -2,6 +2,7 @@ import { useCallback, useEffect } from "react";
2
2
import { useDispatch } from "react-redux" ;
3
3
import { useInterval } from "react-use" ;
4
4
import { getBandchain } from "../../services/bandchain" ;
5
+ import { useReportSystemStatus } from "../ui/uiHooks" ;
5
6
import {
6
7
setSystemMonitorStatus ,
7
8
SystemStatus ,
@@ -20,69 +21,43 @@ import {
20
21
21
22
const dataRefreshInterval = 30 ; // seconds
22
23
24
+ const fetchBandchainExchangeRates = ( ) => {
25
+ return getBandchain ( ) . getReferenceData ( bandchainReferencePairs , 10 , 16 ) ;
26
+ } ;
27
+
28
+ const fetchCoingeckoExchangeRates = async ( ) => {
29
+ return fetch (
30
+ "https://api.coingecko.com/api/v3" +
31
+ `/coins/markets?vs_currency=usd&ids=${ coingeckoSymbols . join ( "," ) } `
32
+ ) . then ( ( response ) => response . json ( ) ) ;
33
+ } ;
34
+
23
35
export const useExchangeRates = ( ) => {
24
36
const dispatch = useDispatch ( ) ;
25
-
26
- const fetchMarketDataRates = useCallback ( async ( ) => {
27
- const bandchain = await getBandchain ( )
28
- . getReferenceData ( bandchainReferencePairs , 10 , 16 )
37
+ const report = useReportSystemStatus ( ) ;
38
+ const fetchData = useCallback ( ( ) => {
39
+ fetchBandchainExchangeRates ( )
29
40
. then ( ( data : Array < BandchainReferenceData > ) => {
30
- dispatch (
31
- setSystemMonitorStatus ( {
32
- type : SystemType . Bandchain ,
33
- status : SystemStatus . Operational ,
34
- } )
35
- ) ;
36
-
37
- return mapBandchainToExchangeData ( data ) ;
41
+ report ( SystemType . Bandchain , SystemStatus . Operational ) ;
42
+ const rates = mapBandchainToExchangeData ( data ) ;
43
+ dispatch ( setExchangeRates ( rates ) ) ;
38
44
} )
39
45
. catch ( ( error : any ) => {
46
+ report ( SystemType . Bandchain , SystemStatus . Failure ) ;
40
47
console . error ( error ) ;
41
- dispatch (
42
- setSystemMonitorStatus ( {
43
- type : SystemType . Bandchain ,
44
- status : SystemStatus . Failure ,
45
- } )
46
- ) ;
47
- return [ ] ;
48
- } ) ;
49
-
50
- const coingecko = await fetch (
51
- "https://api.coingecko.com/api/v3" +
52
- `/coins/markets?vs_currency=usd&ids=${ coingeckoSymbols . join ( "," ) } `
53
- )
54
- . then ( ( response ) => response . json ( ) )
55
- . then ( ( data : Array < CoingeckoReferenceData > ) => {
56
- dispatch (
57
- setSystemMonitorStatus ( {
58
- type : SystemType . Coingecko ,
59
- status : SystemStatus . Operational ,
60
- } )
61
- ) ;
62
- return mapCoingeckoToExchangeData ( data ) ;
63
- } )
64
- . catch ( ( error : any ) => {
65
- dispatch (
66
- setSystemMonitorStatus ( {
67
- type : SystemType . Coingecko ,
68
- status : SystemStatus . Failure ,
69
- } )
70
- ) ;
71
- return [ ] ;
72
48
} ) ;
73
49
74
- return [ ...bandchain , ...coingecko ] ;
75
- } , [ dispatch ] ) ;
76
-
77
- const fetchData = useCallback ( ( ) => {
78
- fetchMarketDataRates ( )
79
- . then ( ( rates ) => {
80
- dispatch ( setExchangeRates ( rates ) ) ;
81
- } )
82
- . catch ( ( e ) => {
83
- console . error ( e ) ;
84
- } ) ;
85
- } , [ dispatch , fetchMarketDataRates ] ) ;
50
+ // fetchCoingeckoExchangeRates()
51
+ // .then((data: Array<CoingeckoReferenceData>) => {
52
+ // report(SystemType.Coingecko, SystemStatus.Operational);
53
+ // const rates = mapCoingeckoToExchangeData(data);
54
+ // dispatch(setExchangeRates(rates));
55
+ // })
56
+ // .catch((error: any) => {
57
+ // report(SystemType.Coingecko, SystemStatus.Failure);
58
+ // console.error(error);
59
+ // });
60
+ } , [ dispatch , report ] ) ;
86
61
87
62
useEffect ( fetchData , [ fetchData ] ) ;
88
63
useInterval ( fetchData , dataRefreshInterval * 1000 ) ;
0 commit comments