| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import { useParams } from 'common'
- import { Lock } from 'lucide-react'
- import { toast } from 'sonner'
- import { Modal } from 'ui'
- import { Admonition } from 'ui-patterns'
- import { useOAuthAppDeleteMutation } from '@/data/oauth/oauth-app-delete-mutation'
- import type { OAuthApp } from '@/data/oauth/oauth-apps-query'
- export interface DeleteAppModalProps {
- selectedApp?: OAuthApp
- onClose: () => void
- }
- export const DeleteAppModal = ({ selectedApp, onClose }: DeleteAppModalProps) => {
- const { slug } = useParams()
- const { mutate: deleteOAuthApp, isPending: isDeleting } = useOAuthAppDeleteMutation({
- onSuccess: () => {
- toast.success(`Successfully deleted the app "${selectedApp?.name}"`)
- onClose()
- },
- })
- const onConfirmDelete = async () => {
- if (!slug) return console.error('Slug is required')
- if (!selectedApp?.id) return console.error('App ID is required')
- deleteOAuthApp({ slug, id: selectedApp?.id })
- }
- return (
- <Modal
- size="medium"
- alignFooter="right"
- header={`Confirm to delete ${selectedApp?.name}`}
- visible={selectedApp !== undefined}
- loading={isDeleting}
- onCancel={onClose}
- onConfirm={onConfirmDelete}
- >
- <Modal.Content>
- <Admonition
- type="warning"
- title="This action cannot be undone"
- description={`Deleting ${selectedApp?.name} will invalidate any access tokens from this application that
- were authorized by users.`}
- />
- </Modal.Content>
- <Modal.Content>
- <ul className="space-y-5">
- <li className="flex gap-3 text-sm">
- <Lock size={14} className="shrink-0" />
- <div>
- <strong>Before you remove this application, consider:</strong>
- <ul className="space-y-2 mt-2">
- <li className="list-disc ml-4">
- No users are currently using this application. It will no longer be available for
- use after deletion.
- </li>
- </ul>
- </div>
- </li>
- </ul>
- </Modal.Content>
- </Modal>
- )
- }
|