mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 12:33:27 +00:00
85 lines
2.7 KiB
TypeScript
85 lines
2.7 KiB
TypeScript
import { DynamicTheme } from "@/components/dynamic-theme";
|
|
import { SignInWithIdp } from "@/components/sign-in-with-idp";
|
|
import { UsernameForm } from "@/components/username-form";
|
|
import {
|
|
getBrandingSettings,
|
|
getDefaultOrg,
|
|
getLoginSettings,
|
|
settingsService,
|
|
} from "@/lib/zitadel";
|
|
import { makeReqCtx } from "@zitadel/client/v2";
|
|
import { Organization } from "@zitadel/proto/zitadel/org/v2/org_pb";
|
|
import { getLocale, getTranslations } from "next-intl/server";
|
|
|
|
function getIdentityProviders(orgId?: string) {
|
|
return settingsService
|
|
.getActiveIdentityProviders({ ctx: makeReqCtx(orgId) }, {})
|
|
.then((resp) => {
|
|
return resp.identityProviders;
|
|
});
|
|
}
|
|
|
|
export default async function Page({
|
|
searchParams,
|
|
}: {
|
|
searchParams: Record<string | number | symbol, string | undefined>;
|
|
}) {
|
|
const locale = getLocale();
|
|
const t = await getTranslations({ locale, namespace: "loginname" });
|
|
|
|
const loginName = searchParams?.loginName;
|
|
const authRequestId = searchParams?.authRequestId;
|
|
const organization = searchParams?.organization;
|
|
const submit: boolean = searchParams?.submit === "true";
|
|
|
|
let defaultOrganization;
|
|
if (!organization) {
|
|
const org: Organization | null = await getDefaultOrg();
|
|
if (org) {
|
|
defaultOrganization = org.id;
|
|
}
|
|
}
|
|
|
|
const host = process.env.VERCEL_URL
|
|
? `https://${process.env.VERCEL_URL}`
|
|
: "http://localhost:3000";
|
|
|
|
const loginSettings = await getLoginSettings(
|
|
organization ?? defaultOrganization,
|
|
);
|
|
|
|
const identityProviders = await getIdentityProviders(
|
|
organization ?? defaultOrganization,
|
|
);
|
|
|
|
const branding = await getBrandingSettings(
|
|
organization ?? defaultOrganization,
|
|
);
|
|
|
|
return (
|
|
<DynamicTheme branding={branding}>
|
|
<div className="flex flex-col items-center space-y-4">
|
|
<h1>{t("title")}</h1>
|
|
<p className="ztdl-p">{t("description")}</p>
|
|
|
|
<UsernameForm
|
|
loginName={loginName}
|
|
authRequestId={authRequestId}
|
|
organization={organization} // stick to "organization" as we still want to do user discovery based on the searchParams not the default organization, later the organization is determined by the found user
|
|
submit={submit}
|
|
allowRegister={!!loginSettings?.allowRegister}
|
|
>
|
|
{identityProviders && process.env.ZITADEL_API_URL && (
|
|
<SignInWithIdp
|
|
host={host}
|
|
identityProviders={identityProviders}
|
|
authRequestId={authRequestId}
|
|
organization={organization ?? defaultOrganization} // use the organization from the searchParams here otherwise fallback to the default organization
|
|
></SignInWithIdp>
|
|
)}
|
|
</UsernameForm>
|
|
</div>
|
|
</DynamicTheme>
|
|
);
|
|
}
|