mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
fix
Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro>
This commit is contained in:
parent
5a7488fa04
commit
adcef8d15e
@ -53,6 +53,7 @@ export default function Input(props: Partial<InputProps>): ReactElement {
|
||||
field
|
||||
} = props
|
||||
|
||||
console.log(props)
|
||||
const hasError =
|
||||
props.form?.touched[field.name] && props.form?.errors[field.name]
|
||||
|
||||
|
@ -2,7 +2,12 @@ import PriceUnit from '../../../../atoms/Price/PriceUnit'
|
||||
import React, { ChangeEvent, ReactElement, useEffect, useState } from 'react'
|
||||
import styles from './FormAdd.module.css'
|
||||
import Input from '../../../../atoms/Input'
|
||||
import { FormikContextType, useField, useFormikContext } from 'formik'
|
||||
import {
|
||||
Field,
|
||||
FieldInputProps,
|
||||
FormikContextType,
|
||||
useFormikContext
|
||||
} from 'formik'
|
||||
import Button from '../../../../atoms/Button'
|
||||
import Token from '../Token'
|
||||
import CoinSelect from '../CoinSelect'
|
||||
@ -37,15 +42,12 @@ export default function FormAdd({
|
||||
|
||||
// Connect with form
|
||||
const {
|
||||
isSubmitting,
|
||||
touched,
|
||||
setTouched,
|
||||
handleChange,
|
||||
submitForm,
|
||||
setFieldValue,
|
||||
values
|
||||
}: FormikContextType<FormAddLiquidity> = useFormikContext()
|
||||
const [field, meta] = useField('amount')
|
||||
|
||||
const [newPoolTokens, setNewPoolTokens] = useState('0')
|
||||
const [newPoolShare, setNewPoolShare] = useState('0')
|
||||
@ -93,21 +95,32 @@ export default function FormAdd({
|
||||
<PriceUnit price={amountMax} symbol={coin} small />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Input
|
||||
type="number"
|
||||
max={amountMax}
|
||||
value={`${values.amount}`}
|
||||
prefix={<CoinSelect dtSymbol={dtSymbol} setCoin={setCoin} />}
|
||||
placeholder="0"
|
||||
field={field}
|
||||
onChange={(e: ChangeEvent<HTMLInputElement>) => {
|
||||
// Workaround so validation kicks in on first touch
|
||||
!touched?.amount && setTouched({ amount: true })
|
||||
handleChange(e)
|
||||
}}
|
||||
disabled={!ocean}
|
||||
/>
|
||||
<Field name="amount">
|
||||
{({
|
||||
field,
|
||||
form
|
||||
}: {
|
||||
field: FieldInputProps<FormAddLiquidity>
|
||||
form: any
|
||||
}) => (
|
||||
<Input
|
||||
type="number"
|
||||
name="amount"
|
||||
max={amountMax}
|
||||
value={`${values.amount}`}
|
||||
prefix={<CoinSelect dtSymbol={dtSymbol} setCoin={setCoin} />}
|
||||
placeholder="0"
|
||||
field={field}
|
||||
form={form}
|
||||
onChange={(e: ChangeEvent<HTMLInputElement>) => {
|
||||
// Workaround so validation kicks in on first touch
|
||||
!touched?.amount && setTouched({ amount: true })
|
||||
handleChange(e)
|
||||
}}
|
||||
disabled={!ocean}
|
||||
/>
|
||||
)}
|
||||
</Field>
|
||||
|
||||
{(Number(balance.ocean) || dtBalance) > (values.amount || 0) && (
|
||||
<Button
|
||||
|
@ -1,11 +1,11 @@
|
||||
.removeInput {
|
||||
composes: addInput from './Add/index.module.css';
|
||||
composes: addInput from './Add/FormAdd.module.css';
|
||||
padding-left: calc(var(--spacer) * 2);
|
||||
padding-right: calc(var(--spacer) * 2);
|
||||
}
|
||||
|
||||
.userLiquidity {
|
||||
composes: userLiquidity from './Add/index.module.css';
|
||||
composes: userLiquidity from './Add/FormAdd.module.css';
|
||||
max-width: 12rem;
|
||||
margin-top: -1rem;
|
||||
margin-left: auto;
|
||||
@ -55,7 +55,7 @@
|
||||
}
|
||||
|
||||
.output {
|
||||
composes: output from './Add/index.module.css';
|
||||
composes: output from './Add/FormAdd.module.css';
|
||||
}
|
||||
|
||||
.output [class*='token'] {
|
||||
|
Loading…
Reference in New Issue
Block a user