mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-20 05:51:25 +00:00
155 lines
5.0 KiB
TypeScript
155 lines
5.0 KiB
TypeScript
import { Button, Input } from "@mui/joy";
|
|
import React, { useEffect, useState } from "react";
|
|
import { useNavigate } from "react-router-dom";
|
|
import * as api from "../helpers/api";
|
|
import { validate, ValidatorConfig } from "../helpers/validator";
|
|
import { userService } from "../services";
|
|
import useLoading from "../hooks/useLoading";
|
|
import Icon from "../components/Icon";
|
|
import toastHelper from "../components/Toast";
|
|
|
|
const validateConfig: ValidatorConfig = {
|
|
minLength: 4,
|
|
maxLength: 24,
|
|
noSpace: true,
|
|
noChinese: true,
|
|
};
|
|
|
|
const Auth: React.FC = () => {
|
|
const navigate = useNavigate();
|
|
const [email, setEmail] = useState("");
|
|
const [password, setPassword] = useState("");
|
|
const actionBtnLoadingState = useLoading(false);
|
|
|
|
useEffect(() => {
|
|
if (userService.getState().user) {
|
|
navigate("/");
|
|
return;
|
|
}
|
|
|
|
api.getSystemStatus().then(({ data }) => {
|
|
const { data: status } = data;
|
|
if (status.profile.mode === "dev") {
|
|
setEmail("frank@iamcorgi.com");
|
|
setPassword("secret");
|
|
}
|
|
});
|
|
}, []);
|
|
|
|
const handleEmailInputChanged = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const text = e.target.value as string;
|
|
setEmail(text);
|
|
};
|
|
|
|
const handlePasswordInputChanged = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const text = e.target.value as string;
|
|
setPassword(text);
|
|
};
|
|
|
|
const handleSigninBtnsClick = async () => {
|
|
if (actionBtnLoadingState.isLoading) {
|
|
return;
|
|
}
|
|
|
|
const emailValidResult = validate(email, validateConfig);
|
|
if (!emailValidResult.result) {
|
|
toastHelper.error("Email: " + emailValidResult.reason);
|
|
return;
|
|
}
|
|
|
|
const passwordValidResult = validate(password, validateConfig);
|
|
if (!passwordValidResult.result) {
|
|
toastHelper.error("Password: " + passwordValidResult.reason);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
actionBtnLoadingState.setLoading();
|
|
await api.signin(email, password);
|
|
const user = await userService.doSignIn();
|
|
if (user) {
|
|
navigate("/", {
|
|
replace: true,
|
|
});
|
|
} else {
|
|
toastHelper.error("Signin failed");
|
|
}
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
toastHelper.error(JSON.stringify(error.response.data));
|
|
}
|
|
actionBtnLoadingState.setFinish();
|
|
};
|
|
|
|
const handleSignupBtnsClick = async () => {
|
|
if (actionBtnLoadingState.isLoading) {
|
|
return;
|
|
}
|
|
|
|
const emailValidResult = validate(email, validateConfig);
|
|
if (!emailValidResult.result) {
|
|
toastHelper.error("Email: " + emailValidResult.reason);
|
|
return;
|
|
}
|
|
|
|
const passwordValidResult = validate(password, validateConfig);
|
|
if (!passwordValidResult.result) {
|
|
toastHelper.error("Password: " + passwordValidResult.reason);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
actionBtnLoadingState.setLoading();
|
|
await api.signup(email, password);
|
|
const user = await userService.doSignIn();
|
|
if (user) {
|
|
navigate("/", {
|
|
replace: true,
|
|
});
|
|
} else {
|
|
toastHelper.error("Signup failed");
|
|
}
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
toastHelper.error(JSON.stringify(error.response.data));
|
|
}
|
|
actionBtnLoadingState.setFinish();
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-row justify-center items-center w-full h-screen bg-white">
|
|
<div className="w-80 max-w-full h-full py-4 flex flex-col justify-start items-center">
|
|
<div className="w-full py-4 grow flex flex-col justify-center items-center">
|
|
<div className="flex flex-row justify-start items-center w-full mb-4">
|
|
<img src="/corgi-logo.png" className="w-14 h-auto mr-1" alt="" />
|
|
<div className="text-3xl font-medium font-mono flex flex-row justify-start items-center">
|
|
Corgi
|
|
{actionBtnLoadingState.isLoading && <Icon.Loader className="ml-2 w-5 h-auto animate-spin" />}
|
|
</div>
|
|
</div>
|
|
<div className={`flex flex-col justify-start items-start w-full ${actionBtnLoadingState.isLoading ? "opacity-80" : ""}`}>
|
|
<div className="w-full flex flex-col mb-2">
|
|
<span className="leading-8 mb-1 text-gray-600">Email</span>
|
|
<Input className="w-full py-3" type="email" value={email} onChange={handleEmailInputChanged} />
|
|
</div>
|
|
<div className="w-full flex flex-col mb-2">
|
|
<span className="leading-8 text-gray-600">Password</span>
|
|
<Input className="w-full py-3" type="password" value={password} onChange={handlePasswordInputChanged} />
|
|
</div>
|
|
</div>
|
|
<div className="w-full flex flex-row justify-end items-center mt-4 space-x-2">
|
|
<Button variant="plain" disabled={actionBtnLoadingState.isLoading} onClick={() => handleSignupBtnsClick()}>
|
|
Sign up
|
|
</Button>
|
|
<Button color="primary" disabled={actionBtnLoadingState.isLoading} onClick={() => handleSigninBtnsClick()}>
|
|
Sign in
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Auth;
|