You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.8 KiB
69 lines
1.8 KiB
3 years ago
|
import { MouseEventHandler } from 'react';
|
||
|
import { Box, ButtonProps, Dialog, DialogProps } from '@mui/material';
|
||
|
|
||
|
import ContainedButton from './ContainedButton';
|
||
|
import { Panel, PanelHeader } from './Panels';
|
||
|
import { BodyText, HeaderText } from './Text';
|
||
|
|
||
|
type ConfirmDialogProps = {
|
||
|
actionCancelText?: string;
|
||
|
actionProceedText: string;
|
||
|
contentText: string;
|
||
|
dialogProps: DialogProps;
|
||
|
onCancel: MouseEventHandler<HTMLButtonElement>;
|
||
|
onProceed: MouseEventHandler<HTMLButtonElement>;
|
||
|
proceedButtonProps?: ButtonProps;
|
||
|
titleText: string;
|
||
|
};
|
||
|
|
||
|
const CONFIRM_DIALOG_DEFAULT_PROPS = {
|
||
|
actionCancelText: 'Cancel',
|
||
|
proceedButtonProps: { sx: undefined },
|
||
|
};
|
||
|
|
||
|
const ConfirmDialog = (
|
||
|
{
|
||
|
actionCancelText,
|
||
|
actionProceedText,
|
||
|
contentText,
|
||
|
dialogProps: { open },
|
||
|
onCancel,
|
||
|
onProceed,
|
||
|
proceedButtonProps,
|
||
|
titleText,
|
||
|
}: ConfirmDialogProps = CONFIRM_DIALOG_DEFAULT_PROPS as ConfirmDialogProps,
|
||
|
): JSX.Element => {
|
||
|
const { sx: proceedButtonSx } =
|
||
|
proceedButtonProps ?? CONFIRM_DIALOG_DEFAULT_PROPS.proceedButtonProps;
|
||
|
|
||
|
return (
|
||
|
<Dialog {...{ open }} PaperComponent={Panel}>
|
||
|
<PanelHeader>
|
||
|
<HeaderText text={titleText} />
|
||
|
</PanelHeader>
|
||
|
<BodyText sx={{ marginBottom: '1em' }} text={contentText} />
|
||
|
<Box
|
||
|
sx={{
|
||
|
display: 'flex',
|
||
|
flexDirection: 'row',
|
||
|
justifyContent: 'flex-end',
|
||
|
width: '100%',
|
||
|
|
||
|
'& > :not(:first-child)': {
|
||
|
marginLeft: '.5em',
|
||
|
},
|
||
|
}}
|
||
|
>
|
||
|
<ContainedButton onClick={onCancel}>{actionCancelText}</ContainedButton>
|
||
|
<ContainedButton sx={proceedButtonSx} onClick={onProceed}>
|
||
|
{actionProceedText}
|
||
|
</ContainedButton>
|
||
|
</Box>
|
||
|
</Dialog>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ConfirmDialog.defaultProps = CONFIRM_DIALOG_DEFAULT_PROPS;
|
||
|
|
||
|
export default ConfirmDialog;
|