mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
160 lines
4.5 KiB
TypeScript
160 lines
4.5 KiB
TypeScript
import { useMemo } from 'react';
|
|
|
|
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import type { DateTimeFormatOptions } from 'luxon';
|
|
import { DateTime } from 'luxon';
|
|
import { useLocation, useNavigate, useSearchParams } from 'react-router';
|
|
import { UAParser } from 'ua-parser-js';
|
|
|
|
import { useUpdateSearchParams } from '@documenso/lib/client-only/hooks/use-update-search-params';
|
|
import { USER_SECURITY_AUDIT_LOG_MAP } from '@documenso/lib/constants/auth';
|
|
import { ZUrlSearchParamsSchema } from '@documenso/lib/types/search-params';
|
|
import { trpc } from '@documenso/trpc/react';
|
|
import type { DataTableColumnDef } from '@documenso/ui/primitives/data-table';
|
|
import { DataTable } from '@documenso/ui/primitives/data-table';
|
|
import { DataTablePagination } from '@documenso/ui/primitives/data-table-pagination';
|
|
import { Skeleton } from '@documenso/ui/primitives/skeleton';
|
|
import { TableCell } from '@documenso/ui/primitives/table';
|
|
|
|
const dateFormat: DateTimeFormatOptions = {
|
|
...DateTime.DATETIME_SHORT,
|
|
hourCycle: 'h12',
|
|
};
|
|
|
|
export const SettingsSecurityActivityTable = () => {
|
|
const { _, i18n } = useLingui();
|
|
|
|
const { pathname } = useLocation();
|
|
const navigate = useNavigate();
|
|
const [searchParams] = useSearchParams();
|
|
const updateSearchParams = useUpdateSearchParams();
|
|
|
|
const parsedSearchParams = ZUrlSearchParamsSchema.parse(Object.fromEntries(searchParams ?? []));
|
|
|
|
const { data, isLoading, isLoadingError } = trpc.profile.findUserSecurityAuditLogs.useQuery(
|
|
{
|
|
page: parsedSearchParams.page,
|
|
perPage: parsedSearchParams.perPage,
|
|
},
|
|
{
|
|
placeholderData: (previousData) => previousData,
|
|
},
|
|
);
|
|
|
|
const onPaginationChange = (page: number, perPage: number) => {
|
|
updateSearchParams({
|
|
page,
|
|
perPage,
|
|
});
|
|
};
|
|
|
|
const results = data ?? {
|
|
data: [],
|
|
perPage: 10,
|
|
currentPage: 1,
|
|
totalPages: 1,
|
|
};
|
|
|
|
const columns = useMemo(() => {
|
|
const parser = new UAParser();
|
|
|
|
return [
|
|
{
|
|
header: _(msg`Date`),
|
|
accessorKey: 'createdAt',
|
|
cell: ({ row }) => i18n.date(row.original.createdAt, dateFormat),
|
|
},
|
|
{
|
|
header: _(msg`Device`),
|
|
cell: ({ row }) => {
|
|
if (!row.original.userAgent) {
|
|
return 'N/A';
|
|
}
|
|
|
|
parser.setUA(row.original.userAgent);
|
|
|
|
const result = parser.getResult();
|
|
|
|
let output = result.os.name;
|
|
|
|
if (!output) {
|
|
return 'N/A';
|
|
}
|
|
|
|
if (result.os.version) {
|
|
output += ` (${result.os.version})`;
|
|
}
|
|
|
|
return output;
|
|
},
|
|
},
|
|
{
|
|
header: _(msg`Browser`),
|
|
cell: ({ row }) => {
|
|
if (!row.original.userAgent) {
|
|
return 'N/A';
|
|
}
|
|
|
|
parser.setUA(row.original.userAgent);
|
|
|
|
const result = parser.getResult();
|
|
|
|
return result.browser.name ?? 'N/A';
|
|
},
|
|
},
|
|
{
|
|
header: 'IP Address',
|
|
accessorKey: 'ipAddress',
|
|
cell: ({ row }) => row.original.ipAddress ?? 'N/A',
|
|
},
|
|
{
|
|
header: _(msg`Action`),
|
|
accessorKey: 'type',
|
|
cell: ({ row }) => USER_SECURITY_AUDIT_LOG_MAP[row.original.type],
|
|
},
|
|
] satisfies DataTableColumnDef<(typeof results)['data'][number]>[];
|
|
}, []);
|
|
|
|
return (
|
|
<DataTable
|
|
columns={columns}
|
|
data={results.data}
|
|
perPage={results.perPage}
|
|
currentPage={results.currentPage}
|
|
totalPages={results.totalPages}
|
|
onPaginationChange={onPaginationChange}
|
|
hasFilters={parsedSearchParams.page !== undefined || parsedSearchParams.perPage !== undefined}
|
|
onClearFilters={async () => navigate(pathname ?? '/')}
|
|
error={{
|
|
enable: isLoadingError,
|
|
}}
|
|
skeleton={{
|
|
enable: isLoading,
|
|
rows: 3,
|
|
component: (
|
|
<>
|
|
<TableCell>
|
|
<Skeleton className="h-4 w-20 rounded-full" />
|
|
</TableCell>
|
|
<TableCell>
|
|
<Skeleton className="h-4 w-12 rounded-full" />
|
|
</TableCell>
|
|
<TableCell>
|
|
<Skeleton className="h-4 w-12 rounded-full" />
|
|
</TableCell>
|
|
<TableCell>
|
|
<Skeleton className="h-4 w-12 rounded-full" />
|
|
</TableCell>
|
|
<TableCell>
|
|
<Skeleton className="h-4 w-12 rounded-full" />
|
|
</TableCell>
|
|
</>
|
|
),
|
|
}}
|
|
>
|
|
{(table) => <DataTablePagination table={table} />}
|
|
</DataTable>
|
|
);
|
|
};
|