import { JupiterProvider } from '@jup-ag/react-hook' import { useEffect } from 'react' import useMangoStore from '../stores/useMangoStore' import PageBodyContainer from '../components/PageBodyContainer' import TopBar from '../components/TopBar' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' // import { useTranslation } from 'next-i18next' import { actionsSelector, connectionSelector, walletConnectedSelector, walletSelector, } from '../stores/selectors' import JupiterForm from '../components/JupiterForm' import { zeroKey } from '@blockworks-foundation/mango-client' export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale, ['common'])), // Will be passed to the page component as props }, } } export default function Swap() { // const { t } = useTranslation('common') const connection = useMangoStore(connectionSelector) const connected = useMangoStore(walletConnectedSelector) const wallet = useMangoStore(walletSelector) const actions = useMangoStore(actionsSelector) useEffect(() => { // @ts-ignore if (window.solana) { // @ts-ignore window.solana.connect({ onlyIfTrusted: true }) } }, []) useEffect(() => { if (connected) { actions.fetchWalletTokens() } }, [connected]) if (!connection) return null const userPublicKey = wallet?.publicKey && !zeroKey.equals(wallet.publicKey) ? wallet.publicKey : null return (
{wallet ? ( ) : (
test
)}
) }