29 lines
559 B
TypeScript
29 lines
559 B
TypeScript
import { NextMiddleware } from "next-api-middleware";
|
|
import z from "zod";
|
|
|
|
const withPage = z.object({
|
|
page: z
|
|
.string()
|
|
.min(1)
|
|
.optional()
|
|
.default("1")
|
|
.transform((n) => parseInt(n)),
|
|
take: z
|
|
.string()
|
|
.min(10)
|
|
.max(100)
|
|
.optional()
|
|
.default("10")
|
|
.transform((n) => parseInt(n)),
|
|
});
|
|
|
|
export const withPagination: NextMiddleware = async (req, _, next) => {
|
|
const { page, take } = withPage.parse(req.query);
|
|
const skip = page * take || 0;
|
|
req.pagination = {
|
|
take,
|
|
skip,
|
|
};
|
|
await next();
|
|
};
|