Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | import { useMutation } from "@tanstack/react-query";
import Alert from "components/Alert";
import Button from "components/Button";
import HtmlMeta from "components/HtmlMeta";
import PageTitle from "components/PageTitle";
import { RpcError } from "grpc-web";
import { useTranslation } from "i18n";
import { AUTH, GLOBAL } from "i18n/namespaces";
import { useRouter } from "next/router";
import { service } from "service";
import stringOrFirstString from "utils/stringOrFirstString";
interface RecoverAccountParams {
token?: string;
}
export default function RecoverAccount() {
const { t } = useTranslation([AUTH, GLOBAL]);
const router = useRouter();
const token = stringOrFirstString(router.query.token);
const { error, isPending, isSuccess, mutate } = useMutation<
void,
RpcError,
RecoverAccountParams
>({
mutationFn: async ({ token }) => {
Iif (token === undefined) {
throw Error(t("auth:delete_account.missing_token"));
}
return await service.auth.recoverAccount(token);
},
});
return (
<>
<HtmlMeta title={t("auth:delete_account.recover.title")} />
<PageTitle>{t("auth:delete_account.recover.title")}</PageTitle>
{error && (
<Alert severity="error">
{t("auth:delete_account.recover.error_message", {
message: error.message,
})}
</Alert>
)}
{isSuccess && (
<Alert severity="success">
{t("auth:delete_account.recover.success")}
</Alert>
)}
<Button onClick={() => mutate({ token })} loading={isPending}>
{t("auth:delete_account.recover.button_text")}
</Button>
</>
);
}
|