Files
supabase/apps/studio/components/interfaces/Storage/AnalyticsBuckets/DeleteAnalyticsBucketModal.tsx
2026-04-01 10:22:37 +02:00

70 lines
2.3 KiB
TypeScript

import { useParams } from 'common'
import { toast } from 'sonner'
import { useAnalyticsBucketDeleteCleanUp } from './AnalyticsBucketDetails/useAnalyticsBucketAssociatedEntities'
import { TextConfirmModal } from '@/components/ui/TextConfirmModalWrapper'
import { useAnalyticsBucketDeleteMutation } from '@/data/storage/analytics-bucket-delete-mutation'
import { useSelectedProjectQuery } from '@/hooks/misc/useSelectedProject'
export interface DeleteAnalyticsBucketModalProps {
visible: boolean
bucketId?: string
onClose: () => void
onSuccess?: () => void
}
export const DeleteAnalyticsBucketModal = ({
visible,
bucketId,
onClose,
onSuccess,
}: DeleteAnalyticsBucketModalProps) => {
const { ref: projectRef } = useParams()
const { data: project } = useSelectedProjectQuery()
const { mutateAsync: deleteAnalyticsBucketCleanUp, isPending: isCleaningUpAnalyticsBucket } =
useAnalyticsBucketDeleteCleanUp({ projectRef, bucketId })
const { mutate: deleteAnalyticsBucket, isPending: isDeletingAnalyticsBucket } =
useAnalyticsBucketDeleteMutation({
onSuccess: async () => {
if (project?.connectionString) await deleteAnalyticsBucketCleanUp()
toast.success(`Successfully deleted analytics bucket ${bucketId}`)
onClose()
onSuccess?.()
},
})
const onConfirmDelete = async () => {
if (!projectRef) return console.error('Project ref is required')
if (!bucketId) return console.error('No bucket is selected')
deleteAnalyticsBucket({ projectRef, id: bucketId })
}
const isDeleting = isDeletingAnalyticsBucket || isCleaningUpAnalyticsBucket
return (
<TextConfirmModal
visible={visible}
size="medium"
variant="destructive"
title={`Delete bucket “${bucketId}`}
loading={isDeleting}
confirmPlaceholder="Type bucket name"
confirmString={bucketId ?? ''}
confirmLabel="Delete bucket"
onCancel={onClose}
onConfirm={onConfirmDelete}
alert={{
title: 'You cannot recover this bucket once deleted',
description: 'This action cannot be undone',
}}
>
<p className="text-sm">
Your bucket <span className="font-bold text-foreground">{bucketId}</span> and all of its
contents will be permanently deleted.
</p>
</TextConfirmModal>
)
}