mirror of
https://github.com/supabase/supabase.git
synced 2026-06-13 01:39:53 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
import type { OAuthClient } from '@supabase/supabase-js'
|
|
import { useParams } from 'common'
|
|
import ConfirmationModal from 'ui-patterns/Dialogs/ConfirmationModal'
|
|
|
|
import { useProjectApiUrl } from '@/data/config/project-endpoint-query'
|
|
import type { OAuthServerAppDeleteVariables } from '@/data/oauth-server-apps/oauth-server-app-delete-mutation'
|
|
|
|
interface DeleteOAuthAppModalProps {
|
|
visible: boolean
|
|
selectedApp?: OAuthClient
|
|
setVisible: (value: string | null) => void
|
|
onDelete: (params: OAuthServerAppDeleteVariables) => void
|
|
isLoading: boolean
|
|
}
|
|
|
|
export const DeleteOAuthAppModal = ({
|
|
visible,
|
|
selectedApp,
|
|
setVisible,
|
|
onDelete,
|
|
isLoading,
|
|
}: DeleteOAuthAppModalProps) => {
|
|
const { ref: projectRef } = useParams()
|
|
|
|
const { hostEndpoint: clientEndpoint } = useProjectApiUrl({ projectRef })
|
|
|
|
const onConfirmDeleteApp = () => {
|
|
onDelete({
|
|
projectRef,
|
|
clientEndpoint,
|
|
clientId: selectedApp?.client_id,
|
|
})
|
|
}
|
|
|
|
return (
|
|
<ConfirmationModal
|
|
variant={'destructive'}
|
|
size="medium"
|
|
loading={isLoading}
|
|
visible={visible}
|
|
title={
|
|
<>
|
|
Confirm to delete OAuth app{' '}
|
|
<code className="text-code-inline">{selectedApp?.client_name}</code>
|
|
</>
|
|
}
|
|
confirmLabel="Confirm delete"
|
|
confirmLabelLoading="Deleting..."
|
|
onCancel={() => setVisible(null)}
|
|
onConfirm={() => onConfirmDeleteApp()}
|
|
alert={{
|
|
title: 'This action cannot be undone',
|
|
description: 'You will need to re-create the OAuth app if you want to revert the deletion.',
|
|
}}
|
|
>
|
|
<p className="text-sm">Before deleting this OAuth app, consider:</p>
|
|
<ul className="space-y-2 mt-2 text-sm text-foreground-light">
|
|
<li className="list-disc ml-6">Any applications using this OAuth app will lose access</li>
|
|
<li className="list-disc ml-6">This OAuth app is no longer in use by any applications</li>
|
|
</ul>
|
|
</ConfirmationModal>
|
|
)
|
|
}
|