2025-05-11 14:11:15 +02:00

50 lines
1.1 KiB
TypeScript

import React from 'react';
import { useTranslation } from 'react-i18next';
import { Grid, Typography } from '@mui/material';
import { LoadingButton } from '@mui/lab';
import { type Order } from '../../../models';
interface ExpiredPromptProps {
order: Order;
loadingRenew: boolean;
onClickRenew: () => void;
}
export const ExpiredPrompt = ({
loadingRenew,
order,
onClickRenew,
}: ExpiredPromptProps): React.JSX.Element => {
const { t } = useTranslation();
return (
<Grid container direction='row'>
<Grid item style={{ width: '100%' }}>
<Typography variant='body2' align='center'>
{t(order.expiry_message)}
</Typography>
</Grid>
{order.is_maker ? (
<Grid
item
style={{ display: 'flex', justifyContent: 'center', width: '100%', marginTop: '8px' }}
>
<LoadingButton
loading={loadingRenew}
variant='outlined'
color='primary'
onClick={onClickRenew}
>
{t('Renew Order')}
</LoadingButton>
</Grid>
) : (
<></>
)}
</Grid>
);
};
export default ExpiredPrompt;