// @flow import { observable } from "mobx"; import { inject, observer } from "mobx-react"; import * as React from "react"; import AuthStore from "stores/AuthStore"; import Button from "components/Button"; import Flex from "components/Flex"; import HelpText from "components/HelpText"; import Modal from "components/Modal"; type Props = { auth: AuthStore, onRequestClose: () => void, }; @observer class UserDelete extends React.Component { @observable isDeleting: boolean; handleSubmit = async (ev: SyntheticEvent<>) => { ev.preventDefault(); this.isDeleting = true; try { await this.props.auth.deleteUser(); this.props.auth.logout(); } finally { this.isDeleting = false; } }; render() { const { auth, ...rest } = this.props; 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. Note: Signing back in will cause a new account to be automatically reprovisioned.
); } } export default inject("auth")(UserDelete);