mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 03:30:25 -05:00
101 lines
3.2 KiB
TypeScript
101 lines
3.2 KiB
TypeScript
'use client';
|
|
|
|
import { UserDetail } from '@/app/dashboard/user/user-detail';
|
|
import { IpLink } from '@/components/ip-link';
|
|
import { ProTable } from '@/components/pro-table';
|
|
import { filterLoginLog } from '@/services/admin/log';
|
|
import { formatDate } from '@/utils/common';
|
|
import { Badge } from '@workspace/ui/components/badge';
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipProvider,
|
|
TooltipTrigger,
|
|
} from '@workspace/ui/components/tooltip';
|
|
import { useTranslations } from 'next-intl';
|
|
import { useSearchParams } from 'next/navigation';
|
|
|
|
export default function LoginLogPage() {
|
|
const t = useTranslations('log');
|
|
const sp = useSearchParams();
|
|
|
|
const today = new Date().toISOString().split('T')[0];
|
|
|
|
const initialFilters = {
|
|
date: sp.get('date') || today,
|
|
user_id: sp.get('user_id') ? Number(sp.get('user_id')) : undefined,
|
|
};
|
|
return (
|
|
<ProTable<API.LoginLog, { date?: string; user_id?: number }>
|
|
header={{ title: t('title.login') }}
|
|
initialFilters={initialFilters}
|
|
columns={[
|
|
{
|
|
accessorKey: 'user',
|
|
header: t('column.user'),
|
|
cell: ({ row }) => (
|
|
<div>
|
|
<Badge className='capitalize'>{row.original.method}</Badge>{' '}
|
|
<UserDetail id={Number(row.original.user_id)} />
|
|
</div>
|
|
),
|
|
},
|
|
|
|
{
|
|
accessorKey: 'login_ip',
|
|
header: t('column.ip'),
|
|
cell: ({ row }) => <IpLink ip={String((row.original as any).login_ip || '')} />,
|
|
},
|
|
{
|
|
accessorKey: 'user_agent',
|
|
header: t('column.userAgent'),
|
|
cell: ({ row }) => {
|
|
const userAgent = String(row.original.user_agent || '');
|
|
return (
|
|
<TooltipProvider>
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<div className='max-w-48 cursor-help truncate'>{userAgent}</div>
|
|
</TooltipTrigger>
|
|
<TooltipContent>
|
|
<p className='max-w-md break-words'>{userAgent}</p>
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
</TooltipProvider>
|
|
);
|
|
},
|
|
},
|
|
{
|
|
accessorKey: 'success',
|
|
header: t('column.success'),
|
|
cell: ({ row }) => (
|
|
<Badge variant={row.original.success ? 'default' : 'destructive'}>
|
|
{row.original.success ? t('success') : t('failed')}
|
|
</Badge>
|
|
),
|
|
},
|
|
{
|
|
accessorKey: 'timestamp',
|
|
header: t('column.time'),
|
|
cell: ({ row }) => formatDate(row.original.timestamp),
|
|
},
|
|
]}
|
|
params={[
|
|
{ key: 'date', type: 'date' },
|
|
{ key: 'user_id', placeholder: t('column.userId') },
|
|
]}
|
|
request={async (pagination, filter) => {
|
|
const { data } = await filterLoginLog({
|
|
page: pagination.page,
|
|
size: pagination.size,
|
|
date: (filter as any)?.date,
|
|
user_id: (filter as any)?.user_id,
|
|
});
|
|
const list = ((data?.data?.list || []) as API.LoginLog[]) || [];
|
|
const total = Number(data?.data?.total || list.length);
|
|
return { list, total };
|
|
}}
|
|
/>
|
|
);
|
|
}
|