refactor: add typescript support to project

This commit is contained in:
HD
2022-06-21 15:08:35 +08:00
parent 88ec2b742a
commit bd799ebea8
259 changed files with 1042 additions and 458 deletions
+100
View File
@@ -0,0 +1,100 @@
import { useState, useEffect, ChangeEvent, FormEvent } from "react";
import { useNavigate } from "react-router-dom";
import toast from "react-hot-toast";
import BASE_URL from "../../app/config";
import StyledWrapper from "./styled";
import Input from "../../common/component/styled/Input";
import Button from "../../common/component/styled/Button";
import { useSendLoginMagicLinkMutation } from "../../app/services/auth";
import SentTip from "./SentTip";
export default function SendMagicLinkPage() {
const [sent, setSent] = useState(false);
const [sendMagicLink, { isSuccess, isLoading, error }] = useSendLoginMagicLinkMutation();
const navigateTo = useNavigate();
const [email, setEmail] = useState("");
useEffect(() => {
if (isSuccess) {
toast.success("Send Email Successfully!");
setSent(true);
}
}, [isSuccess]);
useEffect(() => {
if (error) {
console.log(error);
switch (error.status) {
case "PARSING_ERROR":
toast.error(error.data);
break;
case 401:
toast.error("Username or Password Incorrect");
break;
case 404:
toast.error("Account not exsit");
break;
default:
toast.error("Something Error");
break;
}
return;
}
}, [error]);
const handlePwdPath = () => {
navigateTo("/login");
};
const handleLogin = (evt: FormEvent<HTMLFormElement>) => {
evt.preventDefault();
sendMagicLink(email);
};
const handleInput = (evt: ChangeEvent<HTMLInputElement>) => {
const { value } = evt.target;
console.log(value);
setEmail(value);
};
const handleReset = () => {
setEmail("");
setSent(false);
};
return (
<StyledWrapper>
<div className="form">
{sent ? (
<SentTip email={email} reset={handleReset} />
) : (
<>
<div className="tips">
<img src={`${BASE_URL}/resource/organization/logo`} alt="logo" className="logo" />
<h2 className="title">Login to Rustchat</h2>
<span className="desc">Please enter your Email</span>
</div>
<form onSubmit={handleLogin}>
<Input
type="email"
className="large"
name="email"
autoFocus
value={email}
required
// pattern={`^\S+@\S+\.\S+$`}
placeholder="Enter your email"
onChange={handleInput}
/>
<Button type="submit" disabled={isLoading || !email}>
{isLoading ? "Sending" : `Continue with Email`}
</Button>
</form>
<hr className="or" />
<Button onClick={handlePwdPath}>Sign in with Password</Button>
</>
)}
</div>
</StyledWrapper>
);
}