// @flow 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(); const { auth } = useStores(); const { showToast } = useToasts(); const { t } = useTranslation(); const handleSubmit = React.useCallback( async (ev: SyntheticEvent<>) => { ev.preventDefault(); setIsDeleting(true); try { await auth.deleteUser(); auth.logout(); } catch (error) { showToast(error.message, { type: "error" }); } finally { setIsDeleting(false); } }, [auth, showToast] ); return (
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. }} />
); } export default observer(UserDelete);