forked from github/plane
be2cf2e842
* chore: update onboarding workflow * dev: update user count tasks * fix: forgot password endpoint * dev: instance and onboarding updates * chore: update sign-in workflow for cloud and self-hosted instances (#2993) * chore: updated auth services * chore: new signin workflow updated * chore: updated content * chore: instance admin setup * dev: update instance verification task * dev: run the instance verification task every 4 hours * dev: update migrations * chore: update latest features image --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
120 lines
4.2 KiB
TypeScript
120 lines
4.2 KiB
TypeScript
import React, { useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// hooks
|
|
import useSignInRedirection from "hooks/use-sign-in-redirection";
|
|
// components
|
|
import { LatestFeatureBlock } from "components/common";
|
|
import {
|
|
EmailForm,
|
|
UniqueCodeForm,
|
|
PasswordForm,
|
|
SetPasswordLink,
|
|
OAuthOptions,
|
|
OptionalSetPasswordForm,
|
|
CreatePasswordForm,
|
|
SelfHostedSignInForm,
|
|
} from "components/account";
|
|
|
|
export enum ESignInSteps {
|
|
EMAIL = "EMAIL",
|
|
PASSWORD = "PASSWORD",
|
|
SET_PASSWORD_LINK = "SET_PASSWORD_LINK",
|
|
UNIQUE_CODE = "UNIQUE_CODE",
|
|
OPTIONAL_SET_PASSWORD = "OPTIONAL_SET_PASSWORD",
|
|
CREATE_PASSWORD = "CREATE_PASSWORD",
|
|
USE_UNIQUE_CODE_FROM_PASSWORD = "USE_UNIQUE_CODE_FROM_PASSWORD",
|
|
}
|
|
|
|
const OAUTH_HIDDEN_STEPS = [ESignInSteps.OPTIONAL_SET_PASSWORD, ESignInSteps.CREATE_PASSWORD];
|
|
|
|
export const SignInRoot = observer(() => {
|
|
// states
|
|
const [signInStep, setSignInStep] = useState<ESignInSteps>(ESignInSteps.EMAIL);
|
|
const [email, setEmail] = useState("");
|
|
const [isOnboarded, setIsOnboarded] = useState(false);
|
|
// sign in redirection hook
|
|
const { handleRedirection } = useSignInRedirection();
|
|
// mobx store
|
|
const {
|
|
appConfig: { envConfig },
|
|
} = useMobxStore();
|
|
|
|
const isOAuthEnabled = envConfig && (envConfig.google_client_id || envConfig.github_client_id);
|
|
|
|
return (
|
|
<>
|
|
<div className="mx-auto flex flex-col">
|
|
{envConfig?.is_self_managed ? (
|
|
<SelfHostedSignInForm
|
|
email={email}
|
|
updateEmail={(newEmail) => setEmail(newEmail)}
|
|
handleSignInRedirection={handleRedirection}
|
|
/>
|
|
) : (
|
|
<>
|
|
{signInStep === ESignInSteps.EMAIL && (
|
|
<EmailForm
|
|
handleStepChange={(step) => setSignInStep(step)}
|
|
updateEmail={(newEmail) => setEmail(newEmail)}
|
|
/>
|
|
)}
|
|
{signInStep === ESignInSteps.PASSWORD && (
|
|
<PasswordForm
|
|
email={email}
|
|
updateEmail={(newEmail) => setEmail(newEmail)}
|
|
handleStepChange={(step) => setSignInStep(step)}
|
|
handleSignInRedirection={handleRedirection}
|
|
/>
|
|
)}
|
|
{signInStep === ESignInSteps.SET_PASSWORD_LINK && (
|
|
<SetPasswordLink email={email} updateEmail={(newEmail) => setEmail(newEmail)} />
|
|
)}
|
|
{signInStep === ESignInSteps.USE_UNIQUE_CODE_FROM_PASSWORD && (
|
|
<UniqueCodeForm
|
|
email={email}
|
|
updateEmail={(newEmail) => setEmail(newEmail)}
|
|
handleStepChange={(step) => setSignInStep(step)}
|
|
handleSignInRedirection={handleRedirection}
|
|
submitButtonLabel="Go to workspace"
|
|
showTermsAndConditions
|
|
updateUserOnboardingStatus={(value) => setIsOnboarded(value)}
|
|
/>
|
|
)}
|
|
{signInStep === ESignInSteps.UNIQUE_CODE && (
|
|
<UniqueCodeForm
|
|
email={email}
|
|
updateEmail={(newEmail) => setEmail(newEmail)}
|
|
handleStepChange={(step) => setSignInStep(step)}
|
|
handleSignInRedirection={handleRedirection}
|
|
updateUserOnboardingStatus={(value) => setIsOnboarded(value)}
|
|
/>
|
|
)}
|
|
{signInStep === ESignInSteps.OPTIONAL_SET_PASSWORD && (
|
|
<OptionalSetPasswordForm
|
|
email={email}
|
|
handleStepChange={(step) => setSignInStep(step)}
|
|
handleSignInRedirection={handleRedirection}
|
|
isOnboarded={isOnboarded}
|
|
/>
|
|
)}
|
|
{signInStep === ESignInSteps.CREATE_PASSWORD && (
|
|
<CreatePasswordForm
|
|
email={email}
|
|
handleStepChange={(step) => setSignInStep(step)}
|
|
handleSignInRedirection={handleRedirection}
|
|
isOnboarded={isOnboarded}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
{isOAuthEnabled && !OAUTH_HIDDEN_STEPS.includes(signInStep) && (
|
|
<OAuthOptions handleSignInRedirection={handleRedirection} />
|
|
)}
|
|
<LatestFeatureBlock />
|
|
</>
|
|
);
|
|
});
|