| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- import React, { Fragment } from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import PaginationWrapper from '../PaginationWrapper';
- import { withUnstatedContainers } from '../UnstatedUtils';
- import { toastError } from '~/client/util/apiNotification';
- import AppContainer from '~/client/services/AppContainer';
- import AdminUsersContainer from '~/client/services/AdminUsersContainer';
- import PasswordResetModal from './Users/PasswordResetModal';
- import InviteUserControl from './Users/InviteUserControl';
- import UserTable from './Users/UserTable';
- class UserManagement extends React.Component {
- constructor(props) {
- super();
- this.state = {
- isNotifyCommentShow: false,
- };
- this.handlePage = this.handlePage.bind(this);
- this.handleChangeSearchText = this.handleChangeSearchText.bind(this);
- }
- componentWillMount() {
- this.handlePage(1);
- }
- async handlePage(selectedPage) {
- try {
- await this.props.adminUsersContainer.retrieveUsersByPagingNum(selectedPage);
- }
- catch (err) {
- toastError(err);
- }
- }
- /**
- * For checking same check box twice
- * @param {string} statusType
- */
- async handleClick(statusType) {
- const { adminUsersContainer } = this.props;
- if (!this.validateToggleStatus(statusType)) {
- return this.setState({ isNotifyCommentShow: true });
- }
- if (this.state.isNotifyCommentShow) {
- await this.setState({ isNotifyCommentShow: false });
- }
- adminUsersContainer.handleClick(statusType);
- }
- /**
- * Workaround user status check box
- * @param {string} statusType
- */
- validateToggleStatus(statusType) {
- if (this.props.adminUsersContainer.isSelected(statusType)) {
- return this.props.adminUsersContainer.state.selectedStatusList.size > 1;
- }
- return true;
- }
- /**
- * Reset button
- */
- resetButtonClickHandler() {
- const { adminUsersContainer } = this.props;
- try {
- adminUsersContainer.resetAllChanges();
- this.searchUserElement.value = '';
- this.state.isNotifyCommentShow = false;
- }
- catch (err) {
- toastError(err);
- }
- }
- /**
- * Workaround increamental search
- * @param {string} event
- */
- handleChangeSearchText(event) {
- this.props.adminUsersContainer.handleChangeSearchText(event.target.value);
- }
- renderCheckbox(status, statusLabel, statusColor) {
- return (
- <div className={`custom-control custom-checkbox custom-checkbox-${statusColor} mr-2`}>
- <input
- className="custom-control-input"
- type="checkbox"
- id={`c_${status}`}
- checked={this.props.adminUsersContainer.isSelected(status)}
- onChange={() => { this.handleClick(status) }}
- />
- <label className="custom-control-label" htmlFor={`c_${status}`}>
- <span className={`badge badge-pill badge-${statusColor} d-inline-block vt mt-1`}>
- {statusLabel}
- </span>
- </label>
- </div>
- );
- }
- render() {
- const { t, adminUsersContainer } = this.props;
- const pager = (
- <div className="my-3">
- <PaginationWrapper
- activePage={adminUsersContainer.state.activePage}
- changePage={this.handlePage}
- totalItemsCount={adminUsersContainer.state.totalUsers}
- pagingLimit={adminUsersContainer.state.pagingLimit}
- align="center"
- size="sm"
- />
- </div>
- );
- const clearButton = (
- adminUsersContainer.state.searchText.length > 0
- ? (
- <i
- className="icon-close search-clear"
- onClick={() => {
- adminUsersContainer.clearSearchText();
- this.searchUserElement.value = '';
- }}
- />
- )
- : ''
- );
- return (
- <div data-testid="admin-users">
- {adminUsersContainer.state.userForPasswordResetModal != null
- && (
- <PasswordResetModal
- isOpen={adminUsersContainer.state.isPasswordResetModalShown}
- onClose={adminUsersContainer.hidePasswordResetModal}
- userForPasswordResetModal={adminUsersContainer.state.userForPasswordResetModal}
- />
- )}
- <p>
- <InviteUserControl />
- <a className="btn btn-outline-secondary ml-2" href="/admin/users/external-accounts" role="button">
- <i className="icon-user-follow" aria-hidden="true"></i>
- {t('admin:user_management.external_account')}
- </a>
- </p>
- <h2>{t('User_Management')}</h2>
- <div className="border-top border-bottom">
- <div className="row d-flex justify-content-start align-items-center my-2">
- <div className="col-md-3 d-flex align-items-center my-2">
- <i className="icon-magnifier mr-1"></i>
- <span className="search-typeahead">
- <input
- className="w-100"
- type="text"
- ref={(searchUserElement) => { this.searchUserElement = searchUserElement }}
- onChange={this.handleChangeSearchText}
- />
- { clearButton }
- </span>
- </div>
- <div className="offset-md-1 col-md-6 my-2">
- <div className="form-inline">
- {this.renderCheckbox('all', 'All', 'secondary')}
- {this.renderCheckbox('registered', 'Approval Pending', 'info')}
- {this.renderCheckbox('active', 'Active', 'success')}
- {this.renderCheckbox('suspended', 'Suspended', 'warning')}
- {this.renderCheckbox('invited', 'Invited', 'pink')}
- </div>
- <div>
- {
- this.state.isNotifyCommentShow
- && <span className="text-warning">{t('admin:user_management.click_twice_same_checkbox')}</span>
- }
- </div>
- </div>
- <div className="col-md-2 my-2">
- <button
- type="button"
- className="btn btn-outline-secondary btn-sm"
- onClick={() => { this.resetButtonClickHandler() }}
- >
- <span
- className="icon-refresh mr-1"
- >
- </span>
- Reset
- </button>
- </div>
- </div>
- </div>
- {pager}
- <UserTable />
- {pager}
- </div>
- );
- }
- }
- UserManagement.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- adminUsersContainer: PropTypes.instanceOf(AdminUsersContainer).isRequired,
- };
- const UserManagementWrapper = withUnstatedContainers(UserManagement, [AppContainer, AdminUsersContainer]);
- export default withTranslation()(UserManagementWrapper);
|