24448c7504
https://github.com/outline/outline/blob/master/app/scenes/UserDelete.js#L40: corrected "destory" to "destroy" https://github.com/outline/outline/blob/master/app/components/ScrollToTop.js#L16: corrected "postion" to "position" https://github.com/outline/outline/blob/master/server/policies/document.js#L11: corrected "existance" to "existence" https://github.com/outline/outline/blob/master/server/policies/document.js#L23: corrected "existance" to "existence" https://github.com/outline/outline/blob/master/server/models/Document.js#L493: corrected "permanantly" to "permanently" https://github.com/outline/outline/blob/master/shared/utils/domains.js#L12: corrected "unneccessarily" to "unnecessarily" https://github.com/outline/outline/blob/master/server/api/documents.js#L34: corrected "compatablity" to "compatibility"
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
// @flow
|
|
import * as React from "react";
|
|
import { observable } from "mobx";
|
|
import { inject, observer } from "mobx-react";
|
|
import Button from "components/Button";
|
|
import Flex from "components/Flex";
|
|
import HelpText from "components/HelpText";
|
|
import Modal from "components/Modal";
|
|
import AuthStore from "stores/AuthStore";
|
|
|
|
type Props = {
|
|
auth: AuthStore,
|
|
onRequestClose: () => void,
|
|
};
|
|
|
|
@observer
|
|
class UserDelete extends React.Component<Props> {
|
|
@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 (
|
|
<Modal isOpen title="Delete Account" {...rest}>
|
|
<Flex column>
|
|
<form onSubmit={this.handleSubmit}>
|
|
<HelpText>
|
|
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.
|
|
</HelpText>
|
|
<HelpText>
|
|
<strong>Note:</strong> Signing back in will cause a new account to
|
|
be automatically reprovisioned.
|
|
</HelpText>
|
|
<Button type="submit" danger>
|
|
{this.isDeleting ? "Deleting…" : "Delete My Account"}
|
|
</Button>
|
|
</form>
|
|
</Flex>
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default inject("auth")(UserDelete);
|