e463bbe238
* feat: unhardcode contract addresses * fix: linting and tests * feat: switch contract usage in token app to use unhardcoded addresses * chore: remove other usage of hard coded contract addresses * feat: convert contracts to classes, update claim contract to fix circular dependency * feat: add hard coded contract addresses to contracts page * fix: misc tidy up * chore: rename ethers big num conversion func * fix: remove pending transactions modal * chore: add single toBigNum function that can accept number string or EthersBignNumber * chore: delete unused tranche helpers and decimals functions from smart contracts lib * feat: add faucetable token class * fix: reset tx state after early exit from approve tx * feat: re add transaction modal using zustand store * fix: loader colors for eth wallet * fix: pass ethereum config to gurantee existence before tx execution * chore: lint smart contracts lib * chore: fix web3container to use children and not render prop * chore: lint * fix: use background to mock ethereum wallet to avoid mocking globally for every test * chore: move web3 mock to common steps and call from withdrawals feature tests
116 lines
2.8 KiB
TypeScript
116 lines
2.8 KiB
TypeScript
import { AsyncRenderer, Button, Splash } from '@vegaprotocol/ui-toolkit';
|
|
import {
|
|
Web3Provider,
|
|
Web3ConnectDialog,
|
|
useEthereumConfig,
|
|
} from '@vegaprotocol/web3';
|
|
import { useWeb3React } from '@web3-react/core';
|
|
import type { ReactNode } from 'react';
|
|
import { useEffect, useState } from 'react';
|
|
import { Connectors } from '../../lib/web3-connectors';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
|
|
interface Web3ContainerProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export const Web3Container = ({ children }: Web3ContainerProps) => {
|
|
const [dialogOpen, setDialogOpen] = useState(false);
|
|
const { config, loading, error } = useEthereumConfig();
|
|
|
|
return (
|
|
<AsyncRenderer data={config} loading={loading} error={error}>
|
|
{config ? (
|
|
<Web3Provider connectors={Connectors}>
|
|
<Web3Content
|
|
appChainId={Number(config.chain_id)}
|
|
setDialogOpen={setDialogOpen}
|
|
>
|
|
{children}
|
|
</Web3Content>
|
|
<Web3ConnectDialog
|
|
connectors={Connectors}
|
|
dialogOpen={dialogOpen}
|
|
setDialogOpen={setDialogOpen}
|
|
desiredChainId={Number(config.chain_id)}
|
|
/>
|
|
</Web3Provider>
|
|
) : null}
|
|
</AsyncRenderer>
|
|
);
|
|
};
|
|
|
|
interface Web3ContentProps {
|
|
children: ReactNode;
|
|
appChainId: number;
|
|
setDialogOpen: (isOpen: boolean) => void;
|
|
}
|
|
|
|
export const Web3Content = ({
|
|
children,
|
|
appChainId,
|
|
setDialogOpen,
|
|
}: Web3ContentProps) => {
|
|
const { isActive, error, connector, chainId } = useWeb3React();
|
|
|
|
useEffect(() => {
|
|
if (connector?.connectEagerly) {
|
|
connector.connectEagerly();
|
|
}
|
|
}, [connector]);
|
|
|
|
if (error) {
|
|
return (
|
|
<SplashWrapper>
|
|
<p className="mb-12">{t(`Something went wrong: ${error.message}`)}</p>
|
|
<Button onClick={() => connector.deactivate()}>
|
|
{t('Disconnect')}
|
|
</Button>
|
|
</SplashWrapper>
|
|
);
|
|
}
|
|
|
|
if (!isActive) {
|
|
return (
|
|
<SplashWrapper>
|
|
<p data-testid="connect-eth-wallet-msg" className="mb-12">
|
|
{t('Connect your Ethereum wallet')}
|
|
</p>
|
|
<Button
|
|
onClick={() => setDialogOpen(true)}
|
|
data-testid="connect-eth-wallet-btn"
|
|
>
|
|
{t('Connect')}
|
|
</Button>
|
|
</SplashWrapper>
|
|
);
|
|
}
|
|
|
|
if (chainId !== appChainId) {
|
|
return (
|
|
<SplashWrapper>
|
|
<p className="mb-12">
|
|
{t(`This app only works on chain ID: ${appChainId}`)}
|
|
</p>
|
|
<Button onClick={() => connector.deactivate()}>
|
|
{t('Disconnect')}
|
|
</Button>
|
|
</SplashWrapper>
|
|
);
|
|
}
|
|
|
|
return <>{children}</>;
|
|
};
|
|
|
|
interface SplashWrapperProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
const SplashWrapper = ({ children }: SplashWrapperProps) => {
|
|
return (
|
|
<Splash>
|
|
<div className="text-center">{children}</div>
|
|
</Splash>
|
|
);
|
|
};
|