diff --git a/batcher-ui/next.config.js b/batcher-ui/next.config.js index c2e43fff..131eac17 100644 --- a/batcher-ui/next.config.js +++ b/batcher-ui/next.config.js @@ -16,6 +16,14 @@ const nextConfig = { return config; }, + images: { + remotePatterns: [ + { + protocol: 'https', + hostname: 'ipfs.io', + }, + ], + }, }; module.exports = nextConfig; diff --git a/batcher-ui/src/components/SelectPair.tsx b/batcher-ui/src/components/SelectPair.tsx index a386140f..8889e86a 100644 --- a/batcher-ui/src/components/SelectPair.tsx +++ b/batcher-ui/src/components/SelectPair.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useEffect, useState } from 'react'; import * as Select from '@radix-ui/react-select'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { @@ -10,24 +10,35 @@ import { useSelector } from 'react-redux'; import { currentSwapSelector } from 'src/reducers'; import { useDispatch } from 'react-redux'; import { changePair } from 'src/actions'; +import { getTokensMetadata } from 'src/utils/utils'; +import Image from 'next/image'; const SelectPair = () => { const { swap, isReverse } = useSelector(currentSwapSelector); const dispatch = useDispatch(); - const availableTokens = ['tzBTC', 'USDT', 'EURL']; + const [availableTokens, setAvailableTokens] = useState([]); + + useEffect(() => { + getTokensMetadata().then( + (tokens: { name: string; address: string; icon: string | undefined }[]) => + setAvailableTokens(tokens) + ); + }, []); return ( { - console.warn(value); + //TODO: change this when we had more pair + // const parsedValue = value === 'USDt' const pair = value === 'tzBTC' ? `tzBTC/${swap.to.name}` : `tzBTC/${value}`; const reversed = value !== 'tzBTC'; dispatch(changePair(pair, reversed)); }}> - + @@ -37,30 +48,37 @@ const SelectPair = () => { - + - {availableTokens - // .filter(a => - // isReverse ? swap.to.name !== a : swap.from.token.name !== a - // ) - .map(t => ( - - {t} - - ))} + {availableTokens.map(t => ( + +
+ {t.icon && ( + {`${t.name} + )} +

{t.name}

+
+
+ ))}
- +
diff --git a/batcher-ui/src/utils/utils.ts b/batcher-ui/src/utils/utils.ts index ea5fb912..126ab6da 100644 --- a/batcher-ui/src/utils/utils.ts +++ b/batcher-ui/src/utils/utils.ts @@ -203,6 +203,30 @@ export const getBigMapByIdAndTokenPair = ( ); }; +export const getTokensMetadata = async () => { + const storage = await getStorage(); + const validTokens = storage['valid_tokens']; + return Promise.all( + Object.values(validTokens).map(async token => { + const icon = await fetch( + `${process.env.NEXT_PUBLIC_TZKT_URI_API}/v1/tokens?contract=${token.address}` + ) + .then(t => t.json()) + .then(([t]) => + t.metadata.thumbnailUri + ? `https://ipfs.io/ipfs/${t.metadata.thumbnailUri.split('//')[1]}` + : undefined + ); + + return { + name: token.name, + address: token.address, + icon, + }; + }) + ); +}; + // ----- FETCH CONTRACT INFORMATIONS AND PARSING ------ export const getPairsInformations = async (