94 lines
2.7 KiB
TypeScript
94 lines
2.7 KiB
TypeScript
"use client";
|
|
|
|
import { useRouter } from "next/navigation";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import { createPortal } from "react-dom";
|
|
|
|
import { Icon } from "@iconify/react";
|
|
import SubmitButton from "../submit-button";
|
|
|
|
interface Props {
|
|
punishmentId: number;
|
|
}
|
|
|
|
export default function PunishmentDeletionDialog({ punishmentId }: Props) {
|
|
const router = useRouter();
|
|
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
const [isVisible, setIsVisible] = useState(false);
|
|
|
|
const [error, setError] = useState<string | undefined>(undefined);
|
|
|
|
const handleSubmit = async () => {
|
|
const response = await fetch(`/api/admin/punish?id=${punishmentId}`, { method: "DELETE" });
|
|
|
|
if (!response.ok) {
|
|
const data = await response.json();
|
|
setError(data.error);
|
|
|
|
return;
|
|
}
|
|
|
|
router.refresh();
|
|
};
|
|
|
|
const close = () => {
|
|
setIsVisible(false);
|
|
setTimeout(() => {
|
|
setIsOpen(false);
|
|
}, 300);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (isOpen) {
|
|
// slight delay to trigger animation
|
|
setTimeout(() => setIsVisible(true), 10);
|
|
}
|
|
}, [isOpen]);
|
|
|
|
return (
|
|
<>
|
|
<button onClick={() => setIsOpen(true)} aria-label="Delete Punishment" className="text-red-500 cursor-pointer hover:text-red-600 text-lg">
|
|
<Icon icon="material-symbols:close-rounded" />
|
|
</button>
|
|
|
|
{isOpen &&
|
|
createPortal(
|
|
<div className="fixed inset-0 w-full h-[calc(100%-var(--header-height))] top-[var(--header-height)] flex items-center justify-center z-40">
|
|
<div
|
|
onClick={close}
|
|
className={`z-40 absolute inset-0 backdrop-brightness-75 backdrop-blur-xs transition-opacity duration-300 ${
|
|
isVisible ? "opacity-100" : "opacity-0"
|
|
}`}
|
|
/>
|
|
|
|
<div
|
|
className={`z-50 bg-orange-50 border-2 border-amber-500 rounded-2xl shadow-lg p-6 w-full max-w-md transition-discrete duration-300 flex flex-col ${
|
|
isVisible ? "scale-100 opacity-100" : "scale-75 opacity-0"
|
|
}`}
|
|
>
|
|
<div className="flex justify-between items-center mb-2">
|
|
<h2 className="text-xl font-bold">Punishment Deletion</h2>
|
|
<button onClick={close} aria-label="Close" className="text-red-400 hover:text-red-500 text-2xl cursor-pointer">
|
|
<Icon icon="material-symbols:close-rounded" />
|
|
</button>
|
|
</div>
|
|
|
|
<p className="text-sm text-zinc-500">Are you sure? This will delete the user‘s punishment and they will be able to come back.</p>
|
|
|
|
{error && <span className="text-red-400 font-bold mt-2">Error: {error}</span>}
|
|
|
|
<div className="flex justify-end gap-2 mt-4">
|
|
<button onClick={close} className="pill button">
|
|
Cancel
|
|
</button>
|
|
<SubmitButton onClick={handleSubmit} />
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
document.body
|
|
)}
|
|
</>
|
|
);
|
|
}
|