|
1 | 1 | import { Currency, ETHER, Token } from '@uniswap/sdk'
|
2 |
| -import React, { useState } from 'react' |
| 2 | +import React, { useMemo } from 'react' |
3 | 3 | import styled from 'styled-components'
|
4 | 4 |
|
5 | 5 | import EthereumLogo from '../../assets/images/ethereum-logo.png'
|
| 6 | +import useHttpLocations from '../../hooks/useHttpLocations' |
6 | 7 | import { WrappedTokenInfo } from '../../state/lists/hooks'
|
7 |
| -import uriToHttp from '../../utils/uriToHttp' |
| 8 | +import Logo from '../Logo' |
8 | 9 |
|
9 |
| -const getTokenLogoURL = address => |
| 10 | +const getTokenLogoURL = (address: string) => |
10 | 11 | `https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/${address}/logo.png`
|
11 |
| -const BAD_URIS: { [tokenAddress: string]: true } = {} |
12 | 12 |
|
13 |
| -const Image = styled.img<{ size: string }>` |
| 13 | +const StyledEthereumLogo = styled.img<{ size: string }>` |
14 | 14 | width: ${({ size }) => size};
|
15 | 15 | height: ${({ size }) => size};
|
16 |
| - background-color: white; |
17 |
| - border-radius: 1rem; |
18 | 16 | box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.075);
|
| 17 | + border-radius: 24px; |
19 | 18 | `
|
20 | 19 |
|
21 |
| -const Emoji = styled.span<{ size?: string }>` |
22 |
| - display: flex; |
23 |
| - align-items: center; |
24 |
| - justify-content: center; |
25 |
| - font-size: ${({ size }) => size}; |
26 |
| - width: ${({ size }) => size}; |
27 |
| - height: ${({ size }) => size}; |
28 |
| - margin-bottom: -4px; |
29 |
| -` |
30 |
| - |
31 |
| -const StyledEthereumLogo = styled.img<{ size: string }>` |
| 20 | +const StyledLogo = styled(Logo)<{ size: string }>` |
32 | 21 | width: ${({ size }) => size};
|
33 | 22 | height: ${({ size }) => size};
|
34 |
| - box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.075); |
35 |
| - border-radius: 24px; |
36 | 23 | `
|
37 | 24 |
|
38 | 25 | export default function CurrencyLogo({
|
39 | 26 | currency,
|
40 | 27 | size = '24px',
|
41 |
| - ...rest |
| 28 | + style |
42 | 29 | }: {
|
43 | 30 | currency?: Currency
|
44 | 31 | size?: string
|
45 | 32 | style?: React.CSSProperties
|
46 | 33 | }) {
|
47 |
| - const [, refresh] = useState<number>(0) |
48 |
| - |
49 |
| - if (currency === ETHER) { |
50 |
| - return <StyledEthereumLogo src={EthereumLogo} size={size} {...rest} /> |
51 |
| - } |
| 34 | + const uriLocations = useHttpLocations(currency instanceof WrappedTokenInfo ? currency.logoURI : undefined) |
52 | 35 |
|
53 |
| - if (currency instanceof Token) { |
54 |
| - let uri: string | undefined |
| 36 | + const srcs: string[] = useMemo(() => { |
| 37 | + if (currency === ETHER) return [] |
55 | 38 |
|
56 |
| - if (currency instanceof WrappedTokenInfo) { |
57 |
| - if (currency.logoURI && !BAD_URIS[currency.logoURI]) { |
58 |
| - uri = uriToHttp(currency.logoURI).filter(s => !BAD_URIS[s])[0] |
| 39 | + if (currency instanceof Token) { |
| 40 | + if (currency instanceof WrappedTokenInfo) { |
| 41 | + return [...uriLocations, getTokenLogoURL(currency.address)] |
59 | 42 | }
|
60 |
| - } |
61 | 43 |
|
62 |
| - if (!uri) { |
63 |
| - const defaultUri = getTokenLogoURL(currency.address) |
64 |
| - if (!BAD_URIS[defaultUri]) { |
65 |
| - uri = defaultUri |
66 |
| - } |
| 44 | + return [getTokenLogoURL(currency.address)] |
67 | 45 | }
|
| 46 | + return [] |
| 47 | + }, [currency, uriLocations]) |
68 | 48 |
|
69 |
| - if (uri) { |
70 |
| - return ( |
71 |
| - <Image |
72 |
| - {...rest} |
73 |
| - alt={`${currency.name} Logo`} |
74 |
| - src={uri} |
75 |
| - size={size} |
76 |
| - onError={() => { |
77 |
| - if (currency instanceof Token) { |
78 |
| - BAD_URIS[uri] = true |
79 |
| - } |
80 |
| - refresh(i => i + 1) |
81 |
| - }} |
82 |
| - /> |
83 |
| - ) |
84 |
| - } |
| 49 | + if (currency === ETHER) { |
| 50 | + return <StyledEthereumLogo src={EthereumLogo} size={size} style={style} /> |
85 | 51 | }
|
86 | 52 |
|
87 |
| - return ( |
88 |
| - <Emoji {...rest} size={size}> |
89 |
| - <span role="img" aria-label="Thinking"> |
90 |
| - 🤔 |
91 |
| - </span> |
92 |
| - </Emoji> |
93 |
| - ) |
| 53 | + return <StyledLogo size={size} srcs={srcs} alt={`${currency?.symbol ?? 'token'} logo`} style={style} /> |
94 | 54 | }
|
0 commit comments