mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
66 lines
1.7 KiB
TypeScript
66 lines
1.7 KiB
TypeScript
import Conversion from '@shared/Price/Conversion'
|
|
import { useField, useFormikContext } from 'formik'
|
|
import React, { ReactElement } from 'react'
|
|
import Input from '@shared/Form/Input'
|
|
import Error from './Error'
|
|
import PriceUnit from '@shared/Price/PriceUnit'
|
|
import styles from './Price.module.css'
|
|
import { FormPublishData } from '../../_types'
|
|
|
|
export default function Price({
|
|
firstPrice,
|
|
free
|
|
}: {
|
|
firstPrice?: string
|
|
free?: boolean
|
|
}): ReactElement {
|
|
const [field, meta] = useField('price')
|
|
|
|
const { values } = useFormikContext<FormPublishData>()
|
|
const { dataTokenOptions } = values.services[0]
|
|
|
|
return (
|
|
<div className={styles.price}>
|
|
<div className={styles.grid}>
|
|
<div className={styles.form}>
|
|
{free ? (
|
|
<Input
|
|
value="0"
|
|
name="price"
|
|
type="number"
|
|
prefix="OCEAN"
|
|
readOnly
|
|
/>
|
|
) : (
|
|
<Input
|
|
value={field.value}
|
|
name="price"
|
|
type="number"
|
|
prefix="OCEAN"
|
|
min="1"
|
|
{...field}
|
|
/>
|
|
)}
|
|
<Error meta={meta} />
|
|
</div>
|
|
<div className={styles.datatoken}>
|
|
<h4>
|
|
= <strong>1</strong> {dataTokenOptions.symbol}{' '}
|
|
<Conversion price={field.value} className={styles.conversion} />
|
|
</h4>
|
|
</div>
|
|
</div>
|
|
{firstPrice && (
|
|
<aside className={styles.firstPrice}>
|
|
Expected first price:{' '}
|
|
<PriceUnit
|
|
price={Number(firstPrice) > 0 ? firstPrice : '-'}
|
|
small
|
|
conversion
|
|
/>
|
|
</aside>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|