1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-30 13:51:42 +02:00
market/src/@context/Prices.tsx

63 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-10-28 10:32:56 +01:00
import React, {
useState,
ReactElement,
createContext,
useContext,
ReactNode
} from 'react'
2021-10-13 18:48:59 +02:00
import { fetchData } from '@utils/fetch'
2020-10-28 10:32:56 +01:00
import useSWR from 'swr'
2021-10-13 18:48:59 +02:00
import { useSiteMetadata } from '@hooks/useSiteMetadata'
import { LoggerInstance } from '@oceanprotocol/lib'
2020-10-28 10:32:56 +01:00
interface PricesValue {
[key: string]: number
2020-10-28 10:32:56 +01:00
}
const initialData: PricesValue = {
eur: 0.0,
usd: 0.0,
eth: 0.0,
btc: 0.0
2020-10-28 10:32:56 +01:00
}
2020-11-17 13:10:12 +01:00
const refreshInterval = 120000 // 120 sec.
2020-10-28 10:32:56 +01:00
const PricesContext = createContext(null)
export default function PricesProvider({
children
}: {
children: ReactNode
}): ReactElement {
const { appConfig } = useSiteMetadata()
const tokenId = 'ocean-protocol'
const currencies = appConfig.currencies.join(',') // comma-separated list
const url = `https://api.coingecko.com/api/v3/simple/price?ids=${tokenId}&vs_currencies=${currencies}`
2020-10-28 10:32:56 +01:00
const [prices, setPrices] = useState(initialData)
const onSuccess = async (data: { [tokenId]: { [key: string]: number } }) => {
2020-10-28 10:32:56 +01:00
if (!data) return
LoggerInstance.log('[prices] Got new OCEAN spot prices.', data[tokenId])
setPrices(data[tokenId])
2020-10-28 10:32:56 +01:00
}
// Fetch new prices periodically with swr
useSWR(url, fetchData, {
2020-11-17 13:10:12 +01:00
refreshInterval,
onSuccess
})
2020-10-28 10:32:56 +01:00
return (
<PricesContext.Provider value={{ prices }}>
{children}
</PricesContext.Provider>
)
}
// Helper hook to access the provider values
const usePrices = (): PricesValue => useContext(PricesContext)
export { PricesProvider, usePrices }