From f60163b54d840ef1d3496c54842e773ee3af9dfa Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Thu, 15 Oct 2020 14:35:38 +0200 Subject: [PATCH] cleanup --- .../organisms/AssetActions/Pool/Add.tsx | 46 ++++++++++--------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/src/components/organisms/AssetActions/Pool/Add.tsx b/src/components/organisms/AssetActions/Pool/Add.tsx index d5e87cbfd..d9b04c998 100644 --- a/src/components/organisms/AssetActions/Pool/Add.tsx +++ b/src/components/organisms/AssetActions/Pool/Add.tsx @@ -12,7 +12,7 @@ import Tooltip from '../../../atoms/Tooltip' import { ReactComponent as Caret } from '../../../../images/caret.svg' import { graphql, useStaticQuery } from 'gatsby' import * as Yup from 'yup' -import { Field, Formik } from 'formik' +import { Field, FieldInputProps, Formik } from 'formik' import Input from '../../../atoms/Input' const contentQuery = graphql` @@ -38,7 +38,11 @@ const contentQuery = graphql` } ` -const initialValues: Partial<{ amount: number }> = { +interface FormAddLiquidity { + amount: number +} + +const initialValues: FormAddLiquidity = { amount: undefined } @@ -64,11 +68,22 @@ export default function Add({ const { ocean, accountId, balance } = useOcean() const [txId, setTxId] = useState('') - const [isLoading, setIsLoading] = useState() const [coin, setCoin] = useState('OCEAN') const [dtBalance, setDtBalance] = useState() const [amountMax, setAmountMax] = useState() + // Live validation rules + // https://github.com/jquense/yup#number + const validationSchema = Yup.object().shape({ + amount: Yup.number() + .min(1, 'Must be more or equal to 1') + .max( + Number(amountMax), + `Must be less or equal to ${Number(amountMax).toFixed(2)}` + ) + .required('Required') + }) + // Get datatoken balance when datatoken selected useEffect(() => { if (!ocean || coin === 'OCEAN') return @@ -94,9 +109,8 @@ export default function Add({ getMaximum() }, [ocean, poolAddress, coin]) + // Submit async function handleAddLiquidity(amount: number, resetForm: () => void) { - setIsLoading(true) - try { const result = coin === 'OCEAN' @@ -112,21 +126,9 @@ export default function Add({ } catch (error) { console.error(error.message) toast.error(error.message) - } finally { - setIsLoading(false) } } - const validationSchema = Yup.object().shape<{ amount: number }>({ - amount: Yup.number() - .min(1, 'Must be more or equal to 1') - .max( - Number(amountMax), - `Must be less or equal to ${Number(amountMax).toFixed(2)}` - ) - .required('Required') - }) - // TODO: this is only a prototype and is an accessibility nightmare. // Needs to be refactored to either use custom select element instead of tippy.js, // or use