diff options
author | crupest <crupest@outlook.com> | 2023-07-29 22:58:37 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-07-29 22:58:37 +0800 |
commit | 307ea9fb838e9a26e8df5218407bb3627391f34f (patch) | |
tree | d9ff78cbdaa53190f5e2a03ac83e7db9311f2efb /FrontEnd/src/pages/register/index.tsx | |
parent | 77b03b17a59655c1eeb00e0a818c81f8ea5e326e (diff) | |
download | timeline-307ea9fb838e9a26e8df5218407bb3627391f34f.tar.gz timeline-307ea9fb838e9a26e8df5218407bb3627391f34f.tar.bz2 timeline-307ea9fb838e9a26e8df5218407bb3627391f34f.zip |
...
Diffstat (limited to 'FrontEnd/src/pages/register/index.tsx')
-rw-r--r-- | FrontEnd/src/pages/register/index.tsx | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/FrontEnd/src/pages/register/index.tsx b/FrontEnd/src/pages/register/index.tsx new file mode 100644 index 00000000..bc474adb --- /dev/null +++ b/FrontEnd/src/pages/register/index.tsx @@ -0,0 +1,138 @@ +import { useState, useEffect } from "react"; +import { useTranslation } from "react-i18next"; +import { useNavigate } from "react-router-dom"; + +import { HttpBadRequestError } from "@/http/common"; +import { getHttpTokenClient } from "@/http/token"; +import { userService, useUser } from "@/services/user"; + +import { LoadingButton } from "@/views/common/button"; +import { + useInputs, + InputErrorDict, + InputGroup, +} from "@/views/common/input/InputGroup"; + +import "./index.css"; + +export default function RegisterPage() { + const navigate = useNavigate(); + + const { t } = useTranslation(); + + const user = useUser(); + + const { hasErrorAndDirty, confirm, setAllDisabled, inputGroupProps } = + useInputs({ + init: { + scheme: { + inputs: [ + { + key: "username", + type: "text", + label: "register.username", + }, + { + key: "password", + type: "text", + label: "register.password", + password: true, + }, + { + key: "confirmPassword", + type: "text", + label: "register.confirmPassword", + password: true, + }, + { + key: "registerCode", + + type: "text", + label: "register.registerCode", + }, + ], + validator: ({ + username, + password, + confirmPassword, + registerCode, + }) => { + const result: InputErrorDict = {}; + if (username === "") { + result["username"] = "register.error.usernameEmpty"; + } + if (password === "") { + result["password"] = "register.error.passwordEmpty"; + } + if (confirmPassword !== password) { + result["confirmPassword"] = "register.error.confirmPasswordWrong"; + } + if (registerCode === "") { + result["registerCode"] = "register.error.registerCodeEmpty"; + } + return result; + }, + }, + dataInit: {}, + }, + }); + + const [process, setProcess] = useState<boolean>(false); + const [resultError, setResultError] = useState<string | null>(null); + + useEffect(() => { + if (user != null) { + navigate("/"); + } + }, [navigate, user]); + + return ( + <div className="container register-page"> + <InputGroup {...inputGroupProps} /> + {resultError && <div className="cru-color-danger">{t(resultError)}</div>} + <LoadingButton + text="register.register" + loading={process} + disabled={hasErrorAndDirty} + onClick={() => { + const confirmResult = confirm(); + if (confirmResult.type === "ok") { + const { username, password, registerCode } = confirmResult.values; + setProcess(true); + setAllDisabled(true); + void getHttpTokenClient() + .register({ + username: username as string, + password: password as string, + registerCode: registerCode as string, + }) + .then( + () => { + void userService + .login( + { + username: username as string, + password: password as string, + }, + true, + ) + .then(() => { + navigate("/"); + }); + }, + (error) => { + if (error instanceof HttpBadRequestError) { + setResultError("register.error.registerCodeInvalid"); + } else { + setResultError("error.network"); + } + setProcess(false); + setAllDisabled(false); + }, + ); + } + }} + /> + </div> + ); +} |