Files
formbricks/apps/web/modules/ee/sso/components/open-id-button.tsx
T
2025-10-20 14:28:14 +00:00

55 lines
1.4 KiB
TypeScript

"use client";
import { useTranslate } from "@tolgee/react";
import { signIn } from "next-auth/react";
import { useCallback, useEffect } from "react";
import { FORMBRICKS_LOGGED_IN_WITH_LS } from "@/lib/localStorage";
import { getCallbackUrl } from "@/modules/ee/sso/lib/utils";
import { Button } from "@/modules/ui/components/button";
interface OpenIdButtonProps {
inviteUrl?: string;
lastUsed?: boolean;
directRedirect?: boolean;
text?: string;
source: "signin" | "signup";
}
export const OpenIdButton = ({
inviteUrl,
lastUsed,
directRedirect = false,
text,
source,
}: OpenIdButtonProps) => {
const { t } = useTranslate();
const handleLogin = useCallback(async () => {
if (typeof window !== "undefined") {
localStorage.setItem(FORMBRICKS_LOGGED_IN_WITH_LS, "OpenID");
}
const callbackUrlWithSource = getCallbackUrl(inviteUrl, source);
await signIn("openid", {
redirect: true,
callbackUrl: callbackUrlWithSource,
});
}, [inviteUrl, source]);
useEffect(() => {
if (directRedirect) {
handleLogin();
}
}, [directRedirect, handleLogin]);
return (
<Button
type="button"
onClick={handleLogin}
variant="secondary"
className="relative w-full justify-center">
{text ? text : t("auth.continue_with_openid")}
{lastUsed && <span className="absolute right-3 text-xs opacity-50">{t("auth.last_used")}</span>}
</Button>
);
};