191 lines
6.1 KiB
TypeScript
191 lines
6.1 KiB
TypeScript
import { useState, useEffect, ChangeEvent, FormEvent } from "react";
|
|
import toast from "react-hot-toast";
|
|
import { useTranslation } from "react-i18next";
|
|
import BASE_URL, { KEY_LOCAL_MAGIC_TOKEN } from "../../app/config";
|
|
import Input from "../../common/component/styled/Input";
|
|
import Button from "../../common/component/styled/Button";
|
|
import { useLazyCheckEmailQuery, useRegisterMutation, useSendRegMagicLinkMutation } from "../../app/services/auth";
|
|
import EmailNextTip from "./EmailNextStepTip";
|
|
import SignInLink from "./SignInLink";
|
|
import Divider from "../../common/component/Divider";
|
|
|
|
import { useGetLoginConfigQuery } from "../../app/services/server";
|
|
import SocialLoginButtons from "../login/SocialLoginButtons";
|
|
import { setAuthData } from "../../app/slices/auth.data";
|
|
import { useDispatch } from "react-redux";
|
|
import { useAppSelector } from "../../app/store";
|
|
|
|
interface AuthForm {
|
|
name?: string,
|
|
email: string;
|
|
password: string;
|
|
confirmPassword: string;
|
|
}
|
|
|
|
export default function Register() {
|
|
const serverName = useAppSelector(store => store.server.name);
|
|
const { t } = useTranslation("auth");
|
|
const { t: ct } = useTranslation();
|
|
const [sendRegMagicLink, { isLoading: signingUp, data, isSuccess }] =
|
|
useSendRegMagicLinkMutation();
|
|
const dispatch = useDispatch();
|
|
const [register, { isLoading: registering, data: regData, isSuccess: regSuccess }] = useRegisterMutation();
|
|
const [checkEmail, { isLoading: checkingEmail }] = useLazyCheckEmailQuery();
|
|
const { data: loginConfig, isSuccess: loginConfigSuccess } = useGetLoginConfigQuery();
|
|
|
|
// const navigateTo = useNavigate();
|
|
const [input, setInput] = useState<AuthForm>({
|
|
name: "",
|
|
email: "",
|
|
password: "",
|
|
confirmPassword: ""
|
|
});
|
|
const query = new URLSearchParams(location.search);
|
|
const magic_token = query.get("magic_token") ?? undefined;
|
|
if (magic_token) {
|
|
//本地存一下 magic token 后续oauth流程用到
|
|
localStorage.setItem(KEY_LOCAL_MAGIC_TOKEN, magic_token);
|
|
}
|
|
// send reg link
|
|
useEffect(() => {
|
|
if (isSuccess && data) {
|
|
const { new_magic_token, mail_is_sent } = data;
|
|
if (!mail_is_sent && new_magic_token) {
|
|
// 直接进入set_name流程
|
|
location.href = `?magic_token=${new_magic_token}#/register/set_name`;
|
|
}
|
|
}
|
|
}, [isSuccess, data]);
|
|
// register
|
|
useEffect(() => {
|
|
if (regSuccess && regData) {
|
|
// 更新本地认证信息
|
|
toast.success(ct("tip.reg"));
|
|
dispatch(setAuthData(regData));
|
|
// tricky
|
|
location.href = `/#/`;
|
|
}
|
|
}, [regSuccess, regData]);
|
|
|
|
const handleReg = async (evt: FormEvent<HTMLFormElement>) => {
|
|
evt.preventDefault();
|
|
const { name, email, password, confirmPassword } = input;
|
|
if (password !== confirmPassword) {
|
|
toast.error("Not Same Password!");
|
|
return;
|
|
}
|
|
const { data: canReg } = await checkEmail(email);
|
|
if (canReg) {
|
|
if (magic_token) {
|
|
sendRegMagicLink({
|
|
magic_token,
|
|
email,
|
|
password
|
|
});
|
|
} else {
|
|
// 带用户名的注册
|
|
register({
|
|
name,
|
|
email,
|
|
password
|
|
});
|
|
}
|
|
} else {
|
|
toast.error("Email already registered!");
|
|
}
|
|
// sendMagicLink(email);
|
|
};
|
|
|
|
const handleCompare = () => {
|
|
const { password, confirmPassword } = input;
|
|
if (password !== confirmPassword) {
|
|
toast.error("Not Same Password!");
|
|
}
|
|
};
|
|
|
|
const handleInput = (evt: ChangeEvent<HTMLInputElement>) => {
|
|
const { type } = evt.target.dataset as { type: keyof AuthForm };
|
|
const { value } = evt.target;
|
|
setInput((prev) => {
|
|
prev[type] = value;
|
|
return { ...prev };
|
|
});
|
|
};
|
|
if (!loginConfigSuccess) return null;
|
|
const {
|
|
who_can_sign_up: whoCanSignUp
|
|
} = loginConfig;
|
|
// magic token 没有并且没有开放注册
|
|
if (whoCanSignUp !== "EveryOne" && !magic_token)
|
|
// todo: i18n
|
|
return <>Sign up method is updated to Invitation Link Only</>;
|
|
const { name, email, password, confirmPassword } = input;
|
|
if (data?.mail_is_sent) return <EmailNextTip />;
|
|
const isLoading = registering || signingUp || checkingEmail;
|
|
|
|
return (
|
|
<>
|
|
<div className="flex-center flex-col pb-6">
|
|
<img src={`${BASE_URL}/resource/organization/logo`} alt="logo" className="w-14 h-14 md:mb-7 rounded-full" />
|
|
<h2 className="font-semibold text-2xl text-gray-800 dark:text-white md:mb-2">{t("reg.title", { name: serverName })}</h2>
|
|
<span className="hidden md:block text-gray-400 dark:text-gray-100">{t("reg.desc")}</span>
|
|
</div>
|
|
|
|
<form className="flex flex-col gap-5 w-80 md:min-w-[360px]" onSubmit={handleReg} autoSave={"false"} autoComplete={"true"}>
|
|
{/* 不存在 magic token */}
|
|
{!magic_token && <Input
|
|
className="large"
|
|
name="name"
|
|
value={name}
|
|
required
|
|
type="name"
|
|
placeholder={t("placeholder_name")}
|
|
data-type="name"
|
|
onChange={handleInput}
|
|
/>}
|
|
<Input
|
|
className="large"
|
|
name="email"
|
|
value={email}
|
|
required
|
|
type="email"
|
|
placeholder={t("placeholder_email")}
|
|
data-type="email"
|
|
onChange={handleInput}
|
|
/>
|
|
<Input
|
|
className="large"
|
|
type="password"
|
|
value={password}
|
|
name="password"
|
|
required
|
|
minLength={6}
|
|
data-type="password"
|
|
onChange={handleInput}
|
|
placeholder={t("placeholder_pwd")}
|
|
/>
|
|
<Input
|
|
className="large"
|
|
required
|
|
onBlur={handleCompare}
|
|
type="password"
|
|
minLength={6}
|
|
name={"confirmPassword"}
|
|
value={confirmPassword}
|
|
data-type="confirmPassword"
|
|
onChange={handleInput}
|
|
placeholder={t("placeholder_confirm_pwd")}
|
|
></Input>
|
|
<Button type="submit" disabled={isLoading}>
|
|
{isLoading ? t('signing_up') : t("sign_up")}
|
|
</Button>
|
|
</form>
|
|
<Divider content="OR" />
|
|
<div className="flex flex-col gap-3 py-3">
|
|
<SocialLoginButtons type="register" />
|
|
</div>
|
|
<SignInLink token={magic_token} />
|
|
</>
|
|
);
|
|
}
|