ente/web/packages/accounts/components/SignUpContents.tsx
2025-01-14 17:02:53 +05:30

357 lines
14 KiB
TypeScript

import { PAGES } from "@/accounts/constants/pages";
import { generateKeyAndSRPAttributes } from "@/accounts/services/srp";
import { sendOTT } from "@/accounts/services/user";
import { isWeakPassword } from "@/accounts/utils/password";
import { LoadingButton } from "@/base/components/mui/LoadingButton";
import { isMuseumHTTPError } from "@/base/http";
import log from "@/base/log";
import { LS_KEYS, setLSUser } from "@ente/shared//storage/localStorage";
import { VerticallyCentered } from "@ente/shared/components/Container";
import ShowHidePassword from "@ente/shared/components/Form/ShowHidePassword";
import LinkButton from "@ente/shared/components/LinkButton";
import {
generateAndSaveIntermediateKeyAttributes,
saveKeyInSessionStore,
} from "@ente/shared/crypto/helpers";
import { setData } from "@ente/shared/storage/localStorage";
import {
setJustSignedUp,
setLocalReferralSource,
} from "@ente/shared/storage/localStorage/helpers";
import { SESSION_KEYS } from "@ente/shared/storage/sessionStorage";
import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
import {
Box,
Checkbox,
FormControlLabel,
FormGroup,
IconButton,
InputAdornment,
Link,
Stack,
TextField,
Tooltip,
Typography,
} from "@mui/material";
import { Formik, type FormikHelpers } from "formik";
import { t } from "i18next";
import type { NextRouter } from "next/router";
import React, { useState } from "react";
import { Trans } from "react-i18next";
import * as Yup from "yup";
import { PasswordStrengthHint } from "./PasswordStrength";
import {
AccountsPageFooter,
AccountsPageTitle,
} from "./layouts/centered-paper";
interface FormValues {
email: string;
passphrase: string;
confirm: string;
referral: string;
}
interface SignUpContentsProps {
router: NextRouter;
/** Called when the user clicks the login option instead. */
onLogin: () => void;
/** Reactive value of {@link customAPIHost}. */
host: string | undefined;
}
export const SignUpContents: React.FC<SignUpContentsProps> = ({
router,
onLogin,
host,
}) => {
const [acceptTerms, setAcceptTerms] = useState(false);
const [loading, setLoading] = useState(false);
const [showPassword, setShowPassword] = useState(false);
const handleClickShowPassword = () => {
setShowPassword(!showPassword);
};
const handleMouseDownPassword = (
event: React.MouseEvent<HTMLButtonElement>,
) => {
event.preventDefault();
};
const registerUser = async (
{ email, passphrase, confirm, referral }: FormValues,
{ setFieldError }: FormikHelpers<FormValues>,
) => {
try {
if (passphrase !== confirm) {
setFieldError("confirm", t("password_mismatch_error"));
return;
}
setLoading(true);
try {
setLocalReferralSource(referral);
await sendOTT(email, "signup");
await setLSUser({ email });
} catch (e) {
log.error("Signup failed", e);
if (
await isMuseumHTTPError(e, 409, "USER_ALREADY_REGISTERED")
) {
setFieldError("email", t("email_already_registered"));
} else {
setFieldError("email", t("generic_error"));
}
throw e;
}
try {
const { keyAttributes, masterKey, srpSetupAttributes } =
await generateKeyAndSRPAttributes(passphrase);
setData(LS_KEYS.ORIGINAL_KEY_ATTRIBUTES, keyAttributes);
setData(LS_KEYS.SRP_SETUP_ATTRIBUTES, srpSetupAttributes);
await generateAndSaveIntermediateKeyAttributes(
passphrase,
keyAttributes,
masterKey,
);
await saveKeyInSessionStore(
SESSION_KEYS.ENCRYPTION_KEY,
masterKey,
);
setJustSignedUp(true);
void router.push(PAGES.VERIFY);
} catch (e) {
setFieldError("confirm", t("password_generation_failed"));
throw e;
}
} catch (e) {
log.error("signup failed", e);
}
setLoading(false);
};
const form = (
<Formik<FormValues>
initialValues={{
email: "",
passphrase: "",
confirm: "",
referral: "",
}}
validationSchema={Yup.object().shape({
email: Yup.string()
.email(t("invalid_email_error"))
.required(t("required")),
passphrase: Yup.string().required(t("required")),
confirm: Yup.string().required(t("required")),
})}
validateOnChange={false}
validateOnBlur={false}
onSubmit={registerUser}
>
{({
values,
errors,
handleChange,
handleSubmit,
}): React.JSX.Element => (
<form noValidate onSubmit={handleSubmit}>
<VerticallyCentered sx={{ mb: 1 }}>
<TextField
fullWidth
id="email"
name="email"
autoComplete="username"
type="email"
label={t("enter_email")}
value={values.email}
onChange={handleChange("email")}
error={Boolean(errors.email)}
helperText={errors.email}
autoFocus
disabled={loading}
/>
<TextField
fullWidth
id="password"
name="password"
autoComplete="new-password"
type={showPassword ? "text" : "password"}
label={t("password")}
value={values.passphrase}
onChange={handleChange("passphrase")}
error={Boolean(errors.passphrase)}
helperText={errors.passphrase}
disabled={loading}
slotProps={{
input: {
endAdornment: (
<ShowHidePassword
showPassword={showPassword}
handleClickShowPassword={
handleClickShowPassword
}
handleMouseDownPassword={
handleMouseDownPassword
}
/>
),
},
}}
/>
<TextField
fullWidth
id="confirm-password"
name="confirm-password"
autoComplete="new-password"
type="password"
label={t("confirm_password")}
value={values.confirm}
onChange={handleChange("confirm")}
error={Boolean(errors.confirm)}
helperText={errors.confirm}
disabled={loading}
/>
<PasswordStrengthHint password={values.passphrase} />
<Box sx={{ width: "100%" }}>
<Typography
sx={{
textAlign: "left",
color: "text.muted",
mt: "24px",
}}
>
{t("referral_source_hint")}
</Typography>
<TextField
hiddenLabel
fullWidth
name="referral"
type="text"
value={values.referral}
onChange={handleChange("referral")}
error={Boolean(errors.referral)}
disabled={loading}
slotProps={{
input: {
endAdornment: (
<InputAdornment position="end">
<Tooltip
title={t(
"referral_source_info",
)}
>
<IconButton
tabIndex={-1}
color="secondary"
edge={"end"}
>
<InfoOutlinedIcon />
</IconButton>
</Tooltip>
</InputAdornment>
),
},
}}
/>
</Box>
<FormGroup sx={{ width: "100%" }}>
<FormControlLabel
sx={{
color: "text.muted",
ml: 0,
mt: 2,
mb: 0,
}}
control={
<Checkbox
size="small"
disabled={loading}
checked={acceptTerms}
onChange={(e) =>
setAcceptTerms(e.target.checked)
}
color="accent"
/>
}
label={
<Typography variant="small">
<Trans
i18nKey={"terms_and_conditions"}
components={{
a: (
<Link
href="https://ente.io/terms"
target="_blank"
/>
),
b: (
<Link
href="https://ente.io/privacy"
target="_blank"
/>
),
}}
/>
</Typography>
}
/>
</FormGroup>
</VerticallyCentered>
<Box sx={{ mb: 3 }}>
<LoadingButton
fullWidth
color="accent"
type="submit"
loading={loading}
disabled={
!acceptTerms ||
isWeakPassword(values.passphrase)
}
>
{t("create_account")}
</LoadingButton>
{loading && (
<Typography
variant="small"
sx={{
mt: 1,
textAlign: "center",
color: "text.muted",
}}
>
{t("key_generation_in_progress")}
</Typography>
)}
</Box>
</form>
)}
</Formik>
);
return (
<>
<AccountsPageTitle>{t("sign_up")}</AccountsPageTitle>
{form}
<AccountsPageFooter>
<Stack sx={{ gap: 3, textAlign: "center" }}>
<LinkButton onClick={onLogin}>
{t("existing_account")}
</LinkButton>
<Typography
variant="mini"
sx={{ color: "text.faint", minHeight: "16px" }}
>
{host ?? "" /* prevent layout shift with a minHeight */}
</Typography>
</Stack>
</AccountsPageFooter>
</>
);
};