mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +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.
87 lines
2.7 KiB
TypeScript
87 lines
2.7 KiB
TypeScript
import { DateTime } from 'luxon';
|
|
|
|
import { kyselyPrisma, prisma, sql } from '@documenso/prisma';
|
|
import { SubscriptionStatus, UserSecurityAuditLogType } from '@documenso/prisma/client';
|
|
|
|
export const getUsersCount = async () => {
|
|
return await prisma.user.count();
|
|
};
|
|
|
|
export const getOrganisationsWithSubscriptionsCount = async () => {
|
|
return await prisma.organisation.count({
|
|
where: {
|
|
subscription: {
|
|
status: SubscriptionStatus.ACTIVE,
|
|
},
|
|
},
|
|
});
|
|
};
|
|
|
|
export type GetUserWithDocumentMonthlyGrowth = Array<{
|
|
month: string;
|
|
count: number;
|
|
signed_count: number;
|
|
}>;
|
|
|
|
type GetUserWithDocumentMonthlyGrowthQueryResult = Array<{
|
|
month: Date;
|
|
count: bigint;
|
|
signed_count: bigint;
|
|
}>;
|
|
|
|
export const getUserWithSignedDocumentMonthlyGrowth = async () => {
|
|
const result = await prisma.$queryRaw<GetUserWithDocumentMonthlyGrowthQueryResult>`
|
|
SELECT
|
|
DATE_TRUNC('month', "Envelope"."createdAt") AS "month",
|
|
COUNT(DISTINCT "Envelope"."userId") as "count",
|
|
COUNT(DISTINCT CASE WHEN "Envelope"."status" = 'COMPLETED' THEN "Envelope"."userId" END) as "signed_count"
|
|
FROM "Envelope"
|
|
INNER JOIN "Team" ON "Envelope"."teamId" = "Team"."id"
|
|
INNER JOIN "Organisation" ON "Team"."organisationId" = "Organisation"."id"
|
|
WHERE "Envelope"."type" = 'DOCUMENT'::"EnvelopeType"
|
|
GROUP BY "month"
|
|
ORDER BY "month" DESC
|
|
LIMIT 12
|
|
`;
|
|
|
|
return result.map((row) => ({
|
|
month: DateTime.fromJSDate(row.month).toFormat('yyyy-MM'),
|
|
count: Number(row.count),
|
|
signed_count: Number(row.signed_count),
|
|
}));
|
|
};
|
|
|
|
export type GetMonthlyActiveUsersResult = Array<{
|
|
month: string;
|
|
count: number;
|
|
cume_count: number;
|
|
}>;
|
|
|
|
export const getMonthlyActiveUsers = async () => {
|
|
const qb = kyselyPrisma.$kysely
|
|
.selectFrom('UserSecurityAuditLog')
|
|
.select(({ fn }) => [
|
|
fn<Date>('DATE_TRUNC', [sql.lit('MONTH'), 'UserSecurityAuditLog.createdAt']).as('month'),
|
|
fn.count('userId').distinct().as('count'),
|
|
fn
|
|
.sum(fn.count('userId').distinct())
|
|
.over((ob) =>
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/consistent-type-assertions
|
|
ob.orderBy(fn('DATE_TRUNC', [sql.lit('MONTH'), 'UserSecurityAuditLog.createdAt']) as any),
|
|
)
|
|
.as('cume_count'),
|
|
])
|
|
.where(sql`type = ${UserSecurityAuditLogType.SIGN_IN}::"UserSecurityAuditLogType"`)
|
|
.groupBy(({ fn }) => fn('DATE_TRUNC', [sql.lit('MONTH'), 'UserSecurityAuditLog.createdAt']))
|
|
.orderBy('month', 'desc')
|
|
.limit(12);
|
|
|
|
const result = await qb.execute();
|
|
|
|
return result.map((row) => ({
|
|
month: DateTime.fromJSDate(row.month).toFormat('yyyy-MM'),
|
|
count: Number(row.count),
|
|
cume_count: Number(row.cume_count),
|
|
}));
|
|
};
|