mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.3 KiB
TypeScript
118 lines
3.3 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import { useUserStore } from "@/store/v1";
|
|
import { User } from "@/types/proto/api/v2/user_service";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
import { generateDialog } from "./Dialog";
|
|
import Icon from "./Icon";
|
|
|
|
interface Props extends DialogProps {
|
|
user: User;
|
|
}
|
|
|
|
const ChangeMemberPasswordDialog: React.FC<Props> = (props: Props) => {
|
|
const { user, destroy } = props;
|
|
const t = useTranslate();
|
|
const userStore = useUserStore();
|
|
const [newPassword, setNewPassword] = useState("");
|
|
const [newPasswordAgain, setNewPasswordAgain] = useState("");
|
|
|
|
useEffect(() => {
|
|
// do nth
|
|
}, []);
|
|
|
|
const handleCloseBtnClick = () => {
|
|
destroy();
|
|
};
|
|
|
|
const handleNewPasswordChanged = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const text = e.target.value as string;
|
|
setNewPassword(text);
|
|
};
|
|
|
|
const handleNewPasswordAgainChanged = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const text = e.target.value as string;
|
|
setNewPasswordAgain(text);
|
|
};
|
|
|
|
const handleSaveBtnClick = async () => {
|
|
if (newPassword === "" || newPasswordAgain === "") {
|
|
toast.error(t("message.fill-all"));
|
|
return;
|
|
}
|
|
|
|
if (newPassword !== newPasswordAgain) {
|
|
toast.error(t("message.new-password-not-match"));
|
|
setNewPasswordAgain("");
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await userStore.updateUser(
|
|
{
|
|
name: user.name,
|
|
password: newPassword,
|
|
},
|
|
["password"]
|
|
);
|
|
toast(t("message.password-changed"));
|
|
handleCloseBtnClick();
|
|
} catch (error: any) {
|
|
console.error(error);
|
|
toast.error(error.response.data.message);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="dialog-header-container !w-64">
|
|
<p className="title-text">
|
|
{t("setting.account-section.change-password")} ({user.nickname})
|
|
</p>
|
|
<button className="btn close-btn" onClick={handleCloseBtnClick}>
|
|
<Icon.X />
|
|
</button>
|
|
</div>
|
|
<div className="dialog-content-container">
|
|
<p className="text-sm mb-1">{t("auth.new-password")}</p>
|
|
<input
|
|
type="password"
|
|
className="input-text"
|
|
placeholder={t("auth.new-password")}
|
|
value={newPassword}
|
|
onChange={handleNewPasswordChanged}
|
|
/>
|
|
<p className="text-sm mb-1 mt-2">{t("auth.repeat-new-password")}</p>
|
|
<input
|
|
type="password"
|
|
className="input-text"
|
|
placeholder={t("auth.repeat-new-password")}
|
|
value={newPasswordAgain}
|
|
onChange={handleNewPasswordAgainChanged}
|
|
/>
|
|
<div className="mt-4 w-full flex flex-row justify-end items-center space-x-2">
|
|
<span className="btn-text" onClick={handleCloseBtnClick}>
|
|
{t("common.cancel")}
|
|
</span>
|
|
<span className="btn-primary" onClick={handleSaveBtnClick}>
|
|
{t("common.save")}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
function showChangeMemberPasswordDialog(user: User) {
|
|
generateDialog(
|
|
{
|
|
className: "change-member-password-dialog",
|
|
dialogName: "change-member-password-dialog",
|
|
},
|
|
ChangeMemberPasswordDialog,
|
|
{ user }
|
|
);
|
|
}
|
|
|
|
export default showChangeMemberPasswordDialog;
|