mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
162 lines
5.1 KiB
TypeScript
162 lines
5.1 KiB
TypeScript
import { useEffect, useState } from "react";
|
||
import * as api from "../helpers/api";
|
||
import { validate, ValidatorConfig } from "../helpers/validator";
|
||
import useLoading from "../hooks/useLoading";
|
||
import { locationService, userService } from "../services";
|
||
import toastHelper from "../components/Toast";
|
||
import "../less/signin.less";
|
||
|
||
interface Props {}
|
||
|
||
const validateConfig: ValidatorConfig = {
|
||
minLength: 4,
|
||
maxLength: 24,
|
||
noSpace: true,
|
||
noChinese: true,
|
||
};
|
||
|
||
const Signin: React.FC<Props> = () => {
|
||
const pageLoadingState = useLoading(true);
|
||
const [siteOwner, setSiteOwner] = useState<User>();
|
||
const [email, setEmail] = useState("");
|
||
const [password, setPassword] = useState("");
|
||
const actionBtnLoadingState = useLoading(false);
|
||
|
||
useEffect(() => {
|
||
api.getSystemStatus().then(({ data }) => {
|
||
const { data: status } = data;
|
||
setSiteOwner(status.owner);
|
||
if (status.profile.mode === "dev") {
|
||
setEmail("demo@usememos.com");
|
||
setPassword("secret");
|
||
}
|
||
pageLoadingState.setFinish();
|
||
});
|
||
}, []);
|
||
|
||
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) {
|
||
locationService.replaceHistory("/");
|
||
} else {
|
||
toastHelper.error("😟 Login failed");
|
||
}
|
||
} catch (error: any) {
|
||
console.error(error);
|
||
toastHelper.error("😟 " + error.message);
|
||
}
|
||
actionBtnLoadingState.setFinish();
|
||
};
|
||
|
||
const handleSignUpAsOwnerBtnsClick = 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, "OWNER");
|
||
const user = await userService.doSignIn();
|
||
if (user) {
|
||
locationService.replaceHistory("/");
|
||
} else {
|
||
toastHelper.error("😟 Signup failed");
|
||
}
|
||
} catch (error: any) {
|
||
console.error(error);
|
||
toastHelper.error("😟 " + error.message);
|
||
}
|
||
actionBtnLoadingState.setFinish();
|
||
};
|
||
|
||
return (
|
||
<div className="page-wrapper signin">
|
||
<div className="page-container">
|
||
<div className="page-header-container">
|
||
<p className="title-text">
|
||
<span className="icon-text">✍️</span> Memos
|
||
</p>
|
||
<p className="slogan-text">
|
||
An <i>open source</i>, <i>self-hosted</i> knowledge base that works with a SQLite db file.
|
||
</p>
|
||
</div>
|
||
<div className={`page-content-container ${actionBtnLoadingState.isLoading ? "requesting" : ""}`}>
|
||
<div className="form-item-container input-form-container">
|
||
<span className={`normal-text ${email ? "not-null" : ""}`}>Email</span>
|
||
<input type="email" value={email} onChange={handleEmailInputChanged} />
|
||
</div>
|
||
<div className="form-item-container input-form-container">
|
||
<span className={`normal-text ${password ? "not-null" : ""}`}>Password</span>
|
||
<input type="password" value={password} onChange={handlePasswordInputChanged} />
|
||
</div>
|
||
</div>
|
||
<div className="action-btns-container">
|
||
{siteOwner || pageLoadingState.isLoading ? (
|
||
<button
|
||
className={`btn signin-btn ${actionBtnLoadingState.isLoading ? "requesting" : ""}`}
|
||
onClick={() => handleSigninBtnsClick()}
|
||
>
|
||
Sign in
|
||
</button>
|
||
) : (
|
||
<button
|
||
className={`btn signin-btn ${actionBtnLoadingState.isLoading ? "requesting" : ""}`}
|
||
onClick={() => handleSignUpAsOwnerBtnsClick()}
|
||
>
|
||
Sign up as Owner
|
||
</button>
|
||
)}
|
||
</div>
|
||
<p className={`tip-text ${siteOwner || pageLoadingState.isLoading ? "" : "owner-tip"}`}>
|
||
{siteOwner || pageLoadingState.isLoading
|
||
? "If you don't have an account, please\ncontact the site owner."
|
||
: "You are registering as the Site Owner."}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default Signin;
|