| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import React, { Fragment } from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import dateFnsFormat from 'date-fns/format';
- import UserPicture from '../../User/UserPicture';
- import { createSubscribedElement } from '../../UnstatedUtils';
- import AppContainer from '../../../services/AppContainer';
- class UserTable extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- };
- }
- render() {
- const { t } = this.props;
- return (
- <Fragment>
- <h2>{ t('User_Management') }</h2>
- <table className="table table-default table-bordered table-user-list">
- <thead>
- <tr>
- <th width="100px">#</th>
- <th>{ t('status') }</th>
- <th><code>{ t('User') }</code></th>
- <th>{ t('Name') }</th>
- <th>{ t('Email') }</th>
- <th width="100px">{ t('Created') }</th>
- <th width="150px">{ t('Last_Login') }</th>
- <th width="70px"></th>
- </tr>
- </thead>
- <tbody>
- {this.props.users.map((user) => {
- return (
- <tr key={user._id}>
- <td>
- <UserPicture user={user} className="picture img-circle" />
- </td>
- <td>{user.admin && <span className="label label-inverse label-admin">{ t('administrator') }</span>}</td>
- <td>
- <strong>{user.username}</strong>
- </td>
- <td>{user.name}</td>
- <td>{user.email}</td>
- <td>{dateFnsFormat(new Date(user.createdAt), 'YYYY-MM-DD')}</td>
- <td>
- { user.lastLoginAt && <span>{dateFnsFormat(new Date(user.lastLoginAt), 'YYYY-MM-DD HH:mm')}</span> }
- </td>
- <td>
- <div className="btn-group admin-user-menu">
- <button type="button" className="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown">
- <i className="icon-settings"></i> <span className="caret"></span>
- </button>
- </div>
- </td>
- </tr>
- );
- })}
- </tbody>
- </table>
- </Fragment>
- );
- }
- }
- const UserTableWrapper = (props) => {
- return createSubscribedElement(UserTable, props, [AppContainer]);
- };
- UserTable.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- users: PropTypes.array.isRequired,
- };
- export default withTranslation()(UserTableWrapper);
|