mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-27 05:51:57 +07:00
118 lines
4.1 KiB
TypeScript
118 lines
4.1 KiB
TypeScript
import InputError from '@/Components/InputError';
|
|
import { useForm } from '@inertiajs/react';
|
|
import { FormEventHandler, useRef, useState } from 'react';
|
|
import { Button } from '@/Components/ui/button';
|
|
import { Input } from '@/Components/ui/input';
|
|
import { Label } from '@/Components/ui/label';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/Components/ui/dialog"
|
|
|
|
export default function DeleteUserForm({
|
|
className = '',
|
|
}: {
|
|
className?: string;
|
|
}) {
|
|
const [confirmingUserDeletion, setConfirmingUserDeletion] = useState(false);
|
|
const passwordInput = useRef<HTMLInputElement>(null);
|
|
|
|
const {
|
|
data,
|
|
setData,
|
|
delete: destroy,
|
|
processing,
|
|
reset,
|
|
errors,
|
|
clearErrors,
|
|
} = useForm({
|
|
password: '',
|
|
});
|
|
|
|
const confirmUserDeletion = () => {
|
|
setConfirmingUserDeletion(true);
|
|
};
|
|
|
|
const deleteUser: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
destroy(route('profile.destroy'), {
|
|
preserveScroll: true,
|
|
onSuccess: () => closeModal(),
|
|
onError: () => passwordInput.current?.focus(),
|
|
onFinish: () => reset(),
|
|
});
|
|
};
|
|
|
|
const closeModal = () => {
|
|
setConfirmingUserDeletion(false);
|
|
clearErrors();
|
|
reset();
|
|
};
|
|
|
|
return (
|
|
<section className={`space-y-6 ${className}`}>
|
|
<header>
|
|
<h2 className="text-lg font-medium text-gray-900 dark:text-gray-100">
|
|
Delete Account
|
|
</h2>
|
|
|
|
<p className="mt-1 text-sm text-gray-600 dark:text-gray-400">
|
|
Once your account is deleted, all of its resources and data
|
|
will be permanently deleted. Before deleting your account,
|
|
please download any data or information that you wish to
|
|
retain.
|
|
</p>
|
|
</header>
|
|
|
|
<Button variant="destructive" onClick={confirmUserDeletion}>
|
|
Delete Account
|
|
</Button>
|
|
|
|
<Dialog open={confirmingUserDeletion} onOpenChange={setConfirmingUserDeletion}>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Are you sure you want to delete your account?</DialogTitle>
|
|
<DialogDescription>
|
|
Once your account is deleted, all of its resources and
|
|
data will be permanently deleted. Please enter your
|
|
password to confirm you would like to permanently delete
|
|
your account.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<form onSubmit={deleteUser} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password" className="sr-only">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
ref={passwordInput}
|
|
value={data.password}
|
|
onChange={(e) => setData('password', e.target.value)}
|
|
className="block w-full"
|
|
placeholder="Password"
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
<Button type="button" variant="secondary" onClick={closeModal}>
|
|
Cancel
|
|
</Button>
|
|
<Button variant="destructive" disabled={processing}>
|
|
Delete Account
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</section>
|
|
);
|
|
}
|