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
|
import './style.css';
import axios, { AxiosError } from "axios";
import { useContext, useState } from "react";
import { useNavigate } from "react-router";
import { BackendURL } from "../Config";
import { Authentication, SaveState } from "./ContextProvider";
import { GetLocalizedString } from "../Locales/Locales";
import { LanguageContext } from "../Locales/Context";
import { BackendError } from "../Models/ErrorResponce";
const RegisterURL = `${BackendURL}/auth/register`;
function RegisterPage() {
const lang = useContext(LanguageContext);
const [username, setUsername] = useState<string>("");
const [passw, setPassw] = useState<string>("");
const [errMessage, setErrorMessage] = useState<string>("");
const navigate = useNavigate();
function SetAuthState(newAuthState: Authentication | null) {
if (newAuthState) {
console.log(`Logging in as ${newAuthState.User}...`);
} else {
console.log(`Logging out...`);
}
SaveState(newAuthState, (cookie: string) => {
document.cookie = `X-AUTH-TOKEN=${cookie}; path=/;`;
})
}
return (
<div>
<div className="prompt">
<h2> { GetLocalizedString("Username", lang) } </h2>
<input onChange={ev => setUsername(ev.target.value)} />
</div>
<p> { GetLocalizedString("*security-warning*", lang) } </p>
<div className="prompt">
<h2> { GetLocalizedString("Password", lang) } </h2>
<input onChange={ev => setPassw(ev.target.value)} />
</div>
<button onClick={() => {
Register(username, passw, (data) => {
SetAuthState(data);
navigate("/");
window.location.reload();
}, (err) => {
setErrorMessage(err);
console.log(err);
});
}}> { GetLocalizedString("Register", lang) } </button>
<p> { errMessage } </p>
</div>
);
}
async function Register(username: string, passw: string, onSuccess: (data: Authentication) => void, onError: (message: string) => void) {
await axios.post<Authentication>(
RegisterURL, {
Username: username,
Password: passw
}
).then(resp => {
onSuccess(resp.data);
}).catch(err => {
if (axios.isAxiosError(err)) {
const parsedErr = err as AxiosError<BackendError>;
if (parsedErr.response) {
console.log(parsedErr.response);
onError(parsedErr.response.data.Message);
return
}
}
onError("An unexpected error occured");
return;
});
}
export default RegisterPage;
|