mirror of
https://github.com/supabase/supabase.git
synced 2026-06-12 17:27:58 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
81 lines
2.6 KiB
TypeScript
81 lines
2.6 KiB
TypeScript
import { useQueryClient } from '@tanstack/react-query'
|
|
import { useParams } from 'common'
|
|
import { toast } from 'sonner'
|
|
import ConfirmationModal from 'ui-patterns/Dialogs/ConfirmationModal'
|
|
|
|
import { replicaKeys } from '@/data/read-replicas/keys'
|
|
import { useReadReplicaRemoveMutation } from '@/data/read-replicas/replica-remove-mutation'
|
|
import { useReadReplicasQuery } from '@/data/read-replicas/replicas-query'
|
|
|
|
interface DropAllReplicasConfirmationModalProps {
|
|
visible: boolean
|
|
onSuccess: () => void
|
|
onCancel: () => void
|
|
}
|
|
|
|
const DropAllReplicasConfirmationModal = ({
|
|
visible,
|
|
onSuccess,
|
|
onCancel,
|
|
}: DropAllReplicasConfirmationModalProps) => {
|
|
const { ref: projectRef } = useParams()
|
|
const queryClient = useQueryClient()
|
|
const { data: databases } = useReadReplicasQuery({ projectRef })
|
|
const { mutateAsync: removeReadReplica, isPending: isRemoving } = useReadReplicaRemoveMutation()
|
|
|
|
const onConfirmRemove = async () => {
|
|
if (!projectRef) return console.error('Project is required')
|
|
if (databases === undefined) return console.error('Unable to retrieve replicas')
|
|
if (databases.length === 1) toast('Your project has no read replicas')
|
|
|
|
const replicas = databases.filter((db) => db.identifier !== projectRef)
|
|
try {
|
|
await Promise.all(
|
|
replicas.map((db) =>
|
|
removeReadReplica({
|
|
projectRef,
|
|
identifier: db.identifier,
|
|
invalidateReplicaQueries: false,
|
|
})
|
|
)
|
|
)
|
|
toast.success(`Tearing down all read replicas`)
|
|
|
|
await Promise.all([
|
|
queryClient.invalidateQueries({ queryKey: replicaKeys.list(projectRef) }),
|
|
queryClient.invalidateQueries({ queryKey: replicaKeys.loadBalancers(projectRef) }),
|
|
])
|
|
|
|
onSuccess()
|
|
onCancel()
|
|
} catch (error) {
|
|
toast.error('Failed to drop all replicas')
|
|
}
|
|
}
|
|
|
|
return (
|
|
<ConfirmationModal
|
|
variant={'destructive'}
|
|
size="medium"
|
|
loading={isRemoving}
|
|
visible={visible}
|
|
title="Confirm to drop all read replicas?"
|
|
confirmLabel="Drop all replicas"
|
|
confirmLabelLoading="Dropping all replicas"
|
|
onCancel={() => onCancel()}
|
|
onConfirm={() => onConfirmRemove()}
|
|
alert={{
|
|
title: 'This action cannot be undone',
|
|
description: 'You may still deploy new replicas in this region thereafter',
|
|
}}
|
|
>
|
|
<p className="text-sm">Before deleting all replicas, consider:</p>
|
|
<ul className="text-sm text-foreground-light list-disc pl-6">
|
|
<li>Network traffic from this region may slow down</li>
|
|
</ul>
|
|
</ConfirmationModal>
|
|
)
|
|
}
|
|
|
|
export default DropAllReplicasConfirmationModal
|