Cleanup unneccessary folders.

Add delete account modal
This commit is contained in:
Tom Moor
2018-07-07 17:45:24 -05:00
parent 465f819c45
commit f9cbd425cb
27 changed files with 48 additions and 39 deletions

View File

@@ -1,3 +0,0 @@
// @flow
import Collection from './Collection';
export default Collection;

View File

@@ -1,3 +0,0 @@
// @flow
import CollectionDelete from './CollectionDelete';
export default CollectionDelete;

View File

@@ -1,3 +0,0 @@
// @flow
import CollectionEdit from './CollectionEdit';
export default CollectionEdit;

View File

@@ -1,3 +0,0 @@
// @flow
import CollectionExport from './CollectionExport';
export default CollectionExport;

View File

@@ -1,3 +0,0 @@
// @flow
import CollectionNew from './CollectionNew';
export default CollectionNew;

View File

@@ -1,3 +0,0 @@
// @flow
import Dashboard from './Dashboard';
export default Dashboard;

View File

@@ -1,3 +0,0 @@
// @flow
import DocumentDelete from './DocumentDelete';
export default DocumentDelete;

View File

@@ -1,3 +0,0 @@
// @flow
import DocumentShare from './DocumentShare';
export default DocumentShare;

View File

@@ -1,3 +0,0 @@
// @flow
import Drafts from './Drafts';
export default Drafts;

View File

@@ -1,3 +0,0 @@
// @flow
import ErrorSuspended from './ErrorSuspended';
export default ErrorSuspended;

View File

@@ -1,3 +0,0 @@
// @flow
import Home from './Home';
export default Home;

View File

@@ -1,3 +0,0 @@
// @flow
import KeyboardShortcuts from './KeyboardShortcuts';
export default KeyboardShortcuts;

View File

@@ -1,3 +0,0 @@
// @flow
import Starred from './Starred';
export default Starred;

48
app/scenes/UserDelete.js Normal file
View File

@@ -0,0 +1,48 @@
// @flow
import * as React from 'react';
import { observable } from 'mobx';
import { inject, observer } from 'mobx-react';
import Button from 'components/Button';
import Flex from 'shared/components/Flex';
import HelpText from 'components/HelpText';
import AuthStore from 'stores/AuthStore';
type Props = {
auth: AuthStore,
};
@observer
class UserDelete extends React.Component<Props> {
@observable isDeleting: boolean;
handleSubmit = async (ev: SyntheticEvent<*>) => {
ev.preventDefault();
this.isDeleting = true;
const success = await this.props.auth.delete();
if (success) {
this.props.auth.logout();
}
this.isDeleting = false;
};
render() {
return (
<Flex column>
<form onSubmit={this.handleSubmit}>
<HelpText>
Are you sure? Deleting your account will destory identifying data
associated with your user and cannot be undone. You will be
immediately logged out of Outline.
</HelpText>
<Button type="submit" danger>
{this.isDeleting ? 'Deleting…' : 'Delete'}
</Button>
</form>
</Flex>
);
}
}
export default inject('auth')(UserDelete);