69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
'use client'
|
|
|
|
import { useState } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import { Trash2 } from 'lucide-react'
|
|
import { Button } from '@/components/ui/button'
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from '@/components/ui/dialog'
|
|
|
|
interface DeleteNoteButtonProps {
|
|
noteId: string
|
|
noteTitle: string
|
|
}
|
|
|
|
export function DeleteNoteButton({ noteId, noteTitle }: DeleteNoteButtonProps) {
|
|
const [open, setOpen] = useState(false)
|
|
const [deleting, setDeleting] = useState(false)
|
|
const router = useRouter()
|
|
|
|
const handleDelete = async () => {
|
|
setDeleting(true)
|
|
try {
|
|
const response = await fetch(`/api/notes/${noteId}`, {
|
|
method: 'DELETE',
|
|
})
|
|
|
|
if (response.ok) {
|
|
setOpen(false)
|
|
router.push('/notes')
|
|
router.refresh()
|
|
}
|
|
} catch {
|
|
setDeleting(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Button variant="destructive" size="sm" onClick={() => setOpen(true)}>
|
|
<Trash2 className="h-4 w-4 mr-1" /> Eliminar
|
|
</Button>
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
<DialogContent>
|
|
<DialogHeader>
|
|
<DialogTitle>Eliminar nota</DialogTitle>
|
|
<DialogDescription>
|
|
¿Estás seguro de que quieres eliminar "{noteTitle}"? Esta acción no se puede deshacer.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
<DialogFooter>
|
|
<Button variant="outline" onClick={() => setOpen(false)}>
|
|
Cancelar
|
|
</Button>
|
|
<Button variant="destructive" onClick={handleDelete} disabled={deleting}>
|
|
{deleting ? 'Eliminando...' : 'Eliminar'}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</>
|
|
)
|
|
}
|