import { useState } from 'react' import { useTranslation } from 'react-i18next' import { toast } from 'sonner' import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, } from '@/components/ui/alert-dialog' import { deleteApiKey } from '../api' import { ERROR_MESSAGES, SUCCESS_MESSAGES } from '../constants' import { useApiKeys } from './api-keys-provider' export function ApiKeysDeleteDialog() { const { t } = useTranslation() const { open, setOpen, currentRow, triggerRefresh } = useApiKeys() const [isDeleting, setIsDeleting] = useState(false) const handleDelete = async () => { if (!currentRow) return setIsDeleting(true) try { const result = await deleteApiKey(currentRow.id) if (result.success) { toast.success(t(SUCCESS_MESSAGES.API_KEY_DELETED)) setOpen(null) triggerRefresh() } else { toast.error(result.message || t(ERROR_MESSAGES.DELETE_FAILED)) } } catch (_error) { toast.error(t(ERROR_MESSAGES.UNEXPECTED)) } finally { setIsDeleting(false) } } return ( !open && setOpen(null)} > {t('Are you sure?')} {t('This will permanently delete API key')}{' '} {currentRow?.name} {t('. This action cannot be undone.')} {t('Cancel')} {isDeleting ? t('Deleting...') : t('Delete')} ) }