react-feather#CheckCircle TypeScript Examples
The following examples show how to use
react-feather#CheckCircle.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Transaction.tsx From cuiswap with GNU General Public License v3.0 | 6 votes |
export default function Transaction({ hash }: { hash: string }) {
const { chainId } = useActiveWeb3React()
const allTransactions = useAllTransactions()
const summary = allTransactions?.[hash]?.summary
const pending = !allTransactions?.[hash]?.receipt
const success =
!pending &&
(allTransactions[hash].receipt.status === 1 || typeof allTransactions[hash].receipt.status === 'undefined')
return (
<TransactionWrapper>
<TransactionState href={getEtherscanLink(chainId, hash, 'transaction')} pending={pending} success={success}>
<RowFixed>
<TransactionStatusText>{summary ?? hash} ↗</TransactionStatusText>
</RowFixed>
<IconWrapper pending={pending} success={success}>
{pending ? <Loader /> : success ? <CheckCircle size="16" /> : <Triangle size="16" />}
</IconWrapper>
</TransactionState>
</TransactionWrapper>
)
}
Example #2
Source File: TransactionPopup.tsx From luaswap-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>{NETWORK_SCAN[chainId]}</ExternalLink>
)}
</AutoColumn>
</RowNoFlex>
)
}
Example #3
Source File: TransactionPopup.tsx From panther-frontend-dex with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Body fontWeight={500}>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Body>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on BscScan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #4
Source File: TransactionPopup.tsx From pancake-swap-testnet with MIT License | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Text>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Text>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #5
Source File: TransactionPopup.tsx From pancake-swap-exchange-testnet with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Text>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Text>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #6
Source File: TransactionPopup.tsx From mozartfinance-swap-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Text>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Text>
{chainId && <ExternalLink href={getBscScanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #7
Source File: TransactionPopup.tsx From goose-frontend-amm with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.success} size={24} />
) : (
<AlertCircle color={theme.colors.failure} size={24} />
)}
</div>
<AutoColumn gap="8px">
<Body fontWeight={500}>{summary ?? `Hash: ${hash.slice(0, 8)}...${hash.slice(58, 65)}`}</Body>
{chainId && <ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #8
Source File: Transaction.tsx From goose-frontend-amm with GNU General Public License v3.0 | 6 votes |
export default function Transaction({ hash }: { hash: string }) {
const { chainId } = useActiveWeb3React()
const allTransactions = useAllTransactions()
const tx = allTransactions?.[hash]
const summary = tx?.summary
const pending = !tx?.receipt
const success = !pending && tx && (tx.receipt?.status === 1 || typeof tx.receipt?.status === 'undefined')
if (!chainId) return null
return (
<TransactionWrapper>
<TransactionState href={getEtherscanLink(chainId, hash, 'transaction')} pending={pending} success={success}>
<RowFixed>
<TransactionStatusText>{summary ?? hash} ↗</TransactionStatusText>
</RowFixed>
<IconWrapper pending={pending} success={success}>
{pending ? <Loader /> : success ? <CheckCircle size="16" /> : <Triangle size="16" />}
</IconWrapper>
</TransactionState>
</TransactionWrapper>
)
}
Example #9
Source File: Copy.tsx From goose-frontend-amm with GNU General Public License v3.0 | 6 votes |
export default function CopyHelper(props: { toCopy: string; children: React.ReactNode }) {
const [isCopied, setCopied] = useCopyClipboard()
const { children, toCopy } = props
return (
<CopyIcon onClick={() => setCopied(toCopy)}>
{isCopied ? (
<TransactionStatusText>
<CheckCircle size="16" />
<TransactionStatusText>Copied</TransactionStatusText>
</TransactionStatusText>
) : (
<TransactionStatusText>
<Copy size="16" />
</TransactionStatusText>
)}
{isCopied ? '' : children}
</CopyIcon>
)
}
Example #10
Source File: TransactionPopup.tsx From dyp with Do What The F*ck You Want To Public License | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on Etherscan</ExternalLink>
)}
</AutoColumn>
</RowNoFlex>
)
}
Example #11
Source File: Transaction.tsx From dyp with Do What The F*ck You Want To Public License | 6 votes |
export default function Transaction({ hash }: { hash: string }) {
const { chainId } = useActiveWeb3React()
const allTransactions = useAllTransactions()
const tx = allTransactions?.[hash]
const summary = tx?.summary
const pending = !tx?.receipt
const success = !pending && tx && (tx.receipt?.status === 1 || typeof tx.receipt?.status === 'undefined')
if (!chainId) return null
return (
<TransactionWrapper>
<TransactionState href={getEtherscanLink(chainId, hash, 'transaction')} pending={pending} success={success}>
<RowFixed>
<TransactionStatusText>{summary ?? hash} ↗</TransactionStatusText>
</RowFixed>
<IconWrapper pending={pending} success={success}>
{pending ? <Loader /> : success ? <CheckCircle size="16" /> : <Triangle size="16" />}
</IconWrapper>
</TransactionState>
</TransactionWrapper>
)
}
Example #12
Source File: TransactionPopup.tsx From cheeseswap-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? (
<CheckCircle color={theme.colors.green1} size={24} />
) : (
<AlertCircle color={theme.colors.red1} size={24} />
)}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={700}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && <ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on bscscan</ExternalLink>}
</AutoColumn>
</RowNoFlex>
)
}
Example #13
Source File: Copy.tsx From cheeseswap-interface with GNU General Public License v3.0 | 6 votes |
export default function CopyHelper(props: { toCopy: string; children?: React.ReactNode }) {
const [isCopied, setCopied] = useCopyClipboard()
return (
<CopyIcon onClick={() => setCopied(props.toCopy)}>
{isCopied ? (
<TransactionStatusText>
<CheckCircle size={'16'} />
<TransactionStatusText>Copied</TransactionStatusText>
</TransactionStatusText>
) : (
<TransactionStatusText>
<Copy size={'16'} />
</TransactionStatusText>
)}
{isCopied ? '' : props.children}
</CopyIcon>
)
}
Example #14
Source File: Copy.tsx From cuiswap with GNU General Public License v3.0 | 6 votes |
export default function CopyHelper(props: { toCopy: string; children?: React.ReactNode }) {
const [isCopied, setCopied] = useCopyClipboard()
return (
<CopyIcon onClick={() => setCopied(props.toCopy)}>
{isCopied ? (
<TransactionStatusText>
<CheckCircle size={'16'} />
<TransactionStatusText>Copied</TransactionStatusText>
</TransactionStatusText>
) : (
<TransactionStatusText>
<Copy size={'16'} />
</TransactionStatusText>
)}
{isCopied ? '' : props.children}
</CopyIcon>
)
}
Example #15
Source File: TransactionPopup.tsx From cuiswap with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary
}: {
hash: string
success?: boolean
summary?: string
}) {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on Etherscan</ExternalLink>
</AutoColumn>
</RowNoFlex>
)
}
Example #16
Source File: CopyHelper.tsx From interface-v2 with GNU General Public License v3.0 | 6 votes |
CopyHelper: React.FC<CopyHelperProps> = ({ toCopy, children }) => {
const [isCopied, setCopied] = useCopyClipboard();
const classes = useStyles();
return (
<Box className={classes.copyIcon} onClick={() => setCopied(toCopy)}>
{isCopied ? (
<>
<CheckCircle size='20' />
<Typography style={{ marginLeft: 4 }} variant='body2'>
Copied
</Typography>
</>
) : (
<Copy size='20' />
)}
{isCopied ? '' : children}
</Box>
);
}
Example #17
Source File: Transaction.tsx From interface-v2 with GNU General Public License v3.0 | 6 votes |
Transaction: React.FC<TransactionProps> = ({ hash }) => {
const classes = useStyles();
const { chainId } = useActiveWeb3React();
const allTransactions = useAllTransactions();
const tx = allTransactions?.[hash];
const summary = tx?.summary;
const pending = !tx?.confirmedTime;
const success =
!pending &&
tx &&
tx.receipt &&
(tx.receipt.status === 1 || typeof tx.receipt.status === 'undefined');
if (!chainId) return null;
return (
<Box className={classes.transactionState}>
<a
className={classes.transactionStatusText}
href={getEtherscanLink(chainId, hash, 'transaction')}
target='_blank'
rel='noopener noreferrer'
>
{summary ?? hash} ↗
</a>
<Box className={classes.iconWrapper}>
{pending ? (
<CircularProgress size={16} />
) : success ? (
<CheckCircle size='16' />
) : (
<Triangle size='16' />
)}
</Box>
</Box>
);
}
Example #18
Source File: Copy.tsx From sybil-interface with GNU General Public License v3.0 | 6 votes |
CopyHelper = (props: { toCopy: string; children?: React.ReactNode }): JSX.Element => {
const [isCopied, setCopied] = useCopyClipboard()
return (
<CopyIcon onClick={() => setCopied(props.toCopy)}>
{isCopied ? (
<TransactionStatusText>
<CheckCircle size={'16'} />
<TransactionStatusText>Copied</TransactionStatusText>
</TransactionStatusText>
) : (
<TransactionStatusText>
<Copy size={'16'} />
</TransactionStatusText>
)}
{isCopied ? '' : props.children}
</CopyIcon>
)
}
Example #19
Source File: Transaction.tsx From sybil-interface with GNU General Public License v3.0 | 6 votes |
export default function Transaction({ hash }: { hash: string }): JSX.Element | null {
const { chainId } = useActiveWeb3React()
const allTransactions = useAllTransactions()
const tx = allTransactions?.[hash]
const summary = tx?.summary
const pending = !tx?.receipt
const success = !pending && tx && (tx.receipt?.status === 1 || typeof tx.receipt?.status === 'undefined')
if (!chainId) return null
return (
<TransactionWrapper>
<TransactionState href={getEtherscanLink(chainId, hash, 'transaction')} pending={pending} success={success}>
<RowFixed>
<TransactionStatusText>{summary ?? hash} ↗</TransactionStatusText>
</RowFixed>
<IconWrapper pending={pending} success={success}>
{pending ? <Loader /> : success ? <CheckCircle size="16" /> : <Triangle size="16" />}
</IconWrapper>
</TransactionState>
</TransactionWrapper>
)
}
Example #20
Source File: TransactionPopup.tsx From sybil-interface with GNU General Public License v3.0 | 6 votes |
export default function TransactionPopup({
hash,
success,
summary,
}: {
hash: string
success?: boolean
summary?: string
}): JSX.Element {
const { chainId } = useActiveWeb3React()
const theme = useContext(ThemeContext)
return (
<RowNoFlex>
<div style={{ paddingRight: 16 }}>
{success ? <CheckCircle color={theme.green1} size={24} /> : <AlertCircle color={theme.red1} size={24} />}
</div>
<AutoColumn gap="8px">
<TYPE.body fontWeight={500}>{summary ?? 'Hash: ' + hash.slice(0, 8) + '...' + hash.slice(58, 65)}</TYPE.body>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>View on Etherscan</ExternalLink>
)}
</AutoColumn>
</RowNoFlex>
)
}
Example #21
Source File: Transaction.tsx From cheeseswap-interface with GNU General Public License v3.0 | 6 votes |
export default function Transaction({ hash }: { hash: string }) {
const { chainId } = useActiveWeb3React()
const allTransactions = useAllTransactions()
const tx = allTransactions?.[hash]
const summary = tx?.summary
const pending = !tx?.receipt
const success = !pending && tx && (tx.receipt?.status === 1 || typeof tx.receipt?.status === 'undefined')
if (!chainId) return null
return (
<TransactionWrapper>
<TransactionState href={getEtherscanLink(chainId, hash, 'transaction')} pending={pending} success={success}>
<RowFixed>
<TransactionStatusText>{summary ?? hash} ↗</TransactionStatusText>
</RowFixed>
<IconWrapper pending={pending} success={success}>
{pending ? <Loader /> : success ? <CheckCircle size="16" /> : <Triangle size="16" />}
</IconWrapper>
</TransactionState>
</TransactionWrapper>
)
}
Example #22
Source File: index.tsx From sybil-interface with GNU General Public License v3.0 | 5 votes |
export function OffChainRequestModal({ success, onDismiss }: { success: boolean; onDismiss: () => void }): JSX.Element {
const theme = useTheme()
return success ? (
<Wrapper>
<AutoColumn>
<RowBetween>
<div />
<CloseIcon onClick={onDismiss} />
</RowBetween>
<ConfirmedIcon>
<CheckCircle strokeWidth={0.5} size={90} color={theme.primary1} />
</ConfirmedIcon>
<AutoColumn gap="12px" justify={'center'}>
<Text fontWeight={500} fontSize={20}>
Verification Successful
</Text>
<ButtonPrimary onClick={onDismiss} style={{ margin: '20px 0 0 0' }}>
<Text fontWeight={500} fontSize={20}>
Close
</Text>
</ButtonPrimary>
</AutoColumn>
</AutoColumn>
</Wrapper>
) : (
<Wrapper>
<AutoColumn>
<RowBetween>
<div />
<CloseIcon onClick={onDismiss} />
</RowBetween>
<ConfirmedIcon>
<CustomLightSpinner src={Circle} alt="loader" size={'90px'} />
</ConfirmedIcon>
<AutoColumn gap="12px" justify={'center'}>
<Text fontWeight={500} fontSize={16} color="" textAlign="center">
Attempting Verification
</Text>
</AutoColumn>
</AutoColumn>
</Wrapper>
)
}
Example #23
Source File: ImportRow.tsx From limit-orders-lib with GNU General Public License v3.0 | 5 votes |
CheckIcon = styled(CheckCircle)`
height: 16px;
width: 16px;
margin-right: 6px;
stroke: ${({ theme }) => theme.green1};
`
Example #24
Source File: MessagesBlock.tsx From ke with MIT License | 5 votes |
messageIconMapping: { [key: string]: Icon } = {
success: CheckCircle,
warning: AlertCircle,
error: AlertCircle,
info: HelpCircle,
}
Example #25
Source File: index.tsx From cheeseswap-interface with GNU General Public License v3.0 | 5 votes |
function TransactionSubmittedContent({
onDismiss,
chainId,
hash,
currencyToAdd
}: {
onDismiss: () => void
hash: string | undefined
chainId: ChainId
currencyToAdd?: Currency | undefined
}) {
const theme = useContext(ThemeContext)
const { library } = useActiveWeb3React()
const { addToken, success } = useAddTokenToMetamask(currencyToAdd)
return (
<Wrapper>
<Section>
<RowBetween>
<div />
<CloseIcon onClick={onDismiss} />
</RowBetween>
<ConfirmedIcon>
<ArrowUpCircle strokeWidth={0.5} size={90} color={theme.colors.text1} />
</ConfirmedIcon>
<AutoColumn gap="12px" justify={'center'}>
<Text fontWeight={700} fontSize={18}>
Transaction Submitted
</Text>
{chainId && hash && (
<ExternalLink href={getEtherscanLink(chainId, hash, 'transaction')}>
<Text fontWeight={700} fontSize={14} color={theme.colors.text2}>
View on bscscan.com
</Text>
</ExternalLink>
)}
{currencyToAdd && library?.provider?.isMetaMask && (
<ButtonLight mt="12px" padding="6px 12px" width="fit-content" onClick={addToken}>
{!success ? (
<RowFixed>
Add {currencyToAdd.symbol} to Metamask <StyledLogo src={MetaMaskLogo} />
</RowFixed>
) : (
<RowFixed>
Added {currencyToAdd.symbol}{' '}
<CheckCircle size={'16px'} stroke={theme.colors.text2} style={{ marginLeft: '6px' }} />
</RowFixed>
)}
</ButtonLight>
)}
<ButtonPrimary onClick={onDismiss} style={{ margin: '20px 0 0 0' }}>
<Text fontWeight={700} fontSize={18}>
Close
</Text>
</ButtonPrimary>
</AutoColumn>
</Section>
</Wrapper>
)
}
Example #26
Source File: subscribe.tsx From samuelkraft-next with MIT License | 5 votes |
Subscribe = ({ title, header = true, className }: SubscribeProps) => {
const { query } = useRouter() as NextRouter
const inputEl = useRef(null)
const [message, setMessage] = useState('')
const [loading, setLoading] = useState(false)
const subscribe = async e => {
e.preventDefault()
setLoading(true)
const res = await fetch('/api/subscribe', {
body: JSON.stringify({
email: inputEl.current.value,
}),
headers: {
'Content-Type': 'application/json',
},
method: 'POST',
})
const { error } = await res.json()
if (error) {
setLoading(false)
setMessage(error)
return
}
inputEl.current.value = ''
setLoading(false)
setMessage('Thanks! Check you inbox for a confirmation email ✨')
}
const wrapperClassName = cn(styles.wrapper, className)
if (query.confirmed) {
return (
<div className={wrapperClassName}>
<header className={styles.header}>
<CheckCircle style={{ color: 'green' }} />
<h4 className={styles.title}>Thanks for confirming your email!</h4>
</header>
<p className={styles.description} style={{ marginBottom: 0 }}>
You're on the list and will get updates when new content is published.
</p>
</div>
)
}
return (
<form onSubmit={subscribe} className={wrapperClassName}>
{header && (
<>
<header className={styles.header}>
<Send />
<p className={styles.title}>{title || 'Enjoyed this post? Subscribe to the newsletter!'}</p>
</header>
<p className={styles.description}>
A newsletter in the realm between <em className={styles.em}>design & development</em>. Learn animations, CSS, web
development tips & tricks and creating delightful and useful interfaces!
</p>
<p className={styles.description}>No spam, unsubcribe at any time!</p>
</>
)}
<label htmlFor="email-input" className="sr-only">
Email address
</label>
<div className={cn(styles.inputWrapper, message && styles.hidden)}>
<input className={styles.input} id="email-input" name="email" placeholder="Email address" ref={inputEl} required type="email" />
<Button disabled={loading} type="submit">
Subscribe
</Button>
{message && <div className={styles.message}>{message}</div>}
</div>
</form>
)
}
Example #27
Source File: ImportRow.tsx From forward.swaps with GNU General Public License v3.0 | 5 votes |
CheckIcon = styled(CheckCircle)`
height: 16px;
width: 16px;
margin-right: 6px;
stroke: ${({ theme }) => theme.green1};
`
Example #28
Source File: ManageLists.tsx From limit-orders-lib with GNU General Public License v3.0 | 4 votes |
export function ManageLists({
setModalView,
setImportList,
setListUrl,
}: {
setModalView: (view: CurrencyModalView) => void;
setImportList: (list: TokenList) => void;
setListUrl: (url: string) => void;
}) {
const theme = useTheme();
const [listUrlInput, setListUrlInput] = useState<string>("");
const lists = useAllLists();
// sort by active but only if not visible
const activeListUrls = useActiveListUrls();
const [activeCopy, setActiveCopy] = useState<string[] | undefined>();
useEffect(() => {
if (!activeCopy && activeListUrls) {
setActiveCopy(activeListUrls);
}
}, [activeCopy, activeListUrls]);
const handleInput = useCallback((e) => {
setListUrlInput(e.target.value);
}, []);
const fetchList = useFetchListCallback();
const validUrl: boolean = useMemo(() => {
return (
uriToHttp(listUrlInput).length > 0 ||
Boolean(parseENSAddress(listUrlInput))
);
}, [listUrlInput]);
const sortedLists = useMemo(() => {
const listUrls = Object.keys(lists);
return listUrls
.filter((listUrl) => {
// only show loaded lists, hide unsupported lists
return (
Boolean(lists[listUrl].current) &&
!Boolean(UNSUPPORTED_LIST_URLS.includes(listUrl))
);
})
.sort((u1, u2) => {
const { current: l1 } = lists[u1];
const { current: l2 } = lists[u2];
// first filter on active lists
if (activeCopy?.includes(u1) && !activeCopy?.includes(u2)) {
return -1;
}
if (!activeCopy?.includes(u1) && activeCopy?.includes(u2)) {
return 1;
}
if (l1 && l2) {
return l1.name.toLowerCase() < l2.name.toLowerCase()
? -1
: l1.name.toLowerCase() === l2.name.toLowerCase()
? 0
: 1;
}
if (l1) return -1;
if (l2) return 1;
return 0;
});
}, [lists, activeCopy]);
// temporary fetched list for import flow
const [tempList, setTempList] = useState<TokenList>();
const [addError, setAddError] = useState<string | undefined>();
const { library } = useWeb3();
useEffect(() => {
async function fetchTempList() {
if (!library) return;
fetchList(library, listUrlInput, false)
.then((list) => setTempList(list))
.catch(() => setAddError("Error importing list"));
}
// if valid url, fetch details for card
if (validUrl) {
fetchTempList();
} else {
setTempList(undefined);
listUrlInput !== "" && setAddError("Enter valid list location");
}
// reset error
if (listUrlInput === "") {
setAddError(undefined);
}
}, [fetchList, listUrlInput, validUrl, library]);
// check if list is already imported
const isImported = Object.keys(lists).includes(listUrlInput);
// set list values and have parent modal switch to import list view
const handleImport = useCallback(() => {
if (!tempList) return;
setImportList(tempList);
setModalView(CurrencyModalView.importList);
setListUrl(listUrlInput);
}, [listUrlInput, setImportList, setListUrl, setModalView, tempList]);
return (
<Wrapper>
<PaddedColumn gap="14px">
<Row>
<SearchInput
type="text"
id="list-add-input"
placeholder="https:// or ipfs:// or ENS name"
value={listUrlInput}
onChange={handleInput}
/>
</Row>
{addError ? (
<TYPE.error
title={addError}
style={{ textOverflow: "ellipsis", overflow: "hidden" }}
error
>
{addError}
</TYPE.error>
) : null}
</PaddedColumn>
{tempList && (
<PaddedColumn style={{ paddingTop: 0 }}>
<Card backgroundColor={theme.bg2} padding="12px 20px">
<RowBetween>
<RowFixed>
{tempList.logoURI && (
<ListLogo logoURI={tempList.logoURI} size="40px" />
)}
<AutoColumn gap="4px" style={{ marginLeft: "20px" }}>
<TYPE.body fontWeight={600}>{tempList.name}</TYPE.body>
<TYPE.main fontSize={"12px"}>
{tempList.tokens.length} tokens
</TYPE.main>
</AutoColumn>
</RowFixed>
{isImported ? (
<RowFixed>
<IconWrapper
stroke={theme.text2}
size="16px"
marginRight={"10px"}
>
<CheckCircle />
</IconWrapper>
<TYPE.body color={theme.text2}>Loaded</TYPE.body>
</RowFixed>
) : (
<ButtonPrimary
style={{ fontSize: "14px" }}
padding="6px 8px"
width="fit-content"
onClick={handleImport}
>
Import
</ButtonPrimary>
)}
</RowBetween>
</Card>
</PaddedColumn>
)}
<Separator />
<ListContainer>
<AutoColumn gap="md">
{sortedLists.map((listUrl) => (
<ListRow key={listUrl} listUrl={listUrl} />
))}
</AutoColumn>
</ListContainer>
</Wrapper>
);
}
Example #29
Source File: index.tsx From limit-orders-lib with GNU General Public License v3.0 | 4 votes |
export default function GelatoLimitOrder({
showCommonBases = true,
}: GelatoLimitOrderProps) {
const { account, chainId, toggleWalletModal } = useWeb3();
const theme = useTheme();
const recipient = account ?? null;
const frontrunProtected = useFrontrunProtected();
const dispatch = useDispatch();
const handleFrontrunToggle = () => {
dispatch(updateFrontrunProtected(!frontrunProtected));
};
const {
handlers: {
handleInput,
handleRateType,
handleCurrencySelection,
handleSwitchTokens,
handleLimitOrderSubmission,
},
derivedOrderInfo: {
parsedAmounts,
currencies,
currencyBalances,
trade,
formattedAmounts,
inputError,
rawAmounts,
price,
},
orderState: { independentField, rateType },
} = useGelatoLimitOrders();
const fiatValueInput = useUSDCValue(parsedAmounts.input);
const desiredRateInCurrencyAmount = tryParseAmount(
trade?.outputAmount.toSignificant(6),
currencies.output
);
const fiatValueDesiredRate = useUSDCValue(desiredRateInCurrencyAmount);
const currentMarketRate = trade?.executionPrice ?? undefined;
const pct =
currentMarketRate && price
? price.subtract(currentMarketRate).divide(currentMarketRate)
: undefined;
const percentageRateDifference = pct
? new Percent(pct.numerator, pct.denominator)
: undefined;
const isValid = !inputError;
const [activeTab, setActiveTab] = useState<"sell" | "buy">("sell");
const handleActiveTab = (tab: "sell" | "buy") => {
if (activeTab === tab) return;
handleRateType(rateType, price);
setActiveTab(tab);
};
const handleTypeInput = useCallback(
(value: string) => {
handleInput(Field.INPUT, value);
},
[handleInput]
);
const handleTypeOutput = useCallback(
(value: string) => {
handleInput(Field.OUTPUT, value);
},
[handleInput]
);
const handleTypeDesiredRate = useCallback(
(value: string) => {
handleInput(Field.PRICE, value);
},
[handleInput]
);
// modal and loading
const [
{ showConfirm, tradeToConfirm, swapErrorMessage, attemptingTxn, txHash },
setSwapState,
] = useState<{
showConfirm: boolean;
tradeToConfirm: Trade<Currency, Currency, TradeType> | undefined;
attemptingTxn: boolean;
swapErrorMessage: string | undefined;
txHash: string | undefined;
}>({
showConfirm: false,
tradeToConfirm: undefined,
attemptingTxn: false,
swapErrorMessage: undefined,
txHash: undefined,
});
const [
approvalState,
approveCallback,
] = useApproveCallbackFromInputCurrencyAmount(parsedAmounts.input);
// check if user has gone through approval process, used to show two step buttons, reset on token change
const [approvalSubmitted, setApprovalSubmitted] = useState<boolean>(false);
// mark when a user has submitted an approval, reset onTokenSelection for input field
useEffect(() => {
if (approvalState === ApprovalState.PENDING) {
setApprovalSubmitted(true);
}
}, [approvalState, approvalSubmitted]);
const allowedSlippage = new Percent(40, 10_000);
const userHasSpecifiedInputOutput = Boolean(
currencies.input && currencies.output
);
const routeNotFound = !trade?.route;
const isLoadingRoute =
userHasSpecifiedInputOutput &&
((parsedAmounts.input && !parsedAmounts.output) ||
(!parsedAmounts.input && parsedAmounts.output));
const maxInputAmount: CurrencyAmount<Currency> | undefined = maxAmountSpend(
currencyBalances.input
);
const showMaxButton = Boolean(
maxInputAmount?.greaterThan(0) &&
!parsedAmounts.input?.equalTo(maxInputAmount)
);
const handleSwap = useCallback(() => {
if (!handleLimitOrderSubmission) {
return;
}
setSwapState({
attemptingTxn: true,
tradeToConfirm,
showConfirm,
swapErrorMessage: undefined,
txHash: undefined,
});
try {
if (!currencies.input?.wrapped.address) {
throw new Error("Invalid input currency");
}
if (!currencies.output?.wrapped.address) {
throw new Error("Invalid output currency");
}
if (!rawAmounts.input) {
throw new Error("Invalid input amount");
}
if (!rawAmounts.output) {
throw new Error("Invalid output amount");
}
if (!account) {
throw new Error("No account");
}
handleLimitOrderSubmission({
inputToken: currencies.input?.isNative
? NATIVE
: currencies.input?.wrapped.address,
outputToken: currencies.output?.isNative
? NATIVE
: currencies.output?.wrapped.address,
inputAmount: rawAmounts.input,
outputAmount: rawAmounts.output,
owner: account,
})
.then(({ hash }) => {
setSwapState({
attemptingTxn: false,
tradeToConfirm,
showConfirm,
swapErrorMessage: undefined,
txHash: hash,
});
})
.catch((error) => {
setSwapState({
attemptingTxn: false,
tradeToConfirm,
showConfirm,
swapErrorMessage: error.message,
txHash: undefined,
});
});
} catch (error: any) {
setSwapState({
attemptingTxn: false,
tradeToConfirm,
showConfirm,
swapErrorMessage: error.message,
txHash: undefined,
});
}
}, [
handleLimitOrderSubmission,
tradeToConfirm,
showConfirm,
currencies.input?.wrapped.address,
currencies.input?.isNative,
currencies.output?.wrapped.address,
currencies.output?.isNative,
rawAmounts.input,
rawAmounts.output,
account,
]);
const [showInverted, setShowInverted] = useState<boolean>(false);
const handleConfirmDismiss = useCallback(() => {
setSwapState({
showConfirm: false,
tradeToConfirm,
attemptingTxn,
swapErrorMessage,
txHash,
});
// if there was a tx hash, we want to clear the input
if (txHash) {
handleInput(Field.INPUT, "");
}
}, [attemptingTxn, handleInput, swapErrorMessage, tradeToConfirm, txHash]);
const handleAcceptChanges = useCallback(() => {
setSwapState({
tradeToConfirm: trade as any,
swapErrorMessage,
txHash,
attemptingTxn,
showConfirm,
});
}, [attemptingTxn, showConfirm, swapErrorMessage, trade, txHash]);
const handleInputSelect = useCallback(
(inputCurrency) => {
// setApprovalSubmitted(false); // reset 2 step UI for approvals
handleCurrencySelection(Field.INPUT, inputCurrency);
},
[handleCurrencySelection]
);
const handleMaxInput = useCallback(() => {
maxInputAmount && handleInput(Field.INPUT, maxInputAmount.toExact());
}, [maxInputAmount, handleInput]);
const handleOutputSelect = useCallback(
(outputCurrency) => handleCurrencySelection(Field.OUTPUT, outputCurrency),
[handleCurrencySelection]
);
const swapIsUnsupported = useIsSwapUnsupported(
currencies?.input,
currencies?.output
);
const {
gasPrice,
realExecutionPrice,
realExecutionPriceAsString,
} = useGasOverhead(parsedAmounts.input, parsedAmounts.output, rateType);
const showApproveFlow =
!inputError &&
(approvalState === ApprovalState.NOT_APPROVED ||
approvalState === ApprovalState.PENDING ||
(approvalSubmitted && approvalState === ApprovalState.APPROVED));
const handleApprove = useCallback(async () => {
await approveCallback();
}, [approveCallback]);
return (
<Fragment>
<AppBody>
<SwapHeader handleActiveTab={handleActiveTab} activeTab={activeTab} />
<Wrapper id="limit-order-page">
<ConfirmSwapModal
isOpen={showConfirm}
trade={trade}
originalTrade={tradeToConfirm}
onAcceptChanges={handleAcceptChanges}
attemptingTxn={attemptingTxn}
txHash={txHash}
recipient={recipient}
allowedSlippage={allowedSlippage}
onConfirm={handleSwap}
swapErrorMessage={swapErrorMessage}
onDismiss={handleConfirmDismiss}
inputAmount={parsedAmounts.input}
outputAmount={parsedAmounts.output}
/>
<AutoColumn gap={"md"}>
<div style={{ display: "relative" }}>
<CurrencyInputPanel
label={
independentField === Field.OUTPUT ? "From (at most)" : "From"
}
value={formattedAmounts.input}
showMaxButton={showMaxButton}
currency={currencies.input}
onUserInput={handleTypeInput}
onMax={handleMaxInput}
fiatValue={fiatValueInput ?? undefined}
onCurrencySelect={handleInputSelect}
otherCurrency={currencies.output}
showCommonBases={showCommonBases}
id="limit-order-currency-input"
/>
<ArrowWrapper clickable={false}>
{rateType === Rate.MUL ? (
<X
size="16"
color={
currencies.input && currencies.output
? theme.text1
: theme.text3
}
/>
) : (
<Divide
size="16"
color={
currencies.input && currencies.output
? theme.text1
: theme.text3
}
/>
)}
</ArrowWrapper>
<CurrencyInputPanel
value={formattedAmounts.price}
showMaxButton={showMaxButton}
currency={currencies.input}
onUserInput={handleTypeDesiredRate}
fiatValue={fiatValueDesiredRate ?? undefined}
onCurrencySelect={handleInputSelect}
otherCurrency={currencies.output}
showCommonBases={showCommonBases}
id="limit-order-currency-rate"
showCurrencySelector={false}
hideBalance={true}
showRate={true}
isInvertedRate={rateType === Rate.MUL ? false : true}
gasPrice={gasPrice}
realExecutionPrice={realExecutionPrice ?? undefined}
realExecutionPriceAsString={realExecutionPriceAsString}
/>
<ArrowWrapper clickable>
<ArrowDown
size="16"
onClick={() => {
// setApprovalSubmitted(false); // reset 2 step UI for approvals
handleSwitchTokens();
}}
color={
currencies.input && currencies.output
? theme.text1
: theme.text3
}
/>
</ArrowWrapper>
<CurrencyInputPanel
value={formattedAmounts.output}
onUserInput={handleTypeOutput}
label={
independentField === Field.INPUT ? "To (at least)" : "To"
}
showMaxButton={false}
hideBalance={false}
priceImpact={percentageRateDifference}
currency={currencies.output}
onCurrencySelect={handleOutputSelect}
otherCurrency={currencies.input}
showCommonBases={showCommonBases}
rateType={rateType}
id="limit-order-currency-output"
/>
</div>
{chainId == 1 && (
<Row style={{ justifyContent: "flex-end" }}>
<RowFixed>
<Toggle
name="flashbots"
disabled={false}
checked={frontrunProtected}
value={""}
onChange={() => handleFrontrunToggle()}
labelLeft={"Frontrun Protection"}
labelRight={""}
height={24}
sliderHeight={16}
width={44}
sliderWidth={16}
translate={22}
/>
<QuestionHelper text="With frontrun protection enabled Gelato bots will use mistX Labs flashbots SDK to execute your orders. This feature is still in beta." />
</RowFixed>
</Row>
)}
<Row
style={{ justifyContent: !trade ? "center" : "space-between" }}
>
<RowFixed>
<ExternalLink href={"https://www.gelato.network"}>
<PoweredByWrapper size={126} />
</ExternalLink>
</RowFixed>
{trade ? (
<RowFixed>
{/* Current market rate */}
<TradePrice
price={trade.executionPrice}
showInverted={showInverted}
setShowInverted={setShowInverted}
/>
<MouseoverTooltipContent content={<AdvancedSwapDetails />}>
<StyledInfo />
</MouseoverTooltipContent>
</RowFixed>
) : null}
</Row>
<BottomGrouping>
{swapIsUnsupported ? (
<ButtonPrimary disabled={true}>
<TYPE.main mb="4px">Unsupported Asset</TYPE.main>
</ButtonPrimary>
) : !account ? (
<ButtonLight onClick={toggleWalletModal}>
Connect Wallet
</ButtonLight>
) : routeNotFound && isLoadingRoute ? (
<GreyCard style={{ textAlign: "center" }}>
<TYPE.main mb="4px">
<Dots>Loading</Dots>
</TYPE.main>
</GreyCard>
) : showApproveFlow ? (
<AutoRow style={{ flexWrap: "nowrap", width: "100%" }}>
<AutoColumn style={{ width: "100%" }} gap="12px">
<ButtonConfirmed
onClick={handleApprove}
disabled={
approvalState !== ApprovalState.NOT_APPROVED ||
approvalSubmitted
}
width="100%"
altDisabledStyle={approvalState === ApprovalState.PENDING} // show solid button while waiting
confirmed={approvalState === ApprovalState.APPROVED}
>
<AutoRow
justify="space-between"
style={{ flexWrap: "nowrap" }}
>
<span style={{ display: "flex", alignItems: "center" }}>
<CurrencyLogo
currency={currencies.input}
size={"20px"}
style={{ marginRight: "8px", flexShrink: 0 }}
/>
{/* we need to shorten this string on mobile */}
{approvalState === ApprovalState.APPROVED
? `You can now use your ${currencies.input?.symbol} to place orders.`
: `Allow the Gelato Limit Orders to use your
${currencies.input?.symbol}.`}
</span>
{approvalState === ApprovalState.PENDING ||
(approvalSubmitted &&
approvalState === ApprovalState.NOT_APPROVED) ? (
<Loader stroke="white" />
) : approvalSubmitted &&
approvalState === ApprovalState.APPROVED ? (
<CheckCircle size="20" color={theme.green1} />
) : (
<MouseoverTooltip
text={`You must give the Gelato Limit Orders smart contracts
permission to use your
${currencies.input?.symbol}. You only have to do
this once per token.`}
>
<HelpCircle
size="20"
color={"white"}
style={{ marginLeft: "8px" }}
/>
</MouseoverTooltip>
)}
</AutoRow>
</ButtonConfirmed>
<ButtonError
onClick={() => {
setSwapState({
tradeToConfirm: trade,
attemptingTxn: false,
swapErrorMessage: undefined,
showConfirm: true,
txHash: undefined,
});
}}
id="limit-order-button"
disabled={
!isValid || approvalState !== ApprovalState.APPROVED
}
error={false}
>
<Text fontSize={20} fontWeight={500}>
{inputError ? inputError : `Place order`}
</Text>
</ButtonError>
</AutoColumn>
</AutoRow>
) : (
<ButtonError
onClick={() => {
setSwapState({
tradeToConfirm: trade,
attemptingTxn: false,
swapErrorMessage: undefined,
showConfirm: true,
txHash: undefined,
});
}}
id="limit-order-button"
disabled={!isValid}
error={false}
>
<Text fontSize={20} fontWeight={500}>
{inputError ? inputError : `Place order`}
</Text>
</ButtonError>
)}
{swapErrorMessage && isValid ? (
<SwapCallbackError error={swapErrorMessage} />
) : null}
</BottomGrouping>
</AutoColumn>
</Wrapper>
</AppBody>
{!swapIsUnsupported ? null : (
<UnsupportedCurrencyFooter
show={swapIsUnsupported}
currencies={[currencies.input, currencies.output]}
/>
)}
</Fragment>
);
}