import { Injectable } from '@nestjs/common'; import { TrpcService } from '@server/trpc/trpc.service'; import { Prisma, UpdateOrderSchema } from '@nicestack/common'; import { EnrollmentService } from './enrollment.service'; import { z, ZodType } from 'zod'; const EnrollmentCreateArgsSchema: ZodType = z.any() const EnrollmentCreateManyInputSchema: ZodType = z.any() const EnrollmentDeleteManyArgsSchema: ZodType = z.any() const EnrollmentFindManyArgsSchema: ZodType = z.any() const EnrollmentFindFirstArgsSchema: ZodType = z.any() const EnrollmentWhereInputSchema: ZodType = z.any() const EnrollmentSelectSchema: ZodType = z.any() @Injectable() export class EnrollmentRouter { constructor( private readonly trpc: TrpcService, private readonly enrollmentService: EnrollmentService, ) { } router = this.trpc.router({ create: this.trpc.protectProcedure .input(EnrollmentCreateArgsSchema) .mutation(async ({ ctx, input }) => { const { staff } = ctx; return await this.enrollmentService.create(input, staff); }), createMany: this.trpc.protectProcedure.input(z.array(EnrollmentCreateManyInputSchema)) .mutation(async ({ ctx, input }) => { const { staff } = ctx; return await this.enrollmentService.createMany({ data: input }, staff); }), deleteMany: this.trpc.procedure .input(EnrollmentDeleteManyArgsSchema) .mutation(async ({ input }) => { return await this.enrollmentService.deleteMany(input); }), findFirst: this.trpc.procedure .input(EnrollmentFindFirstArgsSchema) // Assuming StaffMethodSchema.findMany is the Zod schema for finding staffs by keyword .query(async ({ input }) => { return await this.enrollmentService.findFirst(input); }), softDeleteByIds: this.trpc.protectProcedure .input(z.object({ ids: z.array(z.string()) })) // expect input according to the schema .mutation(async ({ input }) => { return this.enrollmentService.softDeleteByIds(input.ids); }), updateOrder: this.trpc.protectProcedure .input(UpdateOrderSchema) .mutation(async ({ input }) => { return this.enrollmentService.updateOrder(input); }), findMany: this.trpc.procedure .input(EnrollmentFindManyArgsSchema) // Assuming StaffMethodSchema.findMany is the Zod schema for finding staffs by keyword .query(async ({ input }) => { return await this.enrollmentService.findMany(input); }), findManyWithCursor: this.trpc.protectProcedure .input(z.object({ cursor: z.any().nullish(), take: z.number().nullish(), where: EnrollmentWhereInputSchema.nullish(), select: EnrollmentSelectSchema.nullish() })) .query(async ({ ctx, input }) => { const { staff } = ctx; return await this.enrollmentService.findManyWithCursor(input); }), }); }