| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- import React, { Fragment } from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import dateFnsFormat from 'date-fns/format';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import AppContainer from '~/client/services/AppContainer';
- class UserGroupTable extends React.Component {
- constructor(props) {
- super(props);
- this.xss = window.xss;
- this.state = {
- userGroups: this.props.userGroups,
- userGroupMap: {},
- };
- this.generateUserGroupMap = this.generateUserGroupMap.bind(this);
- this.onDelete = this.onDelete.bind(this);
- }
- componentWillMount() {
- const userGroupMap = this.generateUserGroupMap(this.props.userGroups, this.props.userGroupRelations);
- this.setState({ userGroupMap });
- }
- componentWillReceiveProps(nextProps) {
- const { userGroups, userGroupRelations } = nextProps;
- const userGroupMap = this.generateUserGroupMap(userGroups, userGroupRelations);
- this.setState({
- userGroups,
- userGroupMap,
- });
- }
- generateUserGroupMap(userGroups, userGroupRelations) {
- const userGroupMap = {};
- userGroupRelations.forEach((relation) => {
- const group = relation.relatedGroup;
- const users = userGroupMap[group] || [];
- users.push(relation.relatedUser);
- // register
- userGroupMap[group] = users;
- });
- return userGroupMap;
- }
- onDelete(e) {
- const { target } = e;
- const groupId = target.getAttribute('data-user-group-id');
- const group = this.state.userGroups.find((group) => {
- return group._id === groupId;
- });
- this.props.onDelete(group);
- }
- render() {
- const { t } = this.props;
- return (
- <Fragment>
- <h2>{t('admin:user_group_management.group_list')}</h2>
- <table className="table table-bordered table-user-list">
- <thead>
- <tr>
- <th>{t('Name')}</th>
- <th>{t('User')}</th>
- <th width="100px">{t('Created')}</th>
- <th width="70px"></th>
- </tr>
- </thead>
- <tbody>
- {this.state.userGroups.map((group) => {
- const users = this.state.userGroupMap[group._id];
- return (
- <tr key={group._id}>
- {this.props.isAclEnabled
- ? (
- <td><a href={`/admin/user-group-detail/${group._id}`}>{this.xss.process(group.name)}</a></td>
- )
- : (
- <td>{this.xss.process(group.name)}</td>
- )
- }
- <td>
- <ul className="list-inline">
- {users != null && users.map((user) => {
- return <li key={user._id} className="list-inline-item badge badge-pill badge-warning">{this.xss.process(user.username)}</li>;
- })}
- </ul>
- </td>
- <td>{dateFnsFormat(new Date(group.createdAt), 'yyyy-MM-dd')}</td>
- {this.props.isAclEnabled
- ? (
- <td>
- <div className="btn-group admin-group-menu">
- <button
- type="button"
- id={`admin-group-menu-button-${group._id}`}
- className="btn btn-outline-secondary btn-sm dropdown-toggle"
- data-toggle="dropdown"
- >
- <i className="icon-settings"></i>
- </button>
- <div className="dropdown-menu" role="menu" aria-labelledby={`admin-group-menu-button-${group._id}`}>
- <a className="dropdown-item" href={`/admin/user-group-detail/${group._id}`}>
- <i className="icon-fw icon-note"></i> {t('Edit')}
- </a>
- <button className="dropdown-item" type="button" role="button" onClick={this.onDelete} data-user-group-id={group._id}>
- <i className="icon-fw icon-fire text-danger"></i> {t('Delete')}
- </button>
- </div>
- </div>
- </td>
- )
- : (
- <td></td>
- )
- }
- </tr>
- );
- })}
- </tbody>
- </table>
- </Fragment>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const UserGroupTableWrapper = withUnstatedContainers(UserGroupTable, [AppContainer]);
- UserGroupTable.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- userGroups: PropTypes.arrayOf(PropTypes.object).isRequired,
- userGroupRelations: PropTypes.arrayOf(PropTypes.object).isRequired,
- isAclEnabled: PropTypes.bool.isRequired,
- onDelete: PropTypes.func.isRequired,
- };
- export default withTranslation()(UserGroupTableWrapper);
|