Files
supabase/apps/studio/components/interfaces/Advisors/EnableRuleModal.tsx
Joshen Lim 7f5865872a Enforce noUnusedLocals and noUnusedParameters in tsconfig.json + fix all related issues (#45264)
## Context

Enforce `noUnusedLocals` and `noUnusedParameters` in tsconfig.json + fix
all related issues
2026-04-27 17:42:34 +08:00

70 lines
1.9 KiB
TypeScript

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 (
<Dialog open={open} onOpenChange={setOpen}>
<DialogTrigger asChild>
<Button type="default">Enable rule</Button>
</DialogTrigger>
<DialogContent size="small">
<DialogHeader>
<DialogTitle>Enable rule</DialogTitle>
</DialogHeader>
<DialogSectionSeparator />
<DialogSection>
<p className="text-sm">
The "{lint.title}" rule will be visible in the Advisor reports, and will be included in
email notifications for this project.
</p>
</DialogSection>
<DialogFooter>
<Button disabled={isDeleting} type="default" onClick={() => setOpen(false)}>
Cancel
</Button>
<Button loading={isDeleting} type="primary" onClick={onDeleteRule}>
Enable
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
)
}