mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 20:16:26 +08:00
77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
import { Button } from '@affine/admin/components/ui/button';
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@affine/admin/components/ui/dialog';
|
|
import { Input } from '@affine/admin/components/ui/input';
|
|
import { useCallback, useEffect, useState } from 'react';
|
|
|
|
export const DeleteAccountDialog = ({
|
|
email,
|
|
open,
|
|
onClose,
|
|
onDelete,
|
|
onOpenChange,
|
|
}: {
|
|
email: string;
|
|
open: boolean;
|
|
onClose: () => void;
|
|
onDelete: () => void;
|
|
onOpenChange: (open: boolean) => void;
|
|
}) => {
|
|
const [input, setInput] = useState('');
|
|
const handleInput = useCallback(
|
|
(event: React.ChangeEvent<HTMLInputElement>) => {
|
|
setInput(event.target.value);
|
|
},
|
|
[setInput]
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!open) {
|
|
setInput('');
|
|
}
|
|
}, [open]);
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="sm:max-w-[460px]">
|
|
<DialogHeader>
|
|
<DialogTitle>Delete Account ?</DialogTitle>
|
|
<DialogDescription>
|
|
<span className="font-bold">{email}</span> will be permanently
|
|
deleted. This operation is irreversible. Please proceed with
|
|
caution.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<Input
|
|
type="text"
|
|
value={input}
|
|
onChange={handleInput}
|
|
placeholder="Please type email to confirm"
|
|
className="placeholder:opacity-50"
|
|
/>
|
|
<DialogFooter>
|
|
<div className="flex justify-between items-center w-full">
|
|
<Button type="button" variant="outline" size="sm" onClick={onClose}>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
onClick={onDelete}
|
|
size="sm"
|
|
variant="destructive"
|
|
>
|
|
Delete
|
|
</Button>
|
|
</div>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|