Files
supabase/apps/studio/components/interfaces/Organization/OAuthApps/DeleteAppModal.tsx
Joshen Lim 540049992d Replace ui setnotification with toast part 2 (#21872)
* Replace ui setnotification with toast part 2

* Prettier lint
2024-03-08 18:28:21 +08:00

65 lines
2.1 KiB
TypeScript

import toast from 'react-hot-toast'
import { useParams } from 'common'
import { useOAuthAppDeleteMutation } from 'data/oauth/oauth-app-delete-mutation'
import type { OAuthApp } from 'data/oauth/oauth-apps-query'
import { Alert, IconLock, Modal } from 'ui'
export interface DeleteAppModalProps {
selectedApp?: OAuthApp
onClose: () => void
}
const DeleteAppModal = ({ selectedApp, onClose }: DeleteAppModalProps) => {
const { slug } = useParams()
const { mutate: deleteOAuthApp, isLoading: 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>
<div className="py-4">
<Alert withIcon variant="warning" title="This action cannot be undone">
Deleting {selectedApp?.name} will invalidate any access tokens from this application
that were authorized by users.
</Alert>
<ul className="mt-4 space-y-5">
<li className="flex gap-3 text-sm">
<IconLock w={14} className="flex-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>
</div>
</Modal.Content>
</Modal>
)
}
export default DeleteAppModal