* chore: remove generated vegawallet client code and implement in rest connector * feat: add zod validation * feat: handle specific auth/token delete case * feat: make withdraw dialog match vega tx dialog * fix: response stub to be right shape, add content type to requests * chore: revert unrelated classname change
176 lines
4.7 KiB
TypeScript
176 lines
4.7 KiB
TypeScript
import { useEnvironment } from '@vegaprotocol/environment';
|
|
import { t } from '@vegaprotocol/react-helpers';
|
|
import { Dialog, Icon, Intent, Loader } from '@vegaprotocol/ui-toolkit';
|
|
import type { ReactNode } from 'react';
|
|
import type { VegaTxState } from '../use-vega-transaction';
|
|
import { VegaTxStatus } from '../use-vega-transaction';
|
|
|
|
export interface VegaTransactionDialogProps {
|
|
isOpen: boolean;
|
|
onChange: (isOpen: boolean) => void;
|
|
transaction: VegaTxState;
|
|
children?: ReactNode;
|
|
intent?: Intent;
|
|
title?: string;
|
|
icon?: ReactNode;
|
|
}
|
|
|
|
export const VegaTransactionDialog = ({
|
|
isOpen,
|
|
onChange,
|
|
transaction,
|
|
children,
|
|
intent,
|
|
title,
|
|
icon,
|
|
}: VegaTransactionDialogProps) => {
|
|
const computedIntent = intent ? intent : getIntent(transaction);
|
|
const computedTitle = title ? title : getTitle(transaction);
|
|
const computedIcon = icon ? icon : getIcon(transaction);
|
|
// Each dialog can specify custom dialog content using data returned via
|
|
// the subscription that confirms the transaction. So if we get a success state
|
|
// and this custom content is provided, render it
|
|
const content =
|
|
transaction.status === VegaTxStatus.Complete && children ? (
|
|
children
|
|
) : (
|
|
<VegaDialog transaction={transaction} />
|
|
);
|
|
return (
|
|
<Dialog
|
|
open={isOpen}
|
|
onChange={onChange}
|
|
intent={computedIntent}
|
|
title={computedTitle}
|
|
icon={computedIcon}
|
|
>
|
|
{content}
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
interface VegaDialogProps {
|
|
transaction: VegaTxState;
|
|
}
|
|
|
|
/**
|
|
* Default dialog content
|
|
*/
|
|
export const VegaDialog = ({ transaction }: VegaDialogProps) => {
|
|
const { VEGA_EXPLORER_URL } = useEnvironment();
|
|
|
|
if (transaction.status === VegaTxStatus.Requested) {
|
|
return (
|
|
<p data-testid={transaction.status}>
|
|
{t(
|
|
'Please open your wallet application and confirm or reject the transaction'
|
|
)}
|
|
</p>
|
|
);
|
|
}
|
|
|
|
if (transaction.status === VegaTxStatus.Error) {
|
|
let content = null;
|
|
|
|
if (transaction.error) {
|
|
if ('errors' in transaction.error) {
|
|
content = transaction.error.errors['*'].map((e) => <p>{e}</p>);
|
|
} else if ('error' in transaction.error) {
|
|
content = <p>{transaction.error.error}</p>;
|
|
} else {
|
|
content = <p>{t('Something went wrong')}</p>;
|
|
}
|
|
}
|
|
return <div data-testid={transaction.status}>{content}</div>;
|
|
}
|
|
|
|
if (transaction.status === VegaTxStatus.Pending) {
|
|
return (
|
|
<div data-testid={transaction.status}>
|
|
<p className="break-all">
|
|
{t('Please wait for your transaction to be confirmed')} -
|
|
{transaction.txHash && (
|
|
<a
|
|
className="underline"
|
|
data-testid="tx-block-explorer"
|
|
href={`${VEGA_EXPLORER_URL}/txs/0x${transaction.txHash}`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{t('View in block explorer')}
|
|
</a>
|
|
)}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (transaction.status === VegaTxStatus.Complete) {
|
|
return (
|
|
<div data-testid={transaction.status}>
|
|
<p className="break-all">
|
|
{t('Your transaction has been confirmed')} -
|
|
{transaction.txHash && (
|
|
<a
|
|
className="underline"
|
|
data-testid="tx-block-explorer"
|
|
href={`${VEGA_EXPLORER_URL}/txs/0x${transaction.txHash}`}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{t('View in block explorer')}
|
|
</a>
|
|
)}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
const getIntent = (transaction: VegaTxState) => {
|
|
switch (transaction.status) {
|
|
case VegaTxStatus.Requested:
|
|
return Intent.Warning;
|
|
case VegaTxStatus.Pending:
|
|
return Intent.Warning;
|
|
case VegaTxStatus.Error:
|
|
return Intent.Danger;
|
|
case VegaTxStatus.Complete:
|
|
return Intent.Success;
|
|
default:
|
|
return Intent.None;
|
|
}
|
|
};
|
|
|
|
const getTitle = (transaction: VegaTxState) => {
|
|
switch (transaction.status) {
|
|
case VegaTxStatus.Requested:
|
|
return t('Confirm transaction in wallet');
|
|
case VegaTxStatus.Pending:
|
|
return t('Awaiting network confirmation');
|
|
case VegaTxStatus.Error:
|
|
return t('Transaction failed');
|
|
case VegaTxStatus.Complete:
|
|
return t('Transaction complete');
|
|
default:
|
|
return '';
|
|
}
|
|
};
|
|
|
|
const getIcon = (transaction: VegaTxState) => {
|
|
switch (transaction.status) {
|
|
case VegaTxStatus.Requested:
|
|
return <Icon name="hand-up" size={20} />;
|
|
case VegaTxStatus.Pending:
|
|
return <Loader size="small" />;
|
|
case VegaTxStatus.Error:
|
|
return <Icon name="warning-sign" size={20} />;
|
|
case VegaTxStatus.Complete:
|
|
return <Icon name="tick" size={20} />;
|
|
default:
|
|
return '';
|
|
}
|
|
};
|