mirror of
https://github.com/RoboSats/robosats.git
synced 2025-08-02 22:51:46 +00:00

* Add confirmation dialog for fiat Sent * Collect new phrases * Small fixes * Small fixes
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import {
|
|
Dialog,
|
|
DialogTitle,
|
|
DialogActions,
|
|
DialogContent,
|
|
DialogContentText,
|
|
Button,
|
|
} from '@mui/material';
|
|
import { Order } from '../../../models';
|
|
import currencies from '../../../../static/assets/currencies.json';
|
|
import { pn } from '../../../utils';
|
|
import { LoadingButton } from '@mui/lab';
|
|
|
|
interface ConfirmFiatSentDialogProps {
|
|
open: boolean;
|
|
loadingButton: boolean;
|
|
order: Order;
|
|
onClose: () => void;
|
|
onConfirmClick: () => void;
|
|
}
|
|
|
|
export const ConfirmFiatSentDialog = ({
|
|
open,
|
|
loadingButton,
|
|
onClose,
|
|
order,
|
|
onConfirmClick,
|
|
}: ConfirmFiatSentDialogProps): JSX.Element => {
|
|
const { t } = useTranslation();
|
|
const currencyCode = currencies[order.currency.toString()];
|
|
const amount = pn(parseFloat(parseFloat(order.amount).toFixed(order.currency == 1000 ? 8 : 4)));
|
|
|
|
return (
|
|
<Dialog open={open} onClose={onClose}>
|
|
<DialogTitle>
|
|
{t('Confirm you sent {{amount}} {{currencyCode}}?', { currencyCode, amount })}
|
|
</DialogTitle>
|
|
<DialogContent>
|
|
<DialogContentText id='alert-dialog-description'>
|
|
{t(
|
|
'Confirming that you sent {{amount}} {{currencyCode}} will allow your peer to finalize the trade. If you have not yet sent it and you still proceed to falsely confirm, you risk losing your bond.',
|
|
{ currencyCode, amount },
|
|
)}
|
|
</DialogContentText>
|
|
</DialogContent>
|
|
<DialogActions>
|
|
<Button onClick={onClose} autoFocus>
|
|
{t('Go back')}
|
|
</Button>
|
|
<LoadingButton loading={loadingButton} onClick={onConfirmClick}>
|
|
{t('Confirm')}
|
|
</LoadingButton>
|
|
</DialogActions>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export default ConfirmFiatSentDialog;
|