| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import React from 'react';
- import { UserPicture } from '@growi/ui/dist/components';
- import dateFnsFormat from 'date-fns/format';
- import { useTranslation } from 'next-i18next';
- import type { IUserGroupRelationHasIdPopulatedUser } from '~/interfaces/user-group-response';
- type Props = {
- userGroupRelations: IUserGroupRelationHasIdPopulatedUser[] | undefined,
- onClickRemoveUserBtn: (username: string) => Promise<void>,
- onClickPlusBtn: () => void,
- }
- export const UserGroupUserTable = (props: Props): JSX.Element => {
- const { t } = useTranslation('admin');
- const {
- userGroupRelations, onClickRemoveUserBtn, onClickPlusBtn,
- } = props;
- return (
- <table className="table table-bordered table-user-list">
- <thead>
- <tr>
- <th style={{ width: '100px' }}>#</th>
- <th>
- {t('username')}
- </th>
- <th>{t('Name')}</th>
- <th style={{ width: '100px' }}>{t('Created')}</th>
- <th style={{ width: '160px' }}>{t('last_login')}</th>
- <th style={{ width: '70px' }}></th>
- </tr>
- </thead>
- <tbody>
- {userGroupRelations != null && userGroupRelations.map((relation) => {
- const { relatedUser } = relation;
- return (
- <tr key={relation._id}>
- <td>
- <UserPicture user={relatedUser} />
- </td>
- <td>
- <strong>{relatedUser.username}</strong>
- </td>
- <td>{relatedUser.name}</td>
- <td>{relatedUser.createdAt ? dateFnsFormat(new Date(relatedUser.createdAt), 'yyyy-MM-dd') : ''}</td>
- <td>{relatedUser.lastLoginAt ? dateFnsFormat(new Date(relatedUser.lastLoginAt), 'yyyy-MM-dd HH:mm:ss') : ''}</td>
- <td>
- <div className="btn-group admin-user-menu">
- <button
- type="button"
- id={`admin-group-menu-button-${relatedUser._id}`}
- className="btn btn-outline-secondary btn-sm dropdown-toggle"
- data-bs-toggle="dropdown"
- >
- <i className="icon-settings"></i>
- </button>
- <div className="dropdown-menu" role="menu" aria-labelledby={`admin-group-menu-button-${relatedUser._id}`}>
- <button
- className="dropdown-item"
- type="button"
- onClick={() => onClickRemoveUserBtn(relatedUser.username)}
- >
- <i className="icon-fw icon-user-unfollow"></i> {t('admin:user_group_management.remove_from_group')}
- </button>
- </div>
- </div>
- </td>
- </tr>
- );
- })}
- <tr>
- <td></td>
- <td className="text-center">
- <button className="btn btn-outline-secondary" type="button" onClick={onClickPlusBtn}>
- <i className="ti ti-plus"></i>
- </button>
- </td>
- <td></td>
- <td></td>
- <td></td>
- <td></td>
- </tr>
- </tbody>
- </table>
- );
- };
- export default UserGroupUserTable;
|