import { useState } from 'react' import { toast } from 'sonner' import { useParams } from 'common' import { useCreateTenantSourceMutation } from 'data/replication/create-tenant-source-mutation' import { Button, Dialog, DialogContent, DialogFooter, DialogHeader, DialogSection, DialogSectionSeparator, DialogTitle, DialogTrigger, } from 'ui' import { Admonition } from 'ui-patterns' export const EnableReplicationModal = () => { const { ref: projectRef } = useParams() const [open, setOpen] = useState(false) const { mutate: createTenantSource, isPending: creatingTenantSource } = useCreateTenantSourceMutation({ onSuccess: () => { toast.success('Replication has been successfully enabled!') setOpen(false) }, onError: (error) => { toast.error(`Failed to enable replication: ${error.message}`) }, }) const onEnableReplication = async () => { if (!projectRef) return console.error('Project ref is required') createTenantSource({ projectRef }) } return ( Enable Replication

This feature is in active development and may change as we gather feedback. Availability and behavior can evolve while in Alpha.

Pricing has not been finalized yet. You can enable replication now; we'll announce pricing later and notify you before any charges apply.

) }