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 59 60 61 62 63 64 | 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 { useMutation } from "react-query"; import { logoutRoute } from "routes"; import { service } from "service"; import stringOrFirstString from "utils/stringOrFirstString"; export interface ConfirmDeleteAccountParams { token?: string; } export default function ConfirmDeleteAccount() { const { t } = useTranslation([AUTH, GLOBAL]); const router = useRouter(); const token = stringOrFirstString(router.query.token); const { error, isLoading, isSuccess, mutate } = useMutation< void, RpcError, ConfirmDeleteAccountParams >( async ({ token }) => { Iif (token === undefined) { throw Error(t("auth:delete_account.missing_token")); } return await service.auth.confirmDeleteAccount(token); }, { onSuccess: () => { router.push(logoutRoute); }, } ); return ( <> <HtmlMeta title={t("auth:delete_account.confirm.title")} /> <PageTitle>{t("auth:delete_account.confirm.title")}</PageTitle> {error && ( <Alert severity="error"> {t("auth:delete_account.confirm.error_message", { message: error.message, })} </Alert> )} {isSuccess && ( <Alert severity="success"> {t("auth:delete_account.confirm.account_deleted")} </Alert> )} <Button onClick={() => mutate({ token })} loading={isLoading}> {t("auth:delete_account.confirm.button_text")} </Button> </> ); } |