1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00
market/src/components/atoms/Price/index.tsx

47 lines
1.2 KiB
TypeScript

import React, { ReactElement } from 'react'
import styles from './index.module.css'
import { useMetadata, useOcean } from '@oceanprotocol/react'
import { DDO } from '@oceanprotocol/lib'
import Loader from '../Loader'
import Tooltip from '../Tooltip'
import PriceUnit from './PriceUnit'
import Badge from '../Badge'
export default function Price({
ddo,
className,
small,
conversion
}: {
ddo: DDO
className?: string
small?: boolean
conversion?: boolean
}): ReactElement {
const { ocean } = useOcean()
const { price } = useMetadata(ddo)
return !ocean ? (
<div className={styles.empty}>Connect your wallet to view price</div>
) : price?.value ? (
<>
<PriceUnit
price={price.value}
className={className}
small={small}
conversion={conversion}
/>
{price?.type === 'pool' && (
<Badge label="pool" className={styles.badge} />
)}
</>
) : price?.value === '' ? (
<div className={styles.empty}>
No price found{' '}
<Tooltip content="We could not find a pool for this data set, which can have multiple reasons. Is your wallet connected to the correct network?" />
</div>
) : (
<Loader message="Retrieving price..." />
)
}