118 lines
3.2 KiB
TypeScript
118 lines
3.2 KiB
TypeScript
import { prisma } from "@/module/_global";
|
|
import { funGetUserByCookies } from "@/module/auth";
|
|
import _ from "lodash";
|
|
import { NextResponse } from "next/server";
|
|
|
|
|
|
// GET ONE DATA DIVISI :: UNTUK TAMPIL DATA DI HALAMAN EDIT DAN INFO
|
|
export async function GET(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
const { id } = context.params;
|
|
const user = await funGetUserByCookies()
|
|
if (user.id == undefined) {
|
|
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 401 });
|
|
}
|
|
|
|
const data = await prisma.division.findUnique({
|
|
where: {
|
|
id: String(id),
|
|
isActive: true
|
|
}
|
|
});
|
|
|
|
if (!data) {
|
|
return NextResponse.json({ success: false, message: "Gagal mendapatkan divisi, data tidak ditemukan", }, { status: 404 });
|
|
}
|
|
|
|
const member = await prisma.divisionMember.findMany({
|
|
where: {
|
|
idDivision: String(id),
|
|
isActive: true
|
|
},
|
|
select: {
|
|
id: true,
|
|
isAdmin: true,
|
|
isLeader: true,
|
|
idUser: true,
|
|
User: {
|
|
select: {
|
|
name: true,
|
|
img: true
|
|
}
|
|
}
|
|
},
|
|
orderBy: {
|
|
isAdmin: 'desc',
|
|
}
|
|
})
|
|
|
|
const fixMember = member.map((v: any) => ({
|
|
..._.omit(v, ["User"]),
|
|
name: v.User.name,
|
|
img: v.User.img
|
|
}))
|
|
|
|
const dataFix = {
|
|
division: data,
|
|
member: fixMember
|
|
}
|
|
|
|
|
|
return NextResponse.json({ success: true, message: "Berhasil mendapatkan divisi", data: dataFix, }, { status: 200 });
|
|
|
|
} catch (error) {
|
|
console.log(error);
|
|
return NextResponse.json({ success: false, message: "Gagal mendapatkan divisi, coba lagi nanti", reason: (error as Error).message, }, { status: 500 });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// EDIT DATA DIVISI
|
|
export async function PUT(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
const user = await funGetUserByCookies()
|
|
if (user.id == undefined) {
|
|
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 401 });
|
|
}
|
|
|
|
const { id } = context.params;
|
|
const { name, desc } = (await request.json());
|
|
const data = await prisma.division.count({
|
|
where: {
|
|
id: id,
|
|
},
|
|
});
|
|
|
|
if (data == 0) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: "Edit divisi gagal, data tidak ditemukan",
|
|
},
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
const update = await prisma.division.update({
|
|
where: {
|
|
id: id,
|
|
},
|
|
data: {
|
|
name: name,
|
|
desc: desc
|
|
},
|
|
});
|
|
|
|
return NextResponse.json(
|
|
{
|
|
success: true,
|
|
message: "Divisi berhasil diedit",
|
|
},
|
|
{ status: 200 }
|
|
);
|
|
} catch (error) {
|
|
console.log(error);
|
|
return NextResponse.json({ success: false, message: "Gagal mengedit divisi, coba lagi nanti", reason: (error as Error).message, }, { status: 500 });
|
|
}
|
|
} |