mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 09:32:29 +01:00
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import React, { useContext } from 'react';
|
|
import tw from 'twin.macro';
|
|
import Button from '@/components/elements/Button';
|
|
import asModal from '@/hoc/asModal';
|
|
import ModalContext from '@/context/ModalContext';
|
|
|
|
type Props = {
|
|
title: string;
|
|
buttonText: string;
|
|
onConfirmed: () => void;
|
|
showSpinnerOverlay?: boolean;
|
|
};
|
|
|
|
const ConfirmationModal: React.FC<Props> = ({ title, children, buttonText, onConfirmed }) => {
|
|
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>
|
|
</>
|
|
);
|
|
};
|
|
|
|
ConfirmationModal.displayName = 'ConfirmationModal';
|
|
|
|
export default asModal<Props>((props) => ({
|
|
showSpinnerOverlay: props.showSpinnerOverlay,
|
|
}))(ConfirmationModal);
|