mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
68 lines
2.2 KiB
TypeScript
68 lines
2.2 KiB
TypeScript
'use client'
|
|
|
|
import { ratioOceanToAsi, ratioAgixToAsi, ratioFetToAsi } from '@/constants'
|
|
import { Result } from '@/components/ResultRow'
|
|
import { useState } from 'react'
|
|
import { useDebounce } from 'use-debounce'
|
|
import stylesShared from './styles.module.css'
|
|
import { usePrices } from '@/hooks'
|
|
import { FormAmount } from '@/components/FormAmount'
|
|
|
|
export function Buy() {
|
|
const { prices, isValidating, isLoading } = usePrices()
|
|
const [amount, setAmount] = useState(100)
|
|
const [debouncedAmount] = useDebounce(amount, 500)
|
|
|
|
return (
|
|
<div className={stylesShared.results}>
|
|
<h3 className={stylesShared.title}>
|
|
Buying with{' '}
|
|
<FormAmount amount={amount} setAmount={setAmount} token="usd" isFiat />{' '}
|
|
right now gets you:
|
|
</h3>
|
|
<Result
|
|
tokenSymbol="OCEAN"
|
|
tokenAddress="0x967da4048cd07ab37855c090aaf366e4ce1b9f48"
|
|
amount={prices.ocean ? debouncedAmount / prices.ocean : 0}
|
|
amountAsi={
|
|
prices.ocean ? (debouncedAmount / prices.ocean) * ratioOceanToAsi : 0
|
|
}
|
|
amountFiat={
|
|
prices.ocean
|
|
? (debouncedAmount / prices.ocean) * ratioOceanToAsi * prices.asi
|
|
: 0
|
|
}
|
|
isValidating={isValidating}
|
|
/>
|
|
<Result
|
|
tokenSymbol="AGIX"
|
|
tokenAddress="0x5b7533812759b45c2b44c19e320ba2cd2681b542"
|
|
amount={prices.agix ? debouncedAmount / prices.agix : 0}
|
|
amountAsi={
|
|
prices.agix ? (debouncedAmount / prices.agix) * ratioAgixToAsi : 0
|
|
}
|
|
amountFiat={
|
|
prices.agix
|
|
? (debouncedAmount / prices.agix) * ratioAgixToAsi * prices.asi
|
|
: 0
|
|
}
|
|
isValidating={isValidating}
|
|
/>
|
|
<Result
|
|
tokenSymbol="FET"
|
|
tokenAddress="0xaea46a60368a7bd060eec7df8cba43b7ef41ad85"
|
|
amount={prices.fet ? debouncedAmount / prices.fet : 0}
|
|
amountAsi={
|
|
prices.fet ? (debouncedAmount / prices.fet) * ratioFetToAsi : 0
|
|
}
|
|
amountFiat={
|
|
prices.fet
|
|
? (debouncedAmount / prices.fet) * ratioFetToAsi * prices.asi
|
|
: 0
|
|
}
|
|
isValidating={isValidating}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|