upd: calender

Deskripsi:
- repeat pengulangan
- install new package
- tambah field table
- ubah semua api mengikuti struktur tb baru

No Issues
This commit is contained in:
amel
2024-09-09 16:34:38 +08:00
parent 789fda0b02
commit 61e3431f9c
15 changed files with 330 additions and 155 deletions

View File

@@ -1,11 +1,12 @@
import { prisma } from "@/module/_global";
import { funGetUserByCookies } from "@/module/auth";
import { createLogUser } from "@/module/user";
import _ from "lodash";
import _, { remove } from "lodash";
import moment from "moment";
import { NextResponse } from "next/server";
import { Frequency, RRule } from 'rrule';
// GET ONE CALENDER
// GET ONE CALENDER BY ID KALENDER REMINDER
export async function GET(request: Request, context: { params: { id: string } }) {
try {
const user = await funGetUserByCookies()
@@ -15,7 +16,7 @@ export async function GET(request: Request, context: { params: { id: string } })
const { id } = context.params
const cek = await prisma.divisionCalendar.count({
const cek = await prisma.divisionCalendarReminder.count({
where: {
id: id
}
@@ -25,39 +26,51 @@ export async function GET(request: Request, context: { params: { id: string } })
return NextResponse.json(
{
success: false,
message: "Gagal mendapatkan calender, data tidak ditemukan",
message: "Gagal mendapatkan acara, data tidak ditemukan",
},
{ status: 404 }
);
}
const data = await prisma.divisionCalendar.findUnique({
const data: any = await prisma.divisionCalendarReminder.findUnique({
where: {
id: id
},
select: {
id: true,
title: true,
desc: true,
timeStart: true,
dateStart: true,
timeEnd: true,
createdAt: true,
linkMeet: true,
repeatEventTyper: true,
DivisionCalendar: {
select: {
id: true,
title: true,
desc: true,
linkMeet: true,
repeatEventTyper: true,
repeatValue: true,
}
}
}
});
const { ...dataCalender } = data
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 }
const result = { ...dataCalender, timeStart, timeEnd, idCalendar, title, desc, linkMeet, repeatEventTyper, repeatValue }
const member = await prisma.divisionCalendarMember.findMany({
where: {
idCalendar: id
idCalendar: data?.DivisionCalendar.id
},
select: {
id: true,
@@ -120,7 +133,7 @@ export async function DELETE(request: Request, context: { params: { id: string }
return NextResponse.json(
{
success: false,
message: "Gagal menghapus calender, data tidak ditemukan",
message: "Gagal menghapus acara kalender, data tidak ditemukan",
},
{ status: 404 }
);
@@ -138,7 +151,7 @@ export async function DELETE(request: Request, context: { params: { id: string }
// create log user
const log = await createLogUser({ act: 'DELETE', desc: 'User menghapus data acara kalender', table: 'divisionCalendar', data: id })
return NextResponse.json({ success: true, message: "Berhasil menghapus calender", data }, { status: 200 });
return NextResponse.json({ success: true, message: "Berhasil menghapus acara kalender", data }, { status: 200 });
} catch (error) {
return NextResponse.json(
@@ -151,7 +164,7 @@ export async function DELETE(request: Request, context: { params: { id: string }
}
}
// EDIT CALENDER BY ID
// EDIT CALENDER BY IDKALENDER
export async function PUT(request: Request, context: { params: { id: string } }) {
try {
@@ -162,7 +175,7 @@ export async function PUT(request: Request, context: { params: { id: string } })
const { id } = context.params
const userId = user.id
const { title, desc, timeStart, dateStart, timeEnd, linkMeet, repeatEventTyper } = await request.json()
const { title, desc, timeStart, dateStart, timeEnd, linkMeet, repeatEventTyper, repeatValue } = await request.json()
const cek = await prisma.divisionCalendar.count({
where: {
@@ -198,10 +211,48 @@ export async function PUT(request: Request, context: { params: { id: string } })
timeEnd: timeEndFix,
linkMeet: linkMeet,
repeatEventTyper: repeatEventTyper,
status: statusCalender
status: statusCalender,
repeatValue: Number(repeatValue)
},
select: {
idDivision: true
}
});
const freq: Frequency = repeatEventTyper === "yearly" ? RRule.YEARLY :
repeatEventTyper === "monthly" ? RRule.MONTHLY :
repeatEventTyper === "weekly" ? RRule.WEEKLY :
repeatEventTyper === "daily" ? RRule.DAILY :
repeatEventTyper === "hourly" ? RRule.HOURLY :
repeatEventTyper === "minutely" ? RRule.MINUTELY :
RRule.SECONDLY;
const rule = new RRule({
freq,
interval: 1,
dtstart: new Date(dateStart),
count: repeatValue
});
const hasil = rule.all().map(recurrenceDate => ({
idDivision: data.idDivision,
idCalendar: id,
dateStart: recurrenceDate,
timeStart: timeStartFix,
timeEnd: timeEndFix,
dateEnd: recurrenceDate
}));
const deleteReminder = await prisma.divisionCalendarReminder.deleteMany({
where: {
idCalendar: id
}
})
const insertReminder = await prisma.divisionCalendarReminder.createMany({
data: hasil
})
// create log user
const log = await createLogUser({ act: 'UPDATE', desc: 'User mengupdate data acara kalender', table: 'divisionCalendar', data: id })