6bccfaf8ab
* add feature/scenarios for deposits * add file for auction orders tests * update feature file for deposits * update feature tests for deposit * add feature/scenarios for deposits * add file for auction orders tests * update feature file for deposits * update feature tests for deposit * add test for wallet not connected * fix lint warning * add mock ethereum provider to allow connecting ethereum wallet * add basic test for required validation errors * add aria for input errors for a11y and test targeting, expand submit form helper * use mnemonic for private key generation, update tests to not submit and just assert validation message updates * add chain id to cypress config * update scenario * remove feature file * lint fix * Update apps/trading-e2e/cypress.json Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * use mnemonic from github secret, update cypress.json env vars to match * fix typo in test name and mnemonic env var * update env variables * update eth wallet mnemonic env * Update libs/cypress/src/lib/eip1193-bridge.ts Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * remove unused reference to chainId * update casing * chainId reference from cypress.json * Update apps/trading-e2e/cypress.json Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * Update apps/trading-e2e/src/support/step_definitions/deposits.step.ts Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com> * ignore a known failing step in the test due to wallet connected having approved status * update testid * update tests for deposits * tidy up comments in custom cypress commands * add comment about eager connect when running in cypress * update deposits tests Co-authored-by: Matthew Russell <mattrussell36@gmail.com> Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com>
174 lines
4.2 KiB
TypeScript
174 lines
4.2 KiB
TypeScript
import { gql } from '@apollo/client';
|
|
import type { NetworkParamsQuery } from './__generated__/NetworkParamsQuery';
|
|
import { Button, Splash } from '@vegaprotocol/ui-toolkit';
|
|
import { Web3Provider, Web3ConnectDialog } 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 { PageQueryContainer } from '../page-query-container';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
|
|
export interface EthereumConfig {
|
|
network_id: string;
|
|
chain_id: string;
|
|
confirmations: number;
|
|
collateral_bridge_contract: {
|
|
address: string;
|
|
};
|
|
multisig_control_contract: {
|
|
address: string;
|
|
deployment_block_height: number;
|
|
};
|
|
staking_bridge_contract: {
|
|
address: string;
|
|
deployment_block_height: number;
|
|
};
|
|
token_vesting_contract: {
|
|
address: string;
|
|
deployment_block_height: number;
|
|
};
|
|
}
|
|
|
|
export const NETWORK_PARAMS_QUERY = gql`
|
|
query NetworkParamsQuery {
|
|
networkParameters {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
`;
|
|
|
|
interface Web3ContainerProps {
|
|
render: (params: { ethereumConfig: EthereumConfig }) => ReactNode;
|
|
}
|
|
|
|
export const Web3Container = ({ render }: Web3ContainerProps) => {
|
|
const [dialogOpen, setDialogOpen] = useState(false);
|
|
return (
|
|
<PageQueryContainer<NetworkParamsQuery>
|
|
query={NETWORK_PARAMS_QUERY}
|
|
render={(data) => {
|
|
const ethereumConfigParam = data.networkParameters?.find(
|
|
(np) => np.key === 'blockchains.ethereumConfig'
|
|
);
|
|
|
|
if (!ethereumConfigParam) {
|
|
return (
|
|
<Splash>
|
|
<p>{t('No ethereum config found')}</p>
|
|
</Splash>
|
|
);
|
|
}
|
|
|
|
let ethereumConfig: EthereumConfig;
|
|
|
|
try {
|
|
ethereumConfig = JSON.parse(ethereumConfigParam.value);
|
|
} catch {
|
|
return (
|
|
<Splash>
|
|
<p>{t('Could not parse config')}</p>
|
|
</Splash>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Web3Provider connectors={Connectors}>
|
|
<Web3Content
|
|
appChainId={Number(ethereumConfig.chain_id)}
|
|
setDialogOpen={setDialogOpen}
|
|
>
|
|
{render({ ethereumConfig })}
|
|
</Web3Content>
|
|
<Web3ConnectDialog
|
|
connectors={Connectors}
|
|
dialogOpen={dialogOpen}
|
|
setDialogOpen={setDialogOpen}
|
|
desiredChainId={Number(ethereumConfig.chain_id)}
|
|
/>
|
|
</Web3Provider>
|
|
);
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
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 &&
|
|
// Dont eager connect if this is a cypress test run
|
|
'Cypress' in window
|
|
) {
|
|
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>
|
|
);
|
|
};
|