Files
supabase/apps/studio/components/interfaces/Settings/Database/NetworkRestrictions/RemoveRestrictionModal.tsx
Danny White d653617cdd chore(studio): improve inline code styling (#40724)
* sweep language

* update class docs

* additional

* basic docs

* sweep relevant instances

* replace text-code

* additional in sweep

* Tiny fix

* prettier

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
2025-11-24 16:34:30 +08:00

99 lines
3.4 KiB
TypeScript

import { useParams } from 'common'
import { toast } from 'sonner'
import { Button, Modal } from 'ui'
import { useNetworkRestrictionsQuery } from 'data/network-restrictions/network-restrictions-query'
import { useNetworkRestrictionsApplyMutation } from 'data/network-restrictions/network-retrictions-apply-mutation'
import { Admonition } from 'ui-patterns'
interface RemoveRestrictionModalProps {
visible: boolean
selectedRestriction?: string
onClose: () => void
}
const RemoveRestrictionModal = ({
visible,
selectedRestriction,
onClose,
}: RemoveRestrictionModalProps) => {
const { ref } = useParams()
const { data } = useNetworkRestrictionsQuery({ projectRef: ref }, { enabled: visible })
const ipv4Restrictions = data?.config?.dbAllowedCidrs ?? []
// @ts-ignore [Joshen] API typing issue
const ipv6Restrictions: string[] = data?.config?.dbAllowedCidrsV6 ?? []
const restrictedIps = ipv4Restrictions.concat(ipv6Restrictions)
const { mutate: applyNetworkRestrictions, isPending: isApplying } =
useNetworkRestrictionsApplyMutation({
onSuccess: () => onClose(),
onError: (error) => {
toast.error(`Failed to remove restriction: ${error.message}`)
},
})
const isRemovingOnlyRestriction =
restrictedIps.length === 1 && restrictedIps[0] === selectedRestriction
const onSubmit = async () => {
if (!ref) return console.error('Project ref is required')
if (!selectedRestriction) return console.error('Missing selected restriction')
const dbAllowedCidrs = ipv4Restrictions.includes(selectedRestriction)
? ipv4Restrictions.filter((ip) => ip !== selectedRestriction)
: ipv4Restrictions
const dbAllowedCidrsV6 = ipv6Restrictions.includes(selectedRestriction)
? ipv6Restrictions.filter((ip) => ip !== selectedRestriction)
: ipv6Restrictions
if (dbAllowedCidrs.length === 0 && dbAllowedCidrsV6.length === 0) {
applyNetworkRestrictions({
projectRef: ref,
dbAllowedCidrs: ['0.0.0.0/0'],
dbAllowedCidrsV6: ['::/0'],
})
} else {
applyNetworkRestrictions({ projectRef: ref, dbAllowedCidrs, dbAllowedCidrsV6 })
}
}
return (
<Modal
hideFooter
size="medium"
visible={visible}
onCancel={onClose}
header="Confirm to remove restriction"
>
<Modal.Content className="space-y-4">
<p className="text-sm text-foreground-light">
The IPv4 address <code className="text-code-inline">{selectedRestriction}</code> will be
removed from your list of network restrictions
{isRemovingOnlyRestriction
? '.'
: ", and no longer have access to your project's database."}
</p>
{isRemovingOnlyRestriction && (
<Admonition
type="warning"
title="Database access will no longer be restricted"
description="Removing all network restrictions will default to your database being accessible from
all IP addresses."
/>
)}
</Modal.Content>
<Modal.Content className="flex items-center justify-end space-x-2">
<Button type="default" disabled={isApplying} onClick={() => onClose()}>
Cancel
</Button>
<Button loading={isApplying} disabled={isApplying} onClick={() => onSubmit()}>
Remove restriction
</Button>
</Modal.Content>
</Modal>
)
}
export default RemoveRestrictionModal