mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 09:50:33 -04:00
35 lines
980 B
TypeScript
35 lines
980 B
TypeScript
import { useParams } from 'common'
|
|
import { useEffect } from 'react'
|
|
|
|
import { useGitHubAuthorizationCreateMutation } from '@/data/integrations/github-authorization-create-mutation'
|
|
|
|
const GitHubIntegrationAuthorize = () => {
|
|
const { code, state, setup_action } = useParams()
|
|
|
|
const { mutate, isSuccess, isError, isPending } = useGitHubAuthorizationCreateMutation({
|
|
onSuccess() {
|
|
window.close()
|
|
},
|
|
})
|
|
|
|
useEffect(() => {
|
|
if (code && state) {
|
|
mutate({ code, state })
|
|
} else if (setup_action === 'install') {
|
|
window.close()
|
|
}
|
|
}, [code, state, mutate, setup_action])
|
|
|
|
return (
|
|
<div className="h-screen flex flex-col justify-center items-center gap-4">
|
|
<h2>Completing GitHub Authorization...</h2>
|
|
|
|
{isSuccess && <p>You can now close this window.</p>}
|
|
{isPending && <p>Authorizing...</p>}
|
|
{isError && <p>Unable to authorize. Please try again.</p>}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default GitHubIntegrationAuthorize
|