| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import React from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import AdminUsersContainer from '~/client/services/AdminUsersContainer';
- import { toastError, toastSuccess } from '~/client/util/toastr';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- class UserRemoveButton extends React.Component {
- constructor(props) {
- super(props);
- this.onClickDeleteBtn = this.onClickDeleteBtn.bind(this);
- }
- async onClickDeleteBtn() {
- const { t } = this.props;
- try {
- await this.props.adminUsersContainer.removeUser(this.props.user._id);
- const { username } = this.props.user;
- toastSuccess(t('toaster.remove_user_success', { username }));
- } catch (err) {
- toastError(err);
- }
- }
- render() {
- const { t } = this.props;
- return (
- <button
- className="dropdown-item"
- type="button"
- onClick={() => {
- this.onClickDeleteBtn();
- }}
- >
- <span className="material-symbols-outlined text-danger">
- delete_forever
- </span>{' '}
- {t('Delete')}
- </button>
- );
- }
- }
- UserRemoveButton.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- adminUsersContainer: PropTypes.instanceOf(AdminUsersContainer).isRequired,
- user: PropTypes.object.isRequired,
- };
- const UserRemoveButtonWrapperFC = (props) => {
- const { t } = useTranslation('admin');
- return <UserRemoveButton t={t} {...props} />;
- };
- /**
- * Wrapper component for using unstated
- * @type {React.ComponentType<{ user: import('@growi/core').IUserHasId }>}
- */
- const UserRemoveButtonWrapper = withUnstatedContainers(
- UserRemoveButtonWrapperFC,
- [AdminUsersContainer],
- );
- export default UserRemoveButtonWrapper;
|