mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import validateRequest from '@/config/nextConnect/middleware/validateRequest';
|
|
import APIResponseValidationSchema from '@/validation/APIResponseValidationSchema';
|
|
import NextConnectOptions from '@/config/nextConnect/NextConnectOptions';
|
|
|
|
import { createRouter } from 'next-connect';
|
|
import { z } from 'zod';
|
|
import getCurrentUser from '@/config/nextConnect/middleware/getCurrentUser';
|
|
import { NextApiResponse } from 'next';
|
|
|
|
import CreateCommentValidationSchema from '@/services/schema/CommentSchema/CreateCommentValidationSchema';
|
|
import { createComment, getAll } from '@/controllers/comments/brewery-comments';
|
|
import PaginatedQueryResponseSchema from '@/services/schema/PaginatedQueryResponseSchema';
|
|
|
|
const router = createRouter<
|
|
// I don't want to use any, but I can't figure out how to get the types to work
|
|
any,
|
|
NextApiResponse<z.infer<typeof APIResponseValidationSchema>>
|
|
>();
|
|
|
|
router.post(
|
|
validateRequest({
|
|
bodySchema: CreateCommentValidationSchema,
|
|
querySchema: z.object({ postId: z.string().cuid() }),
|
|
}),
|
|
getCurrentUser,
|
|
createComment,
|
|
);
|
|
|
|
router.get(
|
|
validateRequest({
|
|
querySchema: PaginatedQueryResponseSchema.extend({ postId: z.string().cuid() }),
|
|
}),
|
|
getAll,
|
|
);
|
|
|
|
const handler = router.handler(NextConnectOptions);
|
|
export default handler;
|