1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
import { useState, useEffect } from "react";
import { useTranslation } from "react-i18next";
import { useNavigate } from "react-router-dom";
import { HttpBadRequestError } from "~src/http/common";
import { getHttpTokenClient } from "~src/http/token";
import { userService, useUser } from "~src/services/user";
import { LoadingButton } from "~src/components/button";
import {
useInputs,
InputErrorDict,
InputGroup,
} from "~src/components/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>
);
}
|