39907f07db
Co-authored-by: Dexter Edwards <dexter.edwards93@gmail.com>
158 lines
3.5 KiB
TypeScript
158 lines
3.5 KiB
TypeScript
import type { InMemoryCacheConfig } from '@apollo/client';
|
|
import {
|
|
AppFailure,
|
|
AppLoader,
|
|
DocsLinks,
|
|
NetworkLoader,
|
|
NodeFailure,
|
|
NodeGuard,
|
|
useEnvironment,
|
|
} from '@vegaprotocol/environment';
|
|
import { VegaWalletProvider } from '@vegaprotocol/wallet';
|
|
import type { ReactNode } from 'react';
|
|
import { Web3Provider } from './web3-provider';
|
|
import { useT } from '../../lib/use-t';
|
|
import { DataLoader } from './data-loader';
|
|
import { useChainId } from '@vegaprotocol/wallet';
|
|
|
|
export const Bootstrapper = ({ children }: { children: ReactNode }) => {
|
|
const t = useT();
|
|
const {
|
|
error,
|
|
VEGA_URL,
|
|
VEGA_ENV,
|
|
VEGA_WALLET_URL,
|
|
VEGA_EXPLORER_URL,
|
|
MOZILLA_EXTENSION_URL,
|
|
CHROME_EXTENSION_URL,
|
|
} = useEnvironment();
|
|
|
|
const chainId = useChainId(VEGA_URL);
|
|
|
|
if (
|
|
!VEGA_URL ||
|
|
!VEGA_WALLET_URL ||
|
|
!VEGA_EXPLORER_URL ||
|
|
!CHROME_EXTENSION_URL ||
|
|
!MOZILLA_EXTENSION_URL ||
|
|
!DocsLinks ||
|
|
!chainId
|
|
) {
|
|
return <AppLoader />;
|
|
}
|
|
|
|
return (
|
|
<NetworkLoader
|
|
cache={cacheConfig}
|
|
skeleton={<AppLoader />}
|
|
failure={
|
|
<AppFailure title={t('Could not initialize app')} error={error} />
|
|
}
|
|
>
|
|
<NodeGuard
|
|
skeleton={<AppLoader />}
|
|
failure={
|
|
<NodeFailure
|
|
title={t('Node: {{VEGA_URL}} is unsuitable', { VEGA_URL })}
|
|
/>
|
|
}
|
|
>
|
|
<DataLoader
|
|
skeleton={<AppLoader />}
|
|
failure={
|
|
<AppFailure
|
|
title={t('Could not load market data or asset data')}
|
|
error={error}
|
|
/>
|
|
}
|
|
>
|
|
<Web3Provider
|
|
skeleton={<AppLoader />}
|
|
failure={
|
|
<AppFailure title={t('Could not configure web3 provider')} />
|
|
}
|
|
>
|
|
<VegaWalletProvider
|
|
config={{
|
|
network: VEGA_ENV,
|
|
vegaUrl: VEGA_URL,
|
|
chainId,
|
|
vegaWalletServiceUrl: VEGA_WALLET_URL,
|
|
links: {
|
|
explorer: VEGA_EXPLORER_URL,
|
|
concepts: DocsLinks.VEGA_WALLET_CONCEPTS_URL,
|
|
chromeExtensionUrl: CHROME_EXTENSION_URL,
|
|
mozillaExtensionUrl: MOZILLA_EXTENSION_URL,
|
|
},
|
|
}}
|
|
>
|
|
{children}
|
|
</VegaWalletProvider>
|
|
</Web3Provider>
|
|
</DataLoader>
|
|
</NodeGuard>
|
|
</NetworkLoader>
|
|
);
|
|
};
|
|
|
|
const cacheConfig: InMemoryCacheConfig = {
|
|
typePolicies: {
|
|
Statistics: {
|
|
merge: true,
|
|
},
|
|
Account: {
|
|
keyFields: false,
|
|
fields: {
|
|
balanceFormatted: {},
|
|
},
|
|
},
|
|
Instrument: {
|
|
keyFields: false,
|
|
},
|
|
TradableInstrument: {
|
|
keyFields: false,
|
|
},
|
|
Product: {
|
|
keyFields: ['settlementAsset', ['id']],
|
|
},
|
|
MarketData: {
|
|
keyFields: ['market', ['id']],
|
|
},
|
|
Node: {
|
|
keyFields: false,
|
|
},
|
|
Withdrawal: {
|
|
fields: {
|
|
pendingOnForeignChain: {
|
|
read: (isPending = false) => isPending,
|
|
},
|
|
},
|
|
},
|
|
ERC20: {
|
|
keyFields: ['contractAddress'],
|
|
},
|
|
Party: {
|
|
keyFields: false,
|
|
},
|
|
Position: {
|
|
keyFields: ['market', ['id'], 'party', ['id']],
|
|
},
|
|
Fees: {
|
|
keyFields: false,
|
|
},
|
|
// The folling types are cached by the data provider and not by apollo
|
|
PositionUpdate: {
|
|
keyFields: false,
|
|
},
|
|
TradeUpdate: {
|
|
keyFields: false,
|
|
},
|
|
AccountUpdate: {
|
|
keyFields: false,
|
|
},
|
|
OrderUpdate: {
|
|
keyFields: false,
|
|
},
|
|
},
|
|
};
|