mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
63a6be2143
* chore: update deactivated account alert message to show support email if available in env. * chore: clear error_info on email check. * chore: fix log-in / sign-up forms alignment and minor ux copy fix. * fix: auth redirection to `/sign-in` issue. * chore: update `back to sign in` url in forgot password screen.
109 lines
3.2 KiB
TypeScript
109 lines
3.2 KiB
TypeScript
import { FC, ReactNode } from "react";
|
|
import useSWR from "swr";
|
|
import { IWorkspaceMemberInvitation } from "@plane/types";
|
|
// components
|
|
import { LogoSpinner } from "@/components/common";
|
|
import { WorkspaceLogo } from "@/components/workspace/logo";
|
|
// helpers
|
|
import { EAuthModes, EAuthSteps } from "@/helpers/authentication.helper";
|
|
// services
|
|
import { WorkspaceService } from "@/services/workspace.service";
|
|
|
|
type TAuthHeader = {
|
|
workspaceSlug: string | undefined;
|
|
invitationId: string | undefined;
|
|
invitationEmail: string | undefined;
|
|
authMode: EAuthModes;
|
|
currentAuthStep: EAuthSteps;
|
|
children: ReactNode;
|
|
};
|
|
|
|
const Titles = {
|
|
[EAuthModes.SIGN_IN]: {
|
|
[EAuthSteps.EMAIL]: {
|
|
header: "Log in or Sign up",
|
|
subHeader: "",
|
|
},
|
|
[EAuthSteps.PASSWORD]: {
|
|
header: "Log in or Sign up",
|
|
subHeader: "Log in using your password.",
|
|
},
|
|
[EAuthSteps.UNIQUE_CODE]: {
|
|
header: "Log in or Sign up",
|
|
subHeader: "Log in using your unique code.",
|
|
},
|
|
},
|
|
[EAuthModes.SIGN_UP]: {
|
|
[EAuthSteps.EMAIL]: {
|
|
header: "Sign up or Log in",
|
|
subHeader: "",
|
|
},
|
|
[EAuthSteps.PASSWORD]: {
|
|
header: "Sign up or Log in",
|
|
subHeader: "Sign up using your password",
|
|
},
|
|
[EAuthSteps.UNIQUE_CODE]: {
|
|
header: "Sign up or Log in",
|
|
subHeader: "Sign up using your unique code",
|
|
},
|
|
},
|
|
};
|
|
|
|
const workSpaceService = new WorkspaceService();
|
|
|
|
export const AuthHeader: FC<TAuthHeader> = (props) => {
|
|
const { workspaceSlug, invitationId, invitationEmail, authMode, currentAuthStep, children } = props;
|
|
|
|
const { data: invitation, isLoading } = useSWR(
|
|
workspaceSlug && invitationId ? `WORKSPACE_INVITATION_${workspaceSlug}_${invitationId}` : null,
|
|
async () => workspaceSlug && invitationId && workSpaceService.getWorkspaceInvitation(workspaceSlug, invitationId),
|
|
{
|
|
revalidateOnFocus: false,
|
|
shouldRetryOnError: false,
|
|
}
|
|
);
|
|
|
|
const getHeaderSubHeader = (
|
|
step: EAuthSteps,
|
|
mode: EAuthModes,
|
|
invitation: IWorkspaceMemberInvitation | undefined,
|
|
email: string | undefined
|
|
) => {
|
|
if (invitation && email && invitation.email === email && invitation.workspace) {
|
|
const workspace = invitation.workspace;
|
|
return {
|
|
header: (
|
|
<div className="relative inline-flex items-center gap-2">
|
|
Join <WorkspaceLogo logo={workspace?.logo} name={workspace?.name} classNames="w-8 h-9 flex-shrink-0" />{" "}
|
|
{workspace.name}
|
|
</div>
|
|
),
|
|
subHeader: `${
|
|
mode == EAuthModes.SIGN_UP ? "Create an account" : "Sign in"
|
|
} to start managing work with your team.`,
|
|
};
|
|
}
|
|
|
|
return Titles[mode][step];
|
|
};
|
|
|
|
const { header, subHeader } = getHeaderSubHeader(currentAuthStep, authMode, invitation || undefined, invitationEmail);
|
|
|
|
if (isLoading)
|
|
return (
|
|
<div className="flex h-full w-full items-center justify-center">
|
|
<LogoSpinner />
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<div className="space-y-1 text-center">
|
|
<h3 className="text-3xl font-bold text-onboarding-text-100">{header}</h3>
|
|
<p className="font-medium text-onboarding-text-400">{subHeader}</p>
|
|
</div>
|
|
{children}
|
|
</>
|
|
);
|
|
};
|