File size: 4,627 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
// @flow
import * as React from 'react';
import { connect } from 'react-redux';
import compose from 'recompose/compose';
import { addToastWithTimeout } from 'src/actions/toasts';
import {
SectionCard,
SectionTitle,
SectionSubtitle,
SectionCardFooter,
} from 'src/components/settingsViews/style';
import { Notice } from 'src/components/listItems/style';
import {
getCurrentUserCommunityConnection,
type GetUserCommunityConnectionType,
} from 'shared/graphql/queries/user/getUserCommunityConnection';
import viewNetworkHandler from 'src/components/viewNetworkHandler';
import {
HoverWarnOutlineButton,
WarnButton,
OutlineButton,
} from 'src/components/button';
import deleteCurrentUserMutation from 'shared/graphql/mutations/user/deleteCurrentUser';
import { SERVER_URL } from 'src/api/constants';
import { Loading } from 'src/components/loading';
import type { Dispatch } from 'redux';
type State = {
isLoading: boolean,
deleteInited: boolean,
ownsCommunities: boolean,
};
type Props = {
isLoading: boolean,
deleteCurrentUser: Function,
dispatch: Dispatch<Object>,
data: {
user: GetUserCommunityConnectionType,
},
};
class DeleteAccountForm extends React.Component<Props, State> {
state = {
isLoading: false,
deleteInited: false,
ownsCommunities: false,
};
componentDidUpdate(prevProps) {
const curr = this.props;
if (!prevProps.data.user && curr.data.user && curr.data.user.id) {
if (curr.data.user && curr.data.user.communityConnection) {
return this.setState({
ownsCommunities: curr.data.user.communityConnection.edges.some(
c => c && c.node.communityPermissions.isOwner
),
});
}
}
}
initDelete = () => {
this.setState({ deleteInited: true });
};
cancelDelete = () => this.setState({ deleteInited: false });
confirmDelete = () => {
this.setState({
isLoading: true,
});
this.props
.deleteCurrentUser()
.then(() =>
this.props.dispatch(addToastWithTimeout('success', 'Account deleted'))
)
.then(() => (window.location.href = `${SERVER_URL}/auth/logout`))
.catch(err =>
this.props.dispatch(addToastWithTimeout('error', err.message))
);
};
render() {
const { isLoading, ownsCommunities, deleteInited } = this.state;
const {
data: { user },
} = this.props;
if (user) {
return (
<SectionCard data-cy="delete-account-container">
<SectionTitle>Delete my account</SectionTitle>
<SectionSubtitle>
You can delete your account at any time.{' '}
</SectionSubtitle>
{ownsCommunities && (
<Notice data-cy="owns-communities-notice">
You currently own communities on Spectrum. When your account is
deleted these communities will not be deleted. Spectrum reserves
the right to manage your communities after your account is
deleted.
</Notice>
)}
<SectionCardFooter>
{deleteInited ? (
<div
style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'flex-end',
}}
>
{!isLoading && (
<OutlineButton
data-cy="delete-account-cancel-button"
onClick={this.cancelDelete}
style={{ marginBottom: '16px', alignSelf: 'stretch' }}
>
Cancel
</OutlineButton>
)}
<WarnButton
data-cy="delete-account-confirm-button"
loading={isLoading}
onClick={this.confirmDelete}
>
{isLoading ? 'Deleting...' : 'Confirm and delete my account'}
</WarnButton>
</div>
) : (
<HoverWarnOutlineButton
data-cy="delete-account-init-button"
color={'warn.default'}
onClick={this.initDelete}
>
Delete my account
</HoverWarnOutlineButton>
)}
</SectionCardFooter>
</SectionCard>
);
}
if (this.props.isLoading) {
return (
<SectionCard>
<Loading />
</SectionCard>
);
}
return null;
}
}
export default compose(
connect(),
deleteCurrentUserMutation,
getCurrentUserCommunityConnection,
viewNetworkHandler
)(DeleteAccountForm);
|