mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
This PR is handles the changes required to support envelopes. The new envelope editor/signing page will be hidden during release. The core changes here is to migrate the documents and templates model to a centralized envelopes model. Even though Documents and Templates are removed, from the user perspective they will still exist as we remap envelopes to documents and templates.
146 lines
4.0 KiB
TypeScript
146 lines
4.0 KiB
TypeScript
import { useEffect, useMemo, useState, useTransition } from 'react';
|
|
|
|
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import type { Role, Subscription } from '@prisma/client';
|
|
import { Edit, Loader } from 'lucide-react';
|
|
import { Link } from 'react-router';
|
|
|
|
import { useDebouncedValue } from '@documenso/lib/client-only/hooks/use-debounced-value';
|
|
import { useUpdateSearchParams } from '@documenso/lib/client-only/hooks/use-update-search-params';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
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 { Input } from '@documenso/ui/primitives/input';
|
|
|
|
type UserData = {
|
|
id: number;
|
|
name: string | null;
|
|
email: string;
|
|
roles: Role[];
|
|
subscriptions?: SubscriptionLite[] | null;
|
|
documentCount: number;
|
|
};
|
|
|
|
type SubscriptionLite = Pick<
|
|
Subscription,
|
|
'id' | 'status' | 'planId' | 'priceId' | 'createdAt' | 'periodEnd'
|
|
>;
|
|
|
|
type AdminDashboardUsersTableProps = {
|
|
users: UserData[];
|
|
totalPages: number;
|
|
perPage: number;
|
|
page: number;
|
|
};
|
|
|
|
export const AdminDashboardUsersTable = ({
|
|
users,
|
|
totalPages,
|
|
perPage,
|
|
page,
|
|
}: AdminDashboardUsersTableProps) => {
|
|
const { _ } = useLingui();
|
|
|
|
const [isPending, startTransition] = useTransition();
|
|
const updateSearchParams = useUpdateSearchParams();
|
|
const [searchString, setSearchString] = useState('');
|
|
const debouncedSearchString = useDebouncedValue(searchString, 1000);
|
|
|
|
const columns = useMemo(() => {
|
|
return [
|
|
{
|
|
header: 'ID',
|
|
accessorKey: 'id',
|
|
cell: ({ row }) => <div>{row.original.id}</div>,
|
|
},
|
|
{
|
|
header: _(msg`Name`),
|
|
accessorKey: 'name',
|
|
cell: ({ row }) => <div>{row.original.name}</div>,
|
|
},
|
|
{
|
|
header: _(msg`Email`),
|
|
accessorKey: 'email',
|
|
cell: ({ row }) => <div>{row.original.email}</div>,
|
|
},
|
|
{
|
|
header: _(msg`Roles`),
|
|
accessorKey: 'roles',
|
|
cell: ({ row }) => row.original.roles.join(', '),
|
|
},
|
|
{
|
|
header: _(msg`Documents`),
|
|
accessorKey: 'documentCount',
|
|
},
|
|
{
|
|
header: '',
|
|
accessorKey: 'edit',
|
|
cell: ({ row }) => {
|
|
return (
|
|
<Button className="w-24" asChild>
|
|
<Link to={`/admin/users/${row.original.id}`}>
|
|
<Edit className="-ml-1 mr-2 h-4 w-4" />
|
|
Edit
|
|
</Link>
|
|
</Button>
|
|
);
|
|
},
|
|
},
|
|
] satisfies DataTableColumnDef<(typeof users)[number]>[];
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
startTransition(() => {
|
|
updateSearchParams({
|
|
search: debouncedSearchString,
|
|
page: 1,
|
|
perPage,
|
|
});
|
|
});
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [debouncedSearchString]);
|
|
|
|
const onPaginationChange = (page: number, perPage: number) => {
|
|
startTransition(() => {
|
|
updateSearchParams({
|
|
page,
|
|
perPage,
|
|
});
|
|
});
|
|
};
|
|
|
|
const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
setSearchString(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<div className="relative">
|
|
<Input
|
|
className="my-6 flex flex-row gap-4"
|
|
type="text"
|
|
placeholder={_(msg`Search by name or email`)}
|
|
value={searchString}
|
|
onChange={handleChange}
|
|
/>
|
|
<DataTable
|
|
columns={columns}
|
|
data={users}
|
|
perPage={perPage}
|
|
currentPage={page}
|
|
totalPages={totalPages}
|
|
onPaginationChange={onPaginationChange}
|
|
>
|
|
{(table) => <DataTablePagination additionalInformation="VisibleCount" table={table} />}
|
|
</DataTable>
|
|
|
|
{isPending && (
|
|
<div className="absolute inset-0 flex items-center justify-center bg-white/50">
|
|
<Loader className="h-8 w-8 animate-spin text-gray-500" />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|