40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import type { ReactNode } from 'react';
|
|
import { useContext } from 'react';
|
|
import tw from 'twin.macro';
|
|
|
|
import Button from '@/components/elements/Button';
|
|
import ModalContext from '@/context/ModalContext';
|
|
import asModal from '@/hoc/asModal';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
|
|
title: string;
|
|
buttonText: string;
|
|
onConfirmed: () => void;
|
|
showSpinnerOverlay?: boolean;
|
|
}
|
|
|
|
function ConfirmationModal({ title, children, buttonText, onConfirmed }: Props) {
|
|
const { dismiss } = useContext(ModalContext);
|
|
|
|
return (
|
|
<>
|
|
<h2 css={tw`text-2xl mb-6`}>{title}</h2>
|
|
<div css={tw`text-neutral-300`}>{children}</div>
|
|
|
|
<div css={tw`flex flex-wrap items-center justify-end mt-8`}>
|
|
<Button isSecondary onClick={() => dismiss()} css={tw`w-full sm:w-auto border-transparent`}>
|
|
Cancel
|
|
</Button>
|
|
<Button color={'red'} css={tw`w-full sm:w-auto mt-4 sm:mt-0 sm:ml-4`} onClick={() => onConfirmed()}>
|
|
{buttonText}
|
|
</Button>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default asModal<Props>(props => ({
|
|
showSpinnerOverlay: props.showSpinnerOverlay,
|
|
}))(ConfirmationModal);
|