mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 05:06:55 +00:00
68 lines
1.5 KiB
TypeScript
68 lines
1.5 KiB
TypeScript
"use client";
|
|
|
|
import { createNewSessionFromIdpIntent } from "@/lib/server/idp";
|
|
import { useRouter } from "next/navigation";
|
|
import { useEffect, useState } from "react";
|
|
import { Alert } from "./alert";
|
|
import { Spinner } from "./spinner";
|
|
|
|
type Props = {
|
|
userId: string;
|
|
// organization: string;
|
|
idpIntent: {
|
|
idpIntentId: string;
|
|
idpIntentToken: string;
|
|
};
|
|
authRequestId?: string;
|
|
};
|
|
|
|
export function IdpSignin({
|
|
userId,
|
|
idpIntent: { idpIntentId, idpIntentToken },
|
|
authRequestId,
|
|
}: Props) {
|
|
const [loading, setLoading] = useState(true);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const router = useRouter();
|
|
|
|
useEffect(() => {
|
|
createNewSessionFromIdpIntent({
|
|
userId,
|
|
idpIntent: {
|
|
idpIntentId,
|
|
idpIntentToken,
|
|
},
|
|
authRequestId,
|
|
})
|
|
.then((response) => {
|
|
if (response && "error" in response && response?.error) {
|
|
setError(response?.error);
|
|
return;
|
|
}
|
|
|
|
if (response && "redirect" in response && response?.redirect) {
|
|
return router.push(response.redirect);
|
|
}
|
|
})
|
|
.catch(() => {
|
|
setError("An internal error occurred");
|
|
return;
|
|
})
|
|
.finally(() => {
|
|
setLoading(false);
|
|
});
|
|
}, []);
|
|
|
|
return (
|
|
<div className="flex items-center justify-center py-4">
|
|
{loading && <Spinner className="h-5 w-5" />}
|
|
{error && (
|
|
<div className="py-4">
|
|
<Alert>{error}</Alert>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|