This PR moves the entire project to Typescript. Due to the ~1000 ignores this will lead to a messy codebase for a while, but the churn is worth it – all of those ignore comments are places that were never type-safe previously. closes #1282
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useTranslation, Trans } from "react-i18next";
|
|
import Button from "~/components/Button";
|
|
import Flex from "~/components/Flex";
|
|
import HelpText from "~/components/HelpText";
|
|
import Modal from "~/components/Modal";
|
|
import useStores from "~/hooks/useStores";
|
|
import useToasts from "~/hooks/useToasts";
|
|
|
|
type Props = {
|
|
onRequestClose: () => void;
|
|
};
|
|
|
|
function UserDelete({ onRequestClose }: Props) {
|
|
const [isDeleting, setIsDeleting] = React.useState(false);
|
|
const { auth } = useStores();
|
|
const { showToast } = useToasts();
|
|
const { t } = useTranslation();
|
|
|
|
const handleSubmit = React.useCallback(
|
|
async (ev: React.SyntheticEvent) => {
|
|
ev.preventDefault();
|
|
setIsDeleting(true);
|
|
|
|
try {
|
|
await auth.deleteUser();
|
|
auth.logout();
|
|
} catch (error) {
|
|
showToast(error.message, {
|
|
type: "error",
|
|
});
|
|
} finally {
|
|
setIsDeleting(false);
|
|
}
|
|
},
|
|
[auth, showToast]
|
|
);
|
|
|
|
return (
|
|
<Modal isOpen title={t("Delete Account")} onRequestClose={onRequestClose}>
|
|
<Flex column>
|
|
<form onSubmit={handleSubmit}>
|
|
<HelpText>
|
|
<Trans>
|
|
Are you sure? Deleting your account will destroy identifying data
|
|
associated with your user and cannot be undone. You will be
|
|
immediately logged out of Outline and all your API tokens will be
|
|
revoked.
|
|
</Trans>
|
|
</HelpText>
|
|
<HelpText>
|
|
<Trans
|
|
defaults="<em>Note:</em> Signing back in will cause a new account to be automatically reprovisioned."
|
|
components={{
|
|
em: <strong />,
|
|
}}
|
|
/>
|
|
</HelpText>
|
|
<Button type="submit" danger>
|
|
{isDeleting ? `${t("Deleting")}…` : t("Delete My Account")}
|
|
</Button>
|
|
</form>
|
|
</Flex>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
export default observer(UserDelete);
|