| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import React, { Fragment } from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import AppContainer from '~/client/services/AppContainer';
- import { toastSuccess, toastError } from '~/client/util/apiNotification';
- import AdminUsersContainer from '~/client/services/AdminUsersContainer';
- class RemoveAdminButton extends React.Component {
- constructor(props) {
- super(props);
- this.onClickRemoveAdminBtn = this.onClickRemoveAdminBtn.bind(this);
- }
- async onClickRemoveAdminBtn() {
- const { t } = this.props;
- try {
- const username = await this.props.adminUsersContainer.removeUserAdmin(this.props.user._id);
- toastSuccess(t('toaster.remove_user_admin', { username }));
- }
- catch (err) {
- toastError(err);
- }
- }
- renderRemoveAdminBtn() {
- const { t } = this.props;
- return (
- <button className="dropdown-item" type="button" onClick={() => { this.onClickRemoveAdminBtn() }}>
- <i className="icon-fw icon-user-unfollow"></i> {t('admin:user_management.user_table.remove_admin_access')}
- </button>
- );
- }
- renderRemoveAdminAlert() {
- const { t } = this.props;
- return (
- <div className="px-4">
- <i className="icon-fw icon-user-unfollow mb-2"></i>{t('admin:user_management.user_table.remove_admin_access')}
- <p className="alert alert-danger">{t('admin:user_management.user_table.cannot_remove')}</p>
- </div>
- );
- }
- render() {
- const { user } = this.props;
- const { currentUsername } = this.props.appContainer;
- return (
- <Fragment>
- {user.username !== currentUsername ? this.renderRemoveAdminBtn()
- : this.renderRemoveAdminAlert()}
- </Fragment>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const RemoveAdminButtonWrapper = withUnstatedContainers(RemoveAdminButton, [AppContainer, AdminUsersContainer]);
- RemoveAdminButton.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- adminUsersContainer: PropTypes.instanceOf(AdminUsersContainer).isRequired,
- user: PropTypes.object.isRequired,
- };
- export default withTranslation()(RemoveAdminButtonWrapper);
|