mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
123 lines
4.1 KiB
TypeScript
123 lines
4.1 KiB
TypeScript
import {
|
|
File,
|
|
FileCheck,
|
|
FileClock,
|
|
FileEdit,
|
|
Mail,
|
|
MailOpen,
|
|
PenTool,
|
|
User as UserIcon,
|
|
UserPlus2,
|
|
UserSquare2,
|
|
} from 'lucide-react';
|
|
|
|
import { getDocumentStats } from '@documenso/lib/server-only/admin/get-documents-stats';
|
|
import { getRecipientsStats } from '@documenso/lib/server-only/admin/get-recipients-stats';
|
|
import {
|
|
getUserWithAtLeastOneDocumentPerMonth,
|
|
getUserWithAtLeastOneDocumentSignedPerMonth,
|
|
getUserWithSignedDocumentMonthlyGrowth,
|
|
getUsersCount,
|
|
getUsersWithSubscriptionsCount,
|
|
} from '@documenso/lib/server-only/admin/get-users-stats';
|
|
|
|
import { CardMetric } from '~/components/(dashboard)/metric-card/metric-card';
|
|
|
|
import { UserWithDocumentChart } from './user-with-document';
|
|
|
|
export default async function AdminStatsPage() {
|
|
const [
|
|
usersCount,
|
|
usersWithSubscriptionsCount,
|
|
docStats,
|
|
recipientStats,
|
|
userWithAtLeastOneDocumentPerMonth,
|
|
userWithAtLeastOneDocumentSignedPerMonth,
|
|
MONTHLY_USERS_SIGNED,
|
|
] = await Promise.all([
|
|
getUsersCount(),
|
|
getUsersWithSubscriptionsCount(),
|
|
getDocumentStats(),
|
|
getRecipientsStats(),
|
|
getUserWithAtLeastOneDocumentPerMonth(),
|
|
getUserWithAtLeastOneDocumentSignedPerMonth(),
|
|
getUserWithSignedDocumentMonthlyGrowth(),
|
|
]);
|
|
|
|
return (
|
|
<div>
|
|
<h2 className="text-4xl font-semibold">Instance Stats</h2>
|
|
|
|
<div className="mt-8 grid flex-1 grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-4">
|
|
<CardMetric icon={UserIcon} title="Total Users" value={usersCount} />
|
|
<CardMetric icon={File} title="Total Documents" value={docStats.ALL} />
|
|
<CardMetric
|
|
icon={UserPlus2}
|
|
title="Active Subscriptions"
|
|
value={usersWithSubscriptionsCount}
|
|
/>
|
|
<CardMetric icon={UserPlus2} title="App Version" value={`v${process.env.APP_VERSION}`} />
|
|
</div>
|
|
|
|
<div className="mt-16 gap-8">
|
|
<div>
|
|
<h3 className="text-3xl font-semibold">User metrics</h3>
|
|
|
|
<div className="mb-8 mt-4 grid flex-1 grid-cols-1 gap-4 md:grid-cols-2">
|
|
<CardMetric
|
|
icon={File}
|
|
title="Users who uploaded one or more documents in the past month"
|
|
value={userWithAtLeastOneDocumentPerMonth}
|
|
/>
|
|
<CardMetric
|
|
icon={File}
|
|
title="Users that created at least 1 document and had it completed"
|
|
value={userWithAtLeastOneDocumentSignedPerMonth}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<h3 className="text-3xl font-semibold">Document metrics</h3>
|
|
|
|
<div className="mb-8 mt-4 grid flex-1 grid-cols-1 gap-4 md:grid-cols-2">
|
|
<CardMetric icon={FileEdit} title="Drafted Documents" value={docStats.DRAFT} />
|
|
<CardMetric icon={FileClock} title="Pending Documents" value={docStats.PENDING} />
|
|
<CardMetric icon={FileCheck} title="Completed Documents" value={docStats.COMPLETED} />
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<h3 className="text-3xl font-semibold">Recipients metrics</h3>
|
|
|
|
<div className="mb-8 mt-4 grid flex-1 grid-cols-1 gap-4 md:grid-cols-2">
|
|
<CardMetric
|
|
icon={UserSquare2}
|
|
title="Total Recipients"
|
|
value={recipientStats.TOTAL_RECIPIENTS}
|
|
/>
|
|
<CardMetric icon={Mail} title="Documents Received" value={recipientStats.SENT} />
|
|
<CardMetric icon={MailOpen} title="Documents Viewed" value={recipientStats.OPENED} />
|
|
<CardMetric icon={PenTool} title="Signatures Collected" value={recipientStats.SIGNED} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="mt-16">
|
|
<h3 className="text-3xl font-semibold">Charts</h3>
|
|
<div className="mt-5 grid grid-cols-2 gap-10">
|
|
<UserWithDocumentChart
|
|
data={MONTHLY_USERS_SIGNED}
|
|
title="Monthly users who created documents"
|
|
/>
|
|
<UserWithDocumentChart
|
|
data={MONTHLY_USERS_SIGNED}
|
|
completed
|
|
title="Monthly users who completed documents"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|