87e1f9998e
* feat: add eth and vega transaction stores feat: replace useStoredEthereumTransaction with useEthTransactionManager feat: add event bus subsciption to vega transaction store feat: handle order cancellation feat: rename Deposit, Order and Withdraw status field to be unique Revert "feat: rename Deposit, Order and Withdraw status field to be unique" This reverts commit f0b314d53fb3ada6fbebaba4fd1e5af6f38beaed. feat: split transaction update subscription feat: handle order and deposit transaction feat: handle withdrawal creation through transaction store feat: handle withdraw approval feat: handle panding withdrawls, add createdAt feat: handle transaction toast/dialog dismissal feat: add use vega transaction store tests feat: add use vega transaction store tests feat: add use vega transaction menager tests feat: add use vega transaction menager tests feat: add use vega transaction updater tests feat: improve use vega transaction updater tests feat: add use eth transaction store feat: add use eth withdraw approvals store feat: add use eth transaction updater tests fixed tests * feat: toasts feat: toasts feat: toasts * feat: add use eth withdraw approval manager tests * feat: add use eth transaction manager tests * feat: add use eth transaction manager tests * feat: add useEthWithdrawApprovalsManager tests * feat: remove Web3Container react container from CreateWithdrawalDialog * feat: remove Web3Container react container around TransactionsHandler * feat: remove unnecessary async from PendingWithdrawalsTable * feat: remove comments from WithdrawalFeedback * fixed z-index issue * cypress Co-authored-by: Bartłomiej Głownia <bglownia@gmail.com>
127 lines
3.5 KiB
TypeScript
127 lines
3.5 KiB
TypeScript
import Head from 'next/head';
|
|
import type { AppProps } from 'next/app';
|
|
import { Navbar } from '../components/navbar';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
import {
|
|
useEagerConnect as useVegaEagerConnect,
|
|
VegaWalletProvider,
|
|
useVegaTransactionManager,
|
|
useVegaTransactionUpdater,
|
|
} from '@vegaprotocol/wallet';
|
|
import {
|
|
useEagerConnect as useEthereumEagerConnect,
|
|
useEthTransactionManager,
|
|
useEthTransactionUpdater,
|
|
useEthWithdrawApprovalsManager,
|
|
} from '@vegaprotocol/web3';
|
|
import {
|
|
EnvironmentProvider,
|
|
envTriggerMapping,
|
|
Networks,
|
|
useEnvironment,
|
|
} from '@vegaprotocol/environment';
|
|
import { AppLoader, Web3Provider } from '../components/app-loader';
|
|
import './styles.css';
|
|
import { usePageTitleStore } from '../stores';
|
|
import { Footer } from '../components/footer';
|
|
import { useEffect, useMemo, useState } from 'react';
|
|
import DialogsContainer from './dialogs-container';
|
|
import ToastsManager from './toasts-manager';
|
|
import { HashRouter, useLocation } from 'react-router-dom';
|
|
import { Connectors } from '../lib/vega-connectors';
|
|
|
|
const DEFAULT_TITLE = t('Welcome to Vega trading!');
|
|
|
|
const Title = () => {
|
|
const { pageTitle } = usePageTitleStore((store) => ({
|
|
pageTitle: store.pageTitle,
|
|
}));
|
|
|
|
const { VEGA_ENV } = useEnvironment();
|
|
const networkName = envTriggerMapping[VEGA_ENV];
|
|
|
|
const title = useMemo(() => {
|
|
if (!pageTitle) return DEFAULT_TITLE;
|
|
if (networkName) return `${pageTitle} [${networkName}]`;
|
|
return pageTitle;
|
|
}, [pageTitle, networkName]);
|
|
|
|
return (
|
|
<Head>
|
|
<title>{title}</title>
|
|
</Head>
|
|
);
|
|
};
|
|
|
|
const TransactionsHandler = () => {
|
|
useVegaTransactionManager();
|
|
useVegaTransactionUpdater();
|
|
useEthTransactionManager();
|
|
useEthTransactionUpdater();
|
|
useEthWithdrawApprovalsManager();
|
|
return null;
|
|
};
|
|
|
|
function AppBody({ Component }: AppProps) {
|
|
const location = useLocation();
|
|
const { VEGA_ENV } = useEnvironment();
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
{/* Cannot use meta tags in _document.page.tsx see https://nextjs.org/docs/messages/no-document-viewport-meta */}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</Head>
|
|
<Title />
|
|
<VegaWalletProvider>
|
|
<AppLoader>
|
|
<Web3Provider>
|
|
<div className="h-full relative dark:bg-black dark:text-white z-0 grid grid-rows-[min-content,1fr,min-content]">
|
|
<Navbar
|
|
navbarTheme={VEGA_ENV === Networks.TESTNET ? 'yellow' : 'dark'}
|
|
/>
|
|
<main data-testid={location.pathname}>
|
|
<Component />
|
|
</main>
|
|
<Footer />
|
|
<DialogsContainer />
|
|
<ToastsManager />
|
|
<TransactionsHandler />
|
|
<MaybeConnectEagerly />
|
|
</div>
|
|
</Web3Provider>
|
|
</AppLoader>
|
|
</VegaWalletProvider>
|
|
</>
|
|
);
|
|
}
|
|
|
|
function VegaTradingApp(props: AppProps) {
|
|
const [mounted, setMounted] = useState(false);
|
|
|
|
// Hash router requires access to the document object. At compile time that doesn't exist
|
|
// so we need to ensure client side rendering only from this point onwards in
|
|
// the component tree
|
|
useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
if (!mounted) return null;
|
|
|
|
return (
|
|
<HashRouter>
|
|
<EnvironmentProvider>
|
|
<AppBody {...props} />
|
|
</EnvironmentProvider>
|
|
</HashRouter>
|
|
);
|
|
}
|
|
|
|
export default VegaTradingApp;
|
|
|
|
const MaybeConnectEagerly = () => {
|
|
useVegaEagerConnect(Connectors);
|
|
useEthereumEagerConnect();
|
|
return null;
|
|
};
|