upd: api ai positision

Deskripsi:
- list position

No Issues
This commit is contained in:
2025-09-19 11:42:45 +08:00
parent 51b39396ec
commit fbfdc21b9d

View File

@@ -0,0 +1,79 @@
import { prisma } from "@/module/_global";
import _ from "lodash";
import { NextResponse } from "next/server";
// GET ALL POSITION
export async function GET(request: Request) {
try {
const { searchParams } = new URL(request.url);
const idVillage = searchParams.get("desa");
const idGroup = searchParams.get("group");
const active = searchParams.get('active');
const search = searchParams.get('search')
const page = searchParams.get('page')
const get = searchParams.get('get')
let getFix = 10;
if (get == null || get == undefined || get == "" || _.isNaN(Number(get))) {
getFix = 10;
} else {
getFix = Number(get);
}
const dataSkip = page == null || page == undefined ? 0 : Number(page) * getFix - getFix;
let kondisi: any = {
isActive: active == 'false' ? false : true,
Group: {
idVillage: String(idVillage)
},
name: {
contains: (search == undefined || search == null) ? "" : search,
mode: "insensitive"
}
}
if (idGroup != "null" && idGroup != undefined && idGroup != "") {
kondisi = {
...kondisi,
idGroup: String(idGroup)
}
}
const positions = await prisma.position.findMany({
skip: dataSkip,
take: getFix,
where: kondisi,
select: {
id: true,
name: true,
idGroup: true,
isActive: true,
createdAt: true,
updatedAt: true,
Group: {
select: {
name: true
}
}
},
orderBy: {
name: 'asc'
}
});
const allData = positions.map((v: any) => ({
..._.omit(v, ["Group"]),
group: v.Group.name
}))
return NextResponse.json({ success: true, message: "Berhasil mendapatkan jabatan", data: allData }, { status: 200 });
} catch (error) {
console.error(error);
return NextResponse.json({ success: false, message: "Gagal mendapatkan jabatan, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
}
}