34 lines
1005 B
TypeScript
34 lines
1005 B
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
|
||
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
||
|
|
import { parseQuery } from '@/lib/api/route-helpers';
|
||
|
|
import { errorResponse } from '@/lib/errors';
|
||
|
|
import { listInquiries } from '@/lib/services/inquiries.service';
|
||
|
|
import { listInquiriesSchema } from '@/lib/validators/inquiries';
|
||
|
|
|
||
|
|
export const GET = withAuth(
|
||
|
|
withPermission('inquiries', 'view', async (req, ctx) => {
|
||
|
|
try {
|
||
|
|
const query = parseQuery(req, listInquiriesSchema);
|
||
|
|
const result = await listInquiries(ctx.portId, query);
|
||
|
|
|
||
|
|
const { page, limit } = query;
|
||
|
|
const totalPages = Math.ceil(result.total / limit);
|
||
|
|
|
||
|
|
return NextResponse.json({
|
||
|
|
data: result.data,
|
||
|
|
pagination: {
|
||
|
|
page,
|
||
|
|
pageSize: limit,
|
||
|
|
total: result.total,
|
||
|
|
totalPages,
|
||
|
|
hasNextPage: page < totalPages,
|
||
|
|
hasPreviousPage: page > 1,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|