| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import { useParams } from 'common'
- import { Lock } from 'lucide-react'
- import { toast } from 'sonner'
- import { Modal } from 'ui'
- import { Admonition } from 'ui-patterns'
- import { useAuthorizedAppRevokeMutation } from '@/data/oauth/authorized-app-revoke-mutation'
- import type { AuthorizedApp } from '@/data/oauth/authorized-apps-query'
- export interface RevokeAppModalProps {
- selectedApp?: AuthorizedApp
- onClose: () => void
- }
- export const RevokeAppModal = ({ selectedApp, onClose }: RevokeAppModalProps) => {
- const { slug } = useParams()
- const { mutate: revokeAuthorizedApp, isPending: isDeleting } = useAuthorizedAppRevokeMutation({
- onSuccess: () => {
- toast.success(`Successfully revoked 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')
- revokeAuthorizedApp({ slug, id: selectedApp?.id })
- }
- return (
- <Modal
- size="medium"
- alignFooter="right"
- header={`Confirm to revoke ${selectedApp?.name}`}
- visible={selectedApp !== undefined}
- loading={isDeleting}
- onCancel={onClose}
- onConfirm={onConfirmDelete}
- >
- <Modal.Content>
- <Admonition
- type="warning"
- title="This action cannot be undone"
- description={`${selectedApp?.name} application will no longer have access to your organization's settings
- and projects.`}
- />
- </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 app, consider:</strong>
- <ul className="space-y-2 mt-2">
- <li className="list-disc ml-4">
- No users are currently using this application. The application will no longer have
- access to your organization after being revoked.
- </li>
- </ul>
- </div>
- </li>
- </ul>
- </Modal.Content>
- </Modal>
- )
- }
|