mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 21:14:30 +08:00
* Replace all usage of useProjectContext with useSelectedProjectQuery * Replace all usage of useSelectedProject with useSelectedProjectQuery * Replace all usage of useProjectByRef with useProjectByRefQuery * Replace all usage of useSelectedOrganization with useSelectedOrganizationQuery * Deprecate useSelectedProject, useSelectedOrganization, and useProjectByRef hooks * Deprecate ProjecContext
105 lines
3.5 KiB
TypeScript
105 lines
3.5 KiB
TypeScript
import { useParams } from 'common'
|
|
import { get as _get, find } from 'lodash'
|
|
import { useRouter } from 'next/router'
|
|
import { toast } from 'sonner'
|
|
|
|
import { useDatabasePoliciesQuery } from 'data/database-policies/database-policies-query'
|
|
import { useDatabasePolicyDeleteMutation } from 'data/database-policies/database-policy-delete-mutation'
|
|
import { useBucketDeleteMutation } from 'data/storage/bucket-delete-mutation'
|
|
import { Bucket, useBucketsQuery } from 'data/storage/buckets-query'
|
|
import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
|
|
import TextConfirmModal from 'ui-patterns/Dialogs/TextConfirmModal'
|
|
import { formatPoliciesForStorage } from './Storage.utils'
|
|
|
|
export interface DeleteBucketModalProps {
|
|
visible: boolean
|
|
bucket?: Bucket
|
|
onClose: () => void
|
|
}
|
|
|
|
const DeleteBucketModal = ({ visible = false, bucket, onClose }: DeleteBucketModalProps) => {
|
|
const router = useRouter()
|
|
const { ref: projectRef } = useParams()
|
|
const { data: project } = useSelectedProjectQuery()
|
|
|
|
const { data } = useBucketsQuery({ projectRef })
|
|
const { data: policies } = useDatabasePoliciesQuery({
|
|
projectRef: project?.ref,
|
|
connectionString: project?.connectionString,
|
|
schema: 'storage',
|
|
})
|
|
const { mutateAsync: deletePolicy } = useDatabasePolicyDeleteMutation()
|
|
|
|
const { mutate: deleteBucket, isLoading: isDeleting } = useBucketDeleteMutation({
|
|
onSuccess: async () => {
|
|
if (!project) return console.error('Project is required')
|
|
|
|
// Clean up policies from the corresponding bucket that was deleted
|
|
const storageObjectsPolicies = (policies ?? []).filter((policy) => policy.table === 'objects')
|
|
const formattedStorageObjectPolicies = formatPoliciesForStorage(
|
|
buckets,
|
|
storageObjectsPolicies
|
|
)
|
|
const bucketPolicies = _get(
|
|
find(formattedStorageObjectPolicies, { name: bucket!.name }),
|
|
['policies'],
|
|
[]
|
|
)
|
|
|
|
try {
|
|
await Promise.all(
|
|
bucketPolicies.map((policy: any) =>
|
|
deletePolicy({
|
|
projectRef: project?.ref,
|
|
connectionString: project?.connectionString,
|
|
originalPolicy: policy,
|
|
})
|
|
)
|
|
)
|
|
|
|
toast.success(`Successfully deleted bucket ${bucket?.name}`)
|
|
router.push(`/project/${projectRef}/storage/buckets`)
|
|
onClose()
|
|
} catch (error) {
|
|
toast.success(
|
|
`Successfully deleted bucket ${bucket?.name}. However, there was a problem deleting the policies tied to the bucket. Please review them in the storage policies section`
|
|
)
|
|
}
|
|
},
|
|
})
|
|
|
|
const buckets = data ?? []
|
|
|
|
const onDeleteBucket = async () => {
|
|
if (!projectRef) return console.error('Project ref is required')
|
|
if (!bucket) return console.error('No bucket is selected')
|
|
deleteBucket({ projectRef, id: bucket.id, type: bucket.type })
|
|
}
|
|
|
|
return (
|
|
<TextConfirmModal
|
|
variant={'destructive'}
|
|
visible={visible}
|
|
title={`Confirm deletion of ${bucket?.name}`}
|
|
confirmPlaceholder="Type in name of bucket"
|
|
onConfirm={onDeleteBucket}
|
|
onCancel={onClose}
|
|
confirmString={bucket?.name ?? ''}
|
|
loading={isDeleting}
|
|
text={
|
|
<>
|
|
Your bucket <span className="font-bold text-foreground">{bucket?.name}</span> and all its
|
|
contents will be permanently deleted.
|
|
</>
|
|
}
|
|
alert={{
|
|
title: 'You cannot recover this bucket once deleted.',
|
|
description: 'All bucket data will be lost.',
|
|
}}
|
|
confirmLabel="Delete bucket"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default DeleteBucketModal
|