mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import { DocumentStatus, EnvelopeType } from '@prisma/client';
|
|
import { DateTime } from 'luxon';
|
|
|
|
import { kyselyPrisma, sql } from '@documenso/prisma';
|
|
|
|
export const getCompletedDocumentsMonthly = async () => {
|
|
const qb = kyselyPrisma.$kysely
|
|
.selectFrom('Envelope')
|
|
.select(({ fn }) => [
|
|
fn<Date>('DATE_TRUNC', [sql.lit('MONTH'), 'Envelope.updatedAt']).as('month'),
|
|
fn.count('id').as('count'),
|
|
fn
|
|
.sum(fn.count('id'))
|
|
// Feels like a bug in the Kysely extension but I just can not do this orderBy in a type-safe manner
|
|
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions, @typescript-eslint/no-explicit-any
|
|
.over((ob) => ob.orderBy(fn('DATE_TRUNC', [sql.lit('MONTH'), 'Envelope.updatedAt']) as any))
|
|
.as('cume_count'),
|
|
])
|
|
.where(() => sql`"Envelope"."status" = ${DocumentStatus.COMPLETED}::"DocumentStatus"`)
|
|
.where(() => sql`"Envelope"."type" = ${EnvelopeType.DOCUMENT}::"EnvelopeType"`)
|
|
.groupBy('month')
|
|
.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),
|
|
}));
|
|
};
|
|
|
|
export type GetCompletedDocumentsMonthlyResult = Awaited<
|
|
ReturnType<typeof getCompletedDocumentsMonthly>
|
|
>;
|