import { useParams } from 'common' import { useState } from 'react' import { toast } from 'sonner' import { Button, Dialog, DialogContent, DialogFooter, DialogHeader, DialogSection, DialogSectionSeparator, DialogTitle, DialogTrigger, } from 'ui' import { LintInfo } from '../Linter/Linter.constants' import { useLintRuleDeleteMutation } from '@/data/lint/delete-lint-rule-mutation' import { LintException } from '@/data/lint/lint-rules-query' interface EnableRuleModalProps { lint: LintInfo rule: LintException } export const EnableRuleModal = ({ lint, rule }: EnableRuleModalProps) => { const { ref } = useParams() const [open, setOpen] = useState(false) const { mutate: deleteRule, isPending: isDeleting } = useLintRuleDeleteMutation({ onSuccess: () => { toast.success(`Successfully enabled the "${lint.title}" rule`) setOpen(false) }, }) const onDeleteRule = () => { if (!ref) return console.error('Project ref is required') deleteRule({ projectRef: ref, ids: [rule.id] }) } return ( Enable rule

The "{lint.title}" rule will be visible in the Advisor reports, and will be included in email notifications for this project.

) }