mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 17:38:00 +08:00
95 lines
2.8 KiB
JavaScript
95 lines
2.8 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import moment from 'moment';
|
|
import { Button } from 'plugin-api/beta/client/components/ui';
|
|
import DeleteMyAccountDialog from './DeleteMyAccountDialog';
|
|
import { getErrorMessages } from 'coral-framework/utils';
|
|
import { t } from 'plugin-api/beta/client/services';
|
|
|
|
const initialState = { showDialog: false };
|
|
|
|
class DeleteMyAccount extends React.Component {
|
|
state = initialState;
|
|
|
|
showDialog = () => {
|
|
this.setState({
|
|
showDialog: true,
|
|
});
|
|
};
|
|
|
|
closeDialog = () => {
|
|
this.setState({
|
|
showDialog: false,
|
|
});
|
|
};
|
|
|
|
cancelAccountDeletion = async () => {
|
|
const { cancelAccountDeletion, notify } = this.props;
|
|
try {
|
|
await cancelAccountDeletion();
|
|
notify('success', t('delete_request.account_deletion_cancelled'));
|
|
} catch (err) {
|
|
notify('error', getErrorMessages(err));
|
|
}
|
|
};
|
|
|
|
requestAccountDeletion = async () => {
|
|
const { requestAccountDeletion, notify } = this.props;
|
|
try {
|
|
await requestAccountDeletion();
|
|
notify('success', t('delete_request.account_deletion_requested'));
|
|
} catch (err) {
|
|
notify('error', getErrorMessages(err));
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
me: { scheduledDeletionDate },
|
|
settings: { organizationContactEmail },
|
|
} = this.props.root;
|
|
return (
|
|
<div className="talk-plugin-auth--delete-my-account">
|
|
<DeleteMyAccountDialog
|
|
requestAccountDeletion={this.requestAccountDeletion}
|
|
showDialog={this.state.showDialog}
|
|
closeDialog={this.closeDialog}
|
|
scheduledDeletionDate={scheduledDeletionDate}
|
|
organizationContactEmail={organizationContactEmail}
|
|
/>
|
|
<h3 className="talk-plugin-auth--delete-my-account-description">
|
|
{t('delete_request.delete_my_account')}
|
|
</h3>
|
|
<p className="talk-plugin-auth--delete-my-account-description">
|
|
{t('delete_request.delete_my_account_description')}
|
|
</p>
|
|
<p className="talk-plugin-auth--delete-my-account-description">
|
|
{scheduledDeletionDate &&
|
|
t(
|
|
'delete_request.already_submitted_request_description',
|
|
moment(scheduledDeletionDate).format('MMM Do YYYY, h:mm:ss a')
|
|
)}
|
|
</p>
|
|
{scheduledDeletionDate ? (
|
|
<Button onClick={this.cancelAccountDeletion}>
|
|
{t('delete_request.cancel_account_deletion_request')}
|
|
</Button>
|
|
) : (
|
|
<Button icon="delete" onClick={this.showDialog}>
|
|
{t('delete_request.delete_my_account')}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
DeleteMyAccount.propTypes = {
|
|
requestAccountDeletion: PropTypes.func.isRequired,
|
|
cancelAccountDeletion: PropTypes.func.isRequired,
|
|
notify: PropTypes.func.isRequired,
|
|
root: PropTypes.object.isRequired,
|
|
};
|
|
|
|
export default DeleteMyAccount;
|