99 lines
2.8 KiB
TypeScript
99 lines
2.8 KiB
TypeScript
import { prisma } from "@/module/_global";
|
|
import _ from "lodash";
|
|
import moment from "moment";
|
|
import { NextResponse } from "next/server";
|
|
|
|
// GET ONE CALENDER BY ID KALENDER REMINDER
|
|
export async function GET(request: Request, context: { params: { id: string } }) {
|
|
try {
|
|
const { id } = context.params
|
|
|
|
const cek = await prisma.divisionCalendarReminder.count({
|
|
where: {
|
|
id: id
|
|
}
|
|
})
|
|
|
|
if (cek == 0) {
|
|
return NextResponse.json(
|
|
{
|
|
success: false,
|
|
message: "Gagal mendapatkan acara, data tidak ditemukan",
|
|
},
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
const data: any = await prisma.divisionCalendarReminder.findUnique({
|
|
where: {
|
|
id: id
|
|
},
|
|
select: {
|
|
id: true,
|
|
timeStart: true,
|
|
dateStart: true,
|
|
timeEnd: true,
|
|
createdAt: true,
|
|
DivisionCalendar: {
|
|
select: {
|
|
id: true,
|
|
title: true,
|
|
desc: true,
|
|
linkMeet: true,
|
|
repeatEventTyper: true,
|
|
repeatValue: true,
|
|
}
|
|
}
|
|
}
|
|
});
|
|
const { DivisionCalendar, ...dataCalender } = data
|
|
const timeStart = moment.utc(dataCalender?.timeStart).format("HH:mm")
|
|
const timeEnd = moment.utc(dataCalender?.timeEnd).format("HH:mm")
|
|
const idCalendar = data?.DivisionCalendar.id
|
|
const title = data?.DivisionCalendar?.title
|
|
const desc = data?.DivisionCalendar?.desc
|
|
const linkMeet = data?.DivisionCalendar?.linkMeet
|
|
const repeatEventTyper = data?.DivisionCalendar?.repeatEventTyper
|
|
const repeatValue = data?.DivisionCalendar?.repeatValue
|
|
|
|
|
|
const result = { ...dataCalender, timeStart, timeEnd, title, desc, linkMeet, repeatEventTyper, repeatValue }
|
|
|
|
|
|
const member = await prisma.divisionCalendarMember.findMany({
|
|
where: {
|
|
idCalendar
|
|
},
|
|
select: {
|
|
id: true,
|
|
idUser: true,
|
|
User: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
email: true,
|
|
img: true
|
|
}
|
|
}
|
|
}
|
|
})
|
|
const fixMember = member.map((v: any) => ({
|
|
..._.omit(v, ["User"]),
|
|
name: v.User.name,
|
|
email: v.User.email,
|
|
img: v.User.img
|
|
}))
|
|
|
|
|
|
const dataFix = {
|
|
...result,
|
|
member: fixMember,
|
|
}
|
|
|
|
|
|
return NextResponse.json({ success: true, message: "Berhasil mendapatkan kalender", data: dataFix }, { status: 200 });
|
|
|
|
} catch (error) {
|
|
return NextResponse.json({ success: false, message: "Gagal mendapatkan kalender, data tidak ditemukan (error: 500)", }, { status: 500 });
|
|
}
|
|
} |