vega-frontend-monorepo/apps/trading/pages/index.page.tsx
2022-03-10 20:51:05 -08:00

52 lines
1.5 KiB
TypeScript

import { Callout, Button } from '@vegaprotocol/ui-toolkit';
import { useVegaWallet } from '@vegaprotocol/react-helpers';
import { useEffect, useMemo, useState } from 'react';
import { Connectors } from '../lib/connectors';
export function Index() {
const { keypair, keypairs, selectPublicKey } = useVegaWallet();
return (
<div className="m-24">
<Callout
intent="help"
title="This is what this thing does"
iconName="endorsed"
headingLevel={1}
>
<div className="flex flex-col">
<div>With a longer explaination</div>
<Button className="block mt-8" variant="secondary">
Action
</Button>
</div>
</Callout>
<h1>Vega wallet</h1>
{keypair && <p>Current: {keypair.pub}</p>}
{keypairs?.length ? (
<select
name="change-key"
className="w-full px-8 py-2 border-black border"
value={keypair ? keypair.pub : 'none'}
onChange={(e) => selectPublicKey(e.target.value)}
>
<option value="none" disabled={true}>
Please select
</option>
{keypairs.map((pk) => (
<option key={pk.pub} value={pk.pub}>
{pk.name} ({pk.pub})
</option>
))}
</select>
) : null}
<h2>Public keys</h2>
<pre className="p-12 text-sm bg-neutral-100">
{JSON.stringify(keypairs, null, 2)}
</pre>
</div>
);
}
export default Index;