366 lines
11 KiB
TypeScript
366 lines
11 KiB
TypeScript
import { prisma } from "@/module/_global";
|
|
import { funGetUserById } from "@/module/auth";
|
|
import { createLogUserMobile } from "@/module/user";
|
|
import _ from "lodash";
|
|
import moment from "moment";
|
|
import "moment/locale/id";
|
|
import { NextResponse } from "next/server";
|
|
|
|
|
|
// GET DETAIL TASK DIVISI / GET ONE
|
|
export async function GET(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
let allData
|
|
const { id } = context.params;
|
|
const { searchParams } = new URL(request.url);
|
|
const kategori = searchParams.get("cat");
|
|
const user = searchParams.get("user");
|
|
|
|
const userMobile = await funGetUserById({ id: String(user) })
|
|
if (userMobile.id == "null" || userMobile.id == undefined || userMobile.id == "") {
|
|
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
|
|
}
|
|
|
|
const data = await prisma.divisionProject.findUnique({
|
|
where: {
|
|
id: String(id),
|
|
isActive: true
|
|
}
|
|
});
|
|
|
|
if (!data) {
|
|
return NextResponse.json({ success: false, message: "Gagal mendapatkan tugas, data tidak ditemukan", }, { status: 200 });
|
|
}
|
|
|
|
if (kategori == "data") {
|
|
allData = data
|
|
} else if (kategori == "progress") {
|
|
const dataProgress = await prisma.divisionProjectTask.findMany({
|
|
where: {
|
|
isActive: true,
|
|
idProject: String(id)
|
|
},
|
|
orderBy: {
|
|
updatedAt: 'desc'
|
|
}
|
|
})
|
|
|
|
if (dataProgress.length > 0) {
|
|
const semua = dataProgress.length
|
|
const selesai = _.filter(dataProgress, { status: 1 }).length
|
|
const progress = Math.ceil((selesai / semua) * 100)
|
|
|
|
allData = {
|
|
progress: progress,
|
|
lastUpdate: moment(dataProgress[0]?.updatedAt).format("DD MMMM YYYY"),
|
|
}
|
|
} else {
|
|
allData = {
|
|
progress: 0,
|
|
lastUpdate: '1 Januari 1999',
|
|
}
|
|
}
|
|
|
|
|
|
} else if (kategori == "task") {
|
|
const dataProgress = await prisma.divisionProjectTask.findMany({
|
|
where: {
|
|
isActive: true,
|
|
idProject: String(id)
|
|
},
|
|
select: {
|
|
id: true,
|
|
title: true,
|
|
status: true,
|
|
dateStart: true,
|
|
dateEnd: true,
|
|
},
|
|
orderBy: {
|
|
dateStart: 'asc'
|
|
}
|
|
})
|
|
|
|
const fix = dataProgress.map((v: any) => ({
|
|
..._.omit(v, ["dateStart", "dateEnd"]),
|
|
dateStart: moment(v.dateStart).format("DD-MM-YYYY"),
|
|
dateEnd: moment(v.dateEnd).format("DD-MM-YYYY"),
|
|
}))
|
|
|
|
allData = fix
|
|
|
|
} else if (kategori == "file") {
|
|
const dataFile = await prisma.divisionProjectFile.findMany({
|
|
where: {
|
|
isActive: true,
|
|
idProject: String(id)
|
|
},
|
|
select: {
|
|
id: true,
|
|
ContainerFileDivision: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
extension: true,
|
|
idStorage: true
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
const fix = dataFile.map((v: any) => ({
|
|
..._.omit(v, ["ContainerFileDivision"]),
|
|
nameInStorage: v.ContainerFileDivision.id,
|
|
name: v.ContainerFileDivision.name,
|
|
extension: v.ContainerFileDivision.extension,
|
|
idStorage: v.ContainerFileDivision.idStorage,
|
|
}))
|
|
|
|
allData = fix
|
|
|
|
} else if (kategori == "member") {
|
|
const dataMember = await prisma.divisionProjectMember.findMany({
|
|
where: {
|
|
isActive: true,
|
|
idProject: String(id)
|
|
},
|
|
select: {
|
|
id: true,
|
|
idUser: true,
|
|
User: {
|
|
select: {
|
|
name: true,
|
|
email: true,
|
|
img: true,
|
|
Position: {
|
|
select: {
|
|
name: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
|
|
const fix = dataMember.map((v: any) => ({
|
|
..._.omit(v, ["User"]),
|
|
name: v.User.name,
|
|
email: v.User.email,
|
|
img: v.User.img,
|
|
position: v.User.Position.name
|
|
}))
|
|
|
|
allData = fix
|
|
} else if (kategori == "link") {
|
|
const dataLink = await prisma.divisionProjectLink.findMany({
|
|
where: {
|
|
isActive: true,
|
|
idProject: String(id)
|
|
},
|
|
orderBy: {
|
|
createdAt: 'asc'
|
|
}
|
|
})
|
|
|
|
allData = dataLink
|
|
}
|
|
|
|
return NextResponse.json({ success: true, message: "Berhasil mendapatkan tugas divisi", data: allData }, { status: 200 });
|
|
|
|
}
|
|
catch (error) {
|
|
console.error(error);
|
|
return NextResponse.json({ success: false, message: "Gagal mendapatkan tugas divisi, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
|
|
}
|
|
}
|
|
|
|
|
|
// CREATE NEW DETAIL TASK DIVISI
|
|
export async function POST(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
const { id } = context.params;
|
|
const { title, dateStart, dateEnd, idDivision, user, dataDetail } = (await request.json());
|
|
const userMobile = await funGetUserById({ id: String(user) })
|
|
|
|
if (userMobile.id == "null" || userMobile.id == undefined || userMobile.id == "") {
|
|
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
|
|
}
|
|
|
|
const data = await prisma.divisionProject.count({
|
|
where: {
|
|
id: id,
|
|
},
|
|
});
|
|
|
|
if (data == 0) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: "Tambah detail tugas gagal, data tugas tidak ditemukan",
|
|
},
|
|
{ status: 200 }
|
|
);
|
|
}
|
|
|
|
const create = await prisma.divisionProjectTask.create({
|
|
data: {
|
|
idProject: id,
|
|
idDivision,
|
|
title,
|
|
dateStart: new Date(dateStart),
|
|
dateEnd: new Date(dateEnd),
|
|
},
|
|
select: {
|
|
id: true
|
|
}
|
|
});
|
|
|
|
if (dataDetail.length > 0) {
|
|
const dataDetailFix = dataDetail.map((v: any) => ({
|
|
...v,
|
|
idTask: create.id,
|
|
date: new Date(v.date),
|
|
timeStart: v.timeStart == null ? null : new Date(new Date('1970-01-01 ' + v.timeStart).getTime() - (new Date('1970-01-01 ' + v.timeStart).getTimezoneOffset() * 60000)).toISOString(),
|
|
timeEnd: v.timeEnd == null ? null : new Date(new Date('1970-01-01 ' + v.timeEnd).getTime() - (new Date('1970-01-01 ' + v.timeEnd).getTimezoneOffset() * 60000)).toISOString(),
|
|
}))
|
|
|
|
const dataDetailCreate = await prisma.divisionProjectTaskDetail.createMany({
|
|
data: dataDetailFix
|
|
})
|
|
}
|
|
|
|
// const cek progress
|
|
const dataTask = await prisma.divisionProjectTask.findMany({
|
|
where: {
|
|
isActive: true,
|
|
idProject: id
|
|
}
|
|
})
|
|
|
|
const semua = dataTask.length
|
|
const selesai = _.filter(dataTask, { status: 1 }).length
|
|
const progress = Math.ceil((selesai / semua) * 100)
|
|
let statusProject = 1
|
|
|
|
if (progress == 100) {
|
|
statusProject = 2
|
|
} else if (progress == 0) {
|
|
statusProject = 0
|
|
}
|
|
|
|
const updProject = await prisma.divisionProject.update({
|
|
where: {
|
|
id: id
|
|
},
|
|
data: {
|
|
status: statusProject
|
|
}
|
|
})
|
|
|
|
// create log user
|
|
const log = await createLogUserMobile({ act: 'CREATE', desc: 'User menambahkan detail tugas divisi', table: 'divisionProjectTask', data: create.id, user: userMobile.id })
|
|
|
|
return NextResponse.json({ success: true, message: "Detail tugas berhasil ditambahkan", data, }, { status: 200 });
|
|
} catch (error) {
|
|
console.error(error);
|
|
return NextResponse.json({ success: false, message: "Gagal mengedit detail tugas, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// PEMBATALAN TASK DIVISI
|
|
export async function DELETE(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
const { id } = context.params;
|
|
const { reason, user } = (await request.json());
|
|
|
|
const userMobile = await funGetUserById({ id: String(user) })
|
|
if (userMobile.id == "null" || userMobile.id == undefined || userMobile.id == "") {
|
|
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
|
|
}
|
|
|
|
const data = await prisma.divisionProject.count({
|
|
where: {
|
|
id: id,
|
|
},
|
|
});
|
|
|
|
if (data == 0) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: "Pembatalan tugas gagal, data tugas tidak ditemukan",
|
|
},
|
|
{ status: 200 }
|
|
);
|
|
}
|
|
|
|
const update = await prisma.divisionProject.update({
|
|
where: {
|
|
id
|
|
},
|
|
data: {
|
|
reason: reason,
|
|
status: 3
|
|
}
|
|
});
|
|
|
|
// create log user
|
|
const log = await createLogUserMobile({ act: 'UPDATE', desc: 'User membatalkan tugas divisi', table: 'divisionProject', data: id, user: userMobile.id })
|
|
|
|
return NextResponse.json({ success: true, message: "Tugas berhasil dibatalkan", }, { status: 200 });
|
|
} catch (error) {
|
|
console.error(error);
|
|
return NextResponse.json({ success: false, message: "Gagal membatalkan tugas, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
|
|
}
|
|
}
|
|
|
|
|
|
// EDIT TASK DIVISI
|
|
export async function PUT(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
const { id } = context.params;
|
|
const { title, user } = (await request.json());
|
|
|
|
const userMobile = await funGetUserById({ id: String(user) })
|
|
if (userMobile.id == "null" || userMobile.id == undefined || userMobile.id == "") {
|
|
return NextResponse.json({ success: false, message: "Anda harus login untuk mengakses ini" }, { status: 200 });
|
|
}
|
|
|
|
const data = await prisma.divisionProject.count({
|
|
where: {
|
|
id: id,
|
|
},
|
|
});
|
|
|
|
if (data == 0) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: "Tugas gagal diedit, data tugas tidak ditemukan",
|
|
},
|
|
{ status: 200 }
|
|
);
|
|
}
|
|
|
|
const update = await prisma.divisionProject.update({
|
|
where: {
|
|
id
|
|
},
|
|
data: {
|
|
title
|
|
}
|
|
});
|
|
|
|
// create log user
|
|
const log = await createLogUserMobile({ act: 'UPDATE', desc: 'User mengupdate data tugas divisi', table: 'divisionProject', data: id, user: userMobile.id })
|
|
|
|
return NextResponse.json({ success: true, message: "Tugas berhasil diedit", }, { status: 200 });
|
|
} catch (error) {
|
|
console.error(error);
|
|
return NextResponse.json({ success: false, message: "Gagal mengedit tugas, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });
|
|
}
|
|
}
|
|
|