feat(wallet): tighten up the flow for "view as vega user" (#2934)
This commit is contained in:
parent
d4ecb88fb4
commit
4286bc37b3
@ -7,7 +7,7 @@ export const ConnectDialogTitle = ({ children }: { children: ReactNode }) => {
|
||||
return (
|
||||
<h1
|
||||
data-testid="wallet-dialog-title"
|
||||
className="text-2xl uppercase mb-6 text-center"
|
||||
className="text-2xl uppercase mb-6 text-center font-alpha"
|
||||
>
|
||||
{children}
|
||||
</h1>
|
||||
|
@ -229,6 +229,7 @@ const ConnectorList = ({
|
||||
</li>
|
||||
)}
|
||||
<li className="mb-4 last:mb-0">
|
||||
<div className="my-4 text-center text-vega-dark-400">{t('OR')}</div>
|
||||
<ConnectionOption
|
||||
type="view"
|
||||
text={t('View as vega user')}
|
||||
@ -264,6 +265,13 @@ const SelectedForm = ({
|
||||
return (
|
||||
<>
|
||||
<ConnectDialogContent>
|
||||
<button
|
||||
onClick={reset}
|
||||
className="absolute p-2 top-0 left-0 md:top-2 md:left-2"
|
||||
data-testid="back-button"
|
||||
>
|
||||
<Icon name={'chevron-left'} ariaLabel="back" size={4} />
|
||||
</button>
|
||||
<ConnectDialogTitle>{t('Connect')}</ConnectDialogTitle>
|
||||
<div className="mb-2">
|
||||
<RestConnectorForm connector={connector} onConnect={onConnect} />
|
||||
@ -315,7 +323,11 @@ const SelectedForm = ({
|
||||
return (
|
||||
<>
|
||||
<ConnectDialogContent>
|
||||
<ViewConnectorForm connector={connector} onConnect={onConnect} />
|
||||
<ViewConnectorForm
|
||||
connector={connector}
|
||||
onConnect={onConnect}
|
||||
reset={reset}
|
||||
/>
|
||||
</ConnectDialogContent>
|
||||
<ConnectDialogFooter />
|
||||
</>
|
||||
|
@ -1,5 +1,11 @@
|
||||
import { t } from '@vegaprotocol/react-helpers';
|
||||
import { Button, FormGroup, Input, InputError } from '@vegaprotocol/ui-toolkit';
|
||||
import {
|
||||
Button,
|
||||
FormGroup,
|
||||
Icon,
|
||||
Input,
|
||||
InputError,
|
||||
} from '@vegaprotocol/ui-toolkit';
|
||||
import { useForm } from 'react-hook-form';
|
||||
import type { ViewConnector } from '../connectors';
|
||||
import { useVegaWallet } from '../use-vega-wallet';
|
||||
@ -11,11 +17,13 @@ interface FormFields {
|
||||
interface RestConnectorFormProps {
|
||||
connector: ViewConnector;
|
||||
onConnect: (connector: ViewConnector) => void;
|
||||
reset: () => void;
|
||||
}
|
||||
|
||||
export function ViewConnectorForm({
|
||||
connector,
|
||||
onConnect,
|
||||
reset,
|
||||
}: RestConnectorFormProps) {
|
||||
const { connect } = useVegaWallet();
|
||||
const {
|
||||
@ -41,7 +49,23 @@ export function ViewConnectorForm({
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<button
|
||||
onClick={reset}
|
||||
className="absolute p-2 top-0 left-0 md:top-2 md:left-2"
|
||||
data-testid="back-button"
|
||||
>
|
||||
<Icon name={'chevron-left'} ariaLabel="back" size={4} />
|
||||
</button>
|
||||
<form onSubmit={handleSubmit(onSubmit)} data-testid="view-connector-form">
|
||||
<h1 className="text-2xl uppercase mb-6 text-center font-alpha">
|
||||
{t('VIEW AS VEGA USER')}
|
||||
</h1>
|
||||
<p className="mb-4">
|
||||
{t(
|
||||
'Browse from the perspective of another Vega user in read-only mode.'
|
||||
)}
|
||||
</p>
|
||||
<FormGroup label={t('Vega Pubkey')} labelFor="address">
|
||||
<Input
|
||||
{...register('address', {
|
||||
@ -56,9 +80,15 @@ export function ViewConnectorForm({
|
||||
<InputError intent="danger">{errors.address.message}</InputError>
|
||||
)}
|
||||
</FormGroup>
|
||||
<Button data-testid="connect" variant="primary" type="submit" fill={true}>
|
||||
{t('Connect')}
|
||||
<Button
|
||||
data-testid="connect"
|
||||
variant="primary"
|
||||
type="submit"
|
||||
fill={true}
|
||||
>
|
||||
{t('Browse network')}
|
||||
</Button>
|
||||
</form>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user