05d8cb3605
* chore: first pass at config file
* ci: pass app version
* ci: remove workflows that take a while to run to not waste build mins
* ci: run all steps all the time
* ci: correct tags
* ci: correct output syntax
* ci: use quotes
* ci: fix build platform
* ci: only build amd as PoC
* ci: add push true to step
* ci: publish trading and token containers
* fix: use correct environement variable names
* feat: separate dockerfiles for CRA based apps and next apps
* chore: correct path
* fix: incorrect asset path
* ci: build for both platforms
* ci: publish
* ci: add missing deps
* ci: rename pipelines
* ci: rename
* ci: publish on tag only
* ci: remove additional vs
* Revert "ci: remove workflows that take a while to run to not waste build mins"
This reverts commit 7054367ba0
.
* chore: remove comment
* chore: revert accientally committed change
106 lines
3.7 KiB
TypeScript
106 lines
3.7 KiB
TypeScript
import type { AppProps } from 'next/app';
|
|
import Head from 'next/head';
|
|
import { useRouter } from 'next/router';
|
|
import { Navbar } from '../components/navbar';
|
|
import { t, ThemeContext, useThemeSwitcher } from '@vegaprotocol/react-helpers';
|
|
import {
|
|
VegaConnectDialog,
|
|
VegaManageDialog,
|
|
VegaWalletProvider,
|
|
} from '@vegaprotocol/wallet';
|
|
import {
|
|
useEnvironment,
|
|
EnvironmentProvider,
|
|
NetworkSwitcherDialog,
|
|
} from '@vegaprotocol/environment';
|
|
import { Connectors } from '../lib/vega-connectors';
|
|
import { ThemeSwitcher } from '@vegaprotocol/ui-toolkit';
|
|
import { AppLoader } from '../components/app-loader';
|
|
import { VegaWalletConnectButton } from '../components/vega-wallet-connect-button';
|
|
import './styles.css';
|
|
import { useGlobalStore } from '../stores';
|
|
|
|
function AppBody({ Component, pageProps }: AppProps) {
|
|
const { push } = useRouter();
|
|
const store = useGlobalStore();
|
|
const { VEGA_NETWORKS } = useEnvironment();
|
|
const [theme, toggleTheme] = useThemeSwitcher();
|
|
|
|
return (
|
|
<ThemeContext.Provider value={theme}>
|
|
<div className="h-full text-white relative text-black-60 dark:text-white-60 z-0 grid grid-rows-[min-content,1fr]">
|
|
<AppLoader>
|
|
<div className="flex items-stretch border-b-[7px] bg-black border-vega-pink dark:border-vega-yellow">
|
|
<Navbar />
|
|
<div className="flex items-center gap-4 ml-auto mr-8">
|
|
<VegaWalletConnectButton
|
|
setConnectDialog={(open) => {
|
|
store.setVegaWalletConnectDialog(open);
|
|
}}
|
|
setManageDialog={(open) => {
|
|
store.setVegaWalletManageDialog(open);
|
|
}}
|
|
/>
|
|
<ThemeSwitcher onToggle={toggleTheme} className="-my-4" />
|
|
</div>
|
|
</div>
|
|
<main data-testid={pageProps.page} className="dark:bg-black">
|
|
{/* @ts-ignore conflict between @types/react and nextjs internal types */}
|
|
<Component {...pageProps} />
|
|
</main>
|
|
<VegaConnectDialog
|
|
connectors={Connectors}
|
|
dialogOpen={store.vegaWalletConnectDialog}
|
|
setDialogOpen={(open) => store.setVegaWalletConnectDialog(open)}
|
|
/>
|
|
<VegaManageDialog
|
|
dialogOpen={store.vegaWalletManageDialog}
|
|
setDialogOpen={(open) => store.setVegaWalletManageDialog(open)}
|
|
/>
|
|
<NetworkSwitcherDialog
|
|
dialogOpen={store.vegaNetworkSwitcherDialog}
|
|
setDialogOpen={(open) => store.setVegaNetworkSwitcherDialog(open)}
|
|
onConnect={({ network }) => {
|
|
if (VEGA_NETWORKS[network]) {
|
|
push(VEGA_NETWORKS[network] ?? '');
|
|
}
|
|
}}
|
|
/>
|
|
</AppLoader>
|
|
</div>
|
|
</ThemeContext.Provider>
|
|
);
|
|
}
|
|
|
|
function VegaTradingApp(props: AppProps) {
|
|
return (
|
|
<EnvironmentProvider>
|
|
<VegaWalletProvider>
|
|
<Head>
|
|
<link
|
|
rel="preload"
|
|
href="https://static.vega.xyz/AlphaLyrae-Medium.woff2"
|
|
as="font"
|
|
type="font/woff2"
|
|
crossOrigin="anonymous"
|
|
/>
|
|
<title>{t('Welcome to Vega trading!')}</title>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="https://static.vega.xyz/favicon.ico"
|
|
/>
|
|
<link rel="stylesheet" href="https://static.vega.xyz/fonts.css" />
|
|
{['1', 'true'].includes(process.env['NX_USE_ENV_OVERRIDES'] || '') ? (
|
|
/* eslint-disable-next-line @next/next/no-sync-scripts */
|
|
<script src="/assets/env-config.js" type="text/javascript" />
|
|
) : null}
|
|
</Head>
|
|
<AppBody {...props} />
|
|
</VegaWalletProvider>
|
|
</EnvironmentProvider>
|
|
);
|
|
}
|
|
|
|
export default VegaTradingApp;
|