|
|
@@ -0,0 +1,80 @@
|
|
|
+import React, { Fragment } from 'react';
|
|
|
+import PropTypes from 'prop-types';
|
|
|
+import { withTranslation } from 'react-i18next';
|
|
|
+
|
|
|
+import { createSubscribedElement } from '../../UnstatedUtils';
|
|
|
+import AppContainer from '../../../services/AppContainer';
|
|
|
+import { toastSuccess, toastError } from '../../../util/apiNotification';
|
|
|
+import AdminUsersContainer from '../../../services/AdminUsersContainer';
|
|
|
+
|
|
|
+class StatusSuspendedButton extends React.Component {
|
|
|
+
|
|
|
+ constructor(props) {
|
|
|
+ super(props);
|
|
|
+
|
|
|
+ this.onClickDeactiveBtn = this.onClickDeactiveBtn.bind(this);
|
|
|
+ }
|
|
|
+
|
|
|
+ async onClickDeactiveBtn() {
|
|
|
+ const { t } = this.props;
|
|
|
+
|
|
|
+ try {
|
|
|
+ const username = await this.props.adminUsersContainer.deactivateUser(this.props.user._id);
|
|
|
+ toastSuccess(t('user_management.deactivate_user_success', { username }));
|
|
|
+ }
|
|
|
+ catch (err) {
|
|
|
+ toastError(err);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ renderSuspendedBtn() {
|
|
|
+ const { t } = this.props;
|
|
|
+
|
|
|
+ return (
|
|
|
+ <a className="px-4" onClick={() => { this.onClickDeactiveBtn() }}>
|
|
|
+ <i className="icon-fw icon-ban"></i> { t('user_management.deactivate_account') }
|
|
|
+ </a>
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ renderSuspendedAlert() {
|
|
|
+ const { t } = this.props;
|
|
|
+
|
|
|
+ return (
|
|
|
+ <div className="px-4">
|
|
|
+ <i className="icon-fw icon-ban mb-2"></i>{ t('user_management.deactivate_account') }
|
|
|
+ <p className="alert alert-danger">{ t('user_management.your_own') }</p>
|
|
|
+ </div>
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ render() {
|
|
|
+ const { user } = this.props;
|
|
|
+ const me = this.props.appContainer.me;
|
|
|
+
|
|
|
+ return (
|
|
|
+ <Fragment>
|
|
|
+ {user.username !== me ? this.renderSuspendedBtn()
|
|
|
+ : this.renderSuspendedAlert()}
|
|
|
+ </Fragment>
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * Wrapper component for using unstated
|
|
|
+ */
|
|
|
+const StatusSuspendedFormWrapper = (props) => {
|
|
|
+ return createSubscribedElement(StatusSuspendedButton, props, [AppContainer, AdminUsersContainer]);
|
|
|
+};
|
|
|
+
|
|
|
+StatusSuspendedButton.propTypes = {
|
|
|
+ t: PropTypes.func.isRequired, // i18next
|
|
|
+ appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
+ adminUsersContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
+
|
|
|
+ user: PropTypes.object.isRequired,
|
|
|
+};
|
|
|
+
|
|
|
+export default withTranslation()(StatusSuspendedFormWrapper);
|