mirror of
https://github.com/usememos/memos.git
synced 2025-04-03 20:31:10 +02:00
* #1952 Fix incorrect localization key for sign-up failure message * feat: add typeScript support to enforce valid translation keys * feat: add typeScript support to enforce valid translation keys * fix lint errors * fix lint error
116 lines
3.4 KiB
TypeScript
116 lines
3.4 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import { useTranslate } from "@/utils/i18n";
|
|
import { useGlobalStore, useUserStore } from "@/store/module";
|
|
import Icon from "./Icon";
|
|
import { generateDialog } from "./Dialog";
|
|
|
|
type Props = DialogProps;
|
|
|
|
const ChangePasswordDialog: React.FC<Props> = ({ destroy }: Props) => {
|
|
const t = useTranslate();
|
|
const userStore = useUserStore();
|
|
const globalStore = useGlobalStore();
|
|
const profile = globalStore.state.systemStatus.profile;
|
|
const [newPassword, setNewPassword] = useState("");
|
|
const [newPasswordAgain, setNewPasswordAgain] = useState("");
|
|
|
|
useEffect(() => {
|
|
if (profile.mode === "demo" && userStore.state.user?.id === userStore.state.host?.id) {
|
|
toast.error("Demo mode does not support this operation.");
|
|
destroy();
|
|
}
|
|
}, []);
|
|
|
|
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 {
|
|
const user = userStore.getState().user as User;
|
|
await userStore.patchUser({
|
|
id: user.id,
|
|
password: newPassword,
|
|
});
|
|
toast.success(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")}</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"
|
|
autoComplete="new-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"
|
|
autoComplete="new-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 showChangePasswordDialog() {
|
|
generateDialog(
|
|
{
|
|
className: "change-password-dialog",
|
|
dialogName: "change-password-dialog",
|
|
},
|
|
ChangePasswordDialog
|
|
);
|
|
}
|
|
|
|
export default showChangePasswordDialog;
|