| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import type { FC } from 'react';
- import React, { useState, useCallback } from 'react';
- import { isPopulated } from '@growi/core';
- import { pagePathUtils } from '@growi/core/dist/utils';
- import { UserPicture } from '@growi/ui/dist/components';
- import { format } from 'date-fns/format';
- import { CopyToClipboard } from 'react-copy-to-clipboard';
- import { useTranslation } from 'react-i18next';
- import { Tooltip } from 'reactstrap';
- import type { IActivityHasId } from '~/interfaces/activity';
- type Props = {
- activityList: IActivityHasId[]
- }
- const formatDate = (date) => {
- return format(new Date(date), 'yyyy/MM/dd HH:mm:ss');
- };
- export const ActivityTable : FC<Props> = (props: Props) => {
- const { t } = useTranslation();
- const [tooltopOpen, setTooltipOpen] = useState(false);
- const showToolTip = useCallback(() => {
- setTooltipOpen(true);
- setTimeout(() => {
- setTooltipOpen(false);
- }, 1000);
- }, [setTooltipOpen]);
- return (
- <div className="table-responsive text-nowrap h-100">
- <table className="table table-default table-bordered table-user-list">
- <thead>
- <tr>
- <th scope="col">{t('admin:audit_log_management.user')}</th>
- <th scope="col">{t('admin:audit_log_management.date')}</th>
- <th scope="col">{t('admin:audit_log_management.action')}</th>
- <th scope="col">{t('admin:audit_log_management.ip')}</th>
- <th scope="col">{t('admin:audit_log_management.url')}</th>
- </tr>
- </thead>
- <tbody>
- {props.activityList.map((activity) => {
- return (
- <tr data-testid="activity-table" key={activity._id}>
- <td>
- { activity.user != null && (
- <>
- <UserPicture user={activity.user} />
- <a
- className="ms-2"
- href={isPopulated(activity.user) ? pagePathUtils.userHomepagePath(activity.user) : undefined}
- >
- {activity.snapshot?.username}
- </a>
- </>
- )}
- </td>
- <td>{formatDate(activity.createdAt)}</td>
- <td>{t(`admin:audit_log_action.${activity.action}`)}</td>
- <td>{activity.ip}</td>
- <td>
- {activity.endpoint}
- <CopyToClipboard text={activity.endpoint} onCopy={showToolTip}>
- <button type="button" className="btn btn-outline-secondary border-0 pull-right" id="tooltipTarget">
- <span className="material-symbols-outlined" aria-hidden="true">content_paste</span>
- </button>
- </CopyToClipboard>
- <Tooltip placement="top" isOpen={tooltopOpen} fade={false} target="tooltipTarget">
- copied!
- </Tooltip>
- </td>
- </tr>
- );
- })}
- </tbody>
- </table>
- </div>
- );
- };
|