55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
// /api/berita/findManyPaginated.ts
|
|
import prisma from "@/lib/prisma";
|
|
import { Context } from "elysia";
|
|
|
|
async function lowonganKerjaFindMany(context: Context) {
|
|
// Ambil parameter dari query
|
|
const page = Number(context.query.page) || 1;
|
|
const limit = Number(context.query.limit) || 10;
|
|
const search = (context.query.search as string) || '';
|
|
const skip = (page - 1) * limit;
|
|
|
|
// Buat where clause
|
|
const where: any = { isActive: true };
|
|
|
|
// Tambahkan pencarian (jika ada)
|
|
if (search) {
|
|
where.OR = [
|
|
{ posisi: { contains: search, mode: 'insensitive' } },
|
|
{ namaPerusahaan: { contains: search, mode: 'insensitive' } },
|
|
{ lokasi: { contains: search, mode: 'insensitive' } },
|
|
];
|
|
}
|
|
|
|
try {
|
|
// Ambil data dan total count secara paralel
|
|
const [data, total] = await Promise.all([
|
|
prisma.lowonganPekerjaan.findMany({
|
|
where,
|
|
skip,
|
|
take: limit,
|
|
orderBy: { createdAt: 'desc' },
|
|
}),
|
|
prisma.lowonganPekerjaan.count({ where }),
|
|
]);
|
|
|
|
return {
|
|
success: true,
|
|
message: "Berhasil ambil lowongan kerja dengan pagination",
|
|
data,
|
|
page,
|
|
limit,
|
|
total,
|
|
totalPages: Math.ceil(total / limit),
|
|
};
|
|
} catch (e) {
|
|
console.error("Error di findMany paginated:", e);
|
|
return {
|
|
success: false,
|
|
message: "Gagal mengambil data lowongan kerja",
|
|
};
|
|
}
|
|
}
|
|
|
|
export default lowonganKerjaFindMany; |