Merge pull request #400 from bipproduction/amalia/05-feb-25

Amalia/05 feb 25
This commit is contained in:
Amalia
2025-02-05 15:46:17 +08:00
committed by GitHub
12 changed files with 116 additions and 27 deletions

BIN
bun.lockb

Binary file not shown.

View File

@@ -50,6 +50,7 @@
"react-dom": "^18", "react-dom": "^18",
"react-hot-toast": "^2.4.1", "react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1", "react-icons": "^5.2.1",
"react-zoom-pan-pinch": "^3.7.0",
"readdirp": "^3.6.0", "readdirp": "^3.6.0",
"recharts": "2", "recharts": "2",
"rrule": "^2.8.1", "rrule": "^2.8.1",

View File

@@ -3,6 +3,8 @@ import { funGetUserByCookies } from "@/module/auth";
import { createLogUser } from "@/module/user"; import { createLogUser } from "@/module/user";
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
// HAPUS PROJECT YG TELAH DIBATALKAN
export async function DELETE(request: Request, context: { params: { id: string } }) { export async function DELETE(request: Request, context: { params: { id: string } }) {
try { try {
const user = await funGetUserByCookies() const user = await funGetUserByCookies()
@@ -37,7 +39,7 @@ export async function DELETE(request: Request, context: { params: { id: string }
// create log user // create log user
const log = await createLogUser({ act: 'DELETE', desc: 'User menghapus data kegiatan', table: 'project', data: String(id) }) const log = await createLogUser({ act: 'DELETE', desc: 'User menghapus data kegiatan', table: 'project', data: String(id) })
return NextResponse.json({ success: true, message: "Kegiatan berhasil dihapus" }, { status: 200 }); return NextResponse.json({ success: true, message: "Kegiatan berhasil dihapus", user: user.id }, { status: 200 });
} catch (error) { } catch (error) {
console.error(error); console.error(error);

View File

@@ -1,7 +1,7 @@
import { DIR, funSendWebPush, funUploadFile, prisma } from "@/module/_global"; import { DIR, funSendWebPush, funUploadFile, prisma } from "@/module/_global";
import { funGetUserByCookies } from "@/module/auth"; import { funGetUserByCookies } from "@/module/auth";
import { createLogUser } from "@/module/user"; import { createLogUser } from "@/module/user";
import _ from "lodash"; import _, { ceil } from "lodash";
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
@@ -94,6 +94,15 @@ export async function GET(request: Request) {
select: { select: {
idUser: true idUser: true
} }
},
ProjectTask: {
where: {
isActive: true
},
select: {
title: true,
status: true
}
} }
}, },
orderBy: { orderBy: {
@@ -102,11 +111,11 @@ export async function GET(request: Request) {
}) })
const omitData = data.map((v: any) => ({ const omitData = data.map((v: any) => ({
..._.omit(v, ["ProjectMember"]), ..._.omit(v, ["ProjectMember", "ProjectTask"]),
progress: ceil((v.ProjectTask.filter((i: any) => i.status == 1).length * 100) / v.ProjectTask.length),
member: v.ProjectMember.length member: v.ProjectMember.length
})) }))
const totalData = await prisma.project.count({ const totalData = await prisma.project.count({
where: kondisi where: kondisi
}) })

View File

@@ -3,7 +3,7 @@ import { funGetUserByCookies } from "@/module/auth";
import { createLogUser } from "@/module/user"; import { createLogUser } from "@/module/user";
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
// PEMBATALAN TASK DIVISI // PENGHAPUSAN TUGAS DIVISI
export async function DELETE(request: Request, context: { params: { id: string } }) { export async function DELETE(request: Request, context: { params: { id: string } }) {
try { try {
const user = await funGetUserByCookies() const user = await funGetUserByCookies()
@@ -40,7 +40,7 @@ export async function DELETE(request: Request, context: { params: { id: string }
// create log user // create log user
const log = await createLogUser({ act: 'DELETE', desc: 'User menghapus tugas divisi', table: 'divisionProject', data: id }) const log = await createLogUser({ act: 'DELETE', desc: 'User menghapus tugas divisi', table: 'divisionProject', data: id })
return NextResponse.json({ success: true, message: "Tugas berhasil dihapuskan", }, { status: 200 }); return NextResponse.json({ success: true, message: "Tugas berhasil dihapuskan", user: user.id }, { status: 200 });
} catch (error) { } catch (error) {
console.error(error); console.error(error);
return NextResponse.json({ success: false, message: "Gagal menghapus tugas, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 }); return NextResponse.json({ success: false, message: "Gagal menghapus tugas, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });

View File

@@ -2,7 +2,7 @@ import { NextResponse } from "next/server";
export async function GET(request: Request) { export async function GET(request: Request) {
try { try {
return NextResponse.json({ success: true, version: "1.2.3", tahap: "beta", update:"-nama grup darmasaba jadi lembaga desa, -menampilkan user role pada profile pada detail anggota, -fitur hapus pada data yg telah dibatalkan pada fitur kegiatan dan tugas divisi" }, { status: 200 }); return NextResponse.json({ success: true, version: "1.2.3", tahap: "beta", update:"-nama grup darmasaba jadi lembaga desa, -menampilkan user role pada profile pada detail anggota, -fitur hapus pada data yg telah dibatalkan pada fitur kegiatan dan tugas divisi, -zoom in out gesture pada view file pdf dan image" }, { status: 200 });
} catch (error) { } catch (error) {
console.error(error); console.error(error);
return NextResponse.json({ success: false, version: "Gagal mendapatkan version, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 }); return NextResponse.json({ success: false, version: "Gagal mendapatkan version, coba lagi nanti (error: 500)", reason: (error as Error).message, }, { status: 500 });

View File

@@ -4,6 +4,7 @@ import { useShallowEffect } from '@mantine/hooks';
import dynamic from 'next/dynamic'; import dynamic from 'next/dynamic';
import { useState } from 'react'; import { useState } from 'react';
import toast from 'react-hot-toast'; import toast from 'react-hot-toast';
import { TransformComponent, TransformWrapper } from "react-zoom-pan-pinch";
import { funReadPdf } from '../fun/read_pdf'; import { funReadPdf } from '../fun/read_pdf';
const PdfToImage = dynamic(() => import('./../components/pdf_viewer').then((mod) => mod.default), { ssr: false }); const PdfToImage = dynamic(() => import('./../components/pdf_viewer').then((mod) => mod.default), { ssr: false });
@@ -42,6 +43,8 @@ export default function LayoutModal({ opened, onClose, extension, fitur, name, f
useShallowEffect(() => { useShallowEffect(() => {
if (extension == "pdf") { if (extension == "pdf") {
getPdfToImg(1) getPdfToImg(1)
} else {
setLoadingPdf(false)
} }
}, [file, extension]) }, [file, extension])
@@ -74,12 +77,11 @@ export default function LayoutModal({ opened, onClose, extension, fitur, name, f
zIndex: 999, zIndex: 999,
}} }}
> >
<Group justify="space-between"> <Group justify="flex-start">
<Flex direction="row" gap="xs" align="center"> {/* <Flex direction="row" gap="xs" align="center">
<Button variant="light" onClick={handleZoomOut}> - </Button> <Button variant="light" onClick={handleZoomOut}> - </Button>
<Button variant="light" onClick={handleZoomIn}> + </Button> <Button variant="light" onClick={handleZoomIn}> + </Button>
</Flex> </Flex> */}
{ {
extension == "pdf" && extension == "pdf" &&
<Flex direction="row" gap="xs" align="center"> <Flex direction="row" gap="xs" align="center">
@@ -98,7 +100,47 @@ export default function LayoutModal({ opened, onClose, extension, fitur, name, f
paddingLeft: 10, paddingLeft: 10,
paddingRight: 10 paddingRight: 10
}}> }}>
<div style={{ transform: `scale(${zoom})`, transformOrigin: 'center' }}> {
loadingPdf ?
<Stack p="md" align="stretch" justify="center">
{[...Array(1)].map((_, index) => (
<Skeleton key={index} height={500} />
))}
</Stack>
:
<TransformWrapper>
<TransformComponent>
{
extension === 'pdf' ?
<>
{dataPdf.map((item: any, index: any) => (
<Image
style={{
maxWidth: '100%',
maxHeight: '100%',
}}
fit="contain"
alt={file}
key={index}
src={item.imageUrl}
/>
))}
</>
:
<Image
style={{
maxWidth: '100%',
maxHeight: '100%',
}}
fit="contain"
src={`https://wibu-storage.wibudev.com/api/files/${file}`}
alt={file}
/>
}
</TransformComponent>
</TransformWrapper>
}
{/* <div style={{ transform: `scale(${zoom})`, transformOrigin: 'center' }}>
{ {
extension === 'pdf' ? extension === 'pdf' ?
// <PdfToImage md={`https://wibu-storage.wibudev.com/api/files/${file}`} /> // <PdfToImage md={`https://wibu-storage.wibudev.com/api/files/${file}`} />
@@ -130,7 +172,7 @@ export default function LayoutModal({ opened, onClose, extension, fitur, name, f
alt={file} alt={file}
/> />
} }
</div> </div> */}
</Box> </Box>
</Modal.Body> </Modal.Body>
</Modal.Content> </Modal.Content>

View File

@@ -4,6 +4,7 @@ export interface IDataProject {
desc: string desc: string
status: number status: number
member: number member: number
progress: number
} }
export interface IDataListTaskProject { export interface IDataListTaskProject {

View File

@@ -1,7 +1,7 @@
"use client" "use client"
import { currentScroll, globalNotifPage, globalRole, ReloadButtonTop, SkeletonList, TEMA } from '@/module/_global'; import { currentScroll, globalNotifPage, globalRole, ReloadButtonTop, SkeletonList, TEMA } from '@/module/_global';
import { useHookstate } from '@hookstate/core'; import { useHookstate } from '@hookstate/core';
import { ActionIcon, Avatar, Badge, Box, Card, Center, Divider, Flex, Grid, Group, Skeleton, Text, TextInput, Title } from '@mantine/core'; import { ActionIcon, Avatar, Badge, Box, Card, Center, Divider, Flex, Grid, Group, Progress, Skeleton, Text, TextInput, Title } from '@mantine/core';
import { useMediaQuery, useShallowEffect } from '@mantine/hooks'; import { useMediaQuery, useShallowEffect } from '@mantine/hooks';
import _ from 'lodash'; import _ from 'lodash';
import { useRouter, useSearchParams } from 'next/navigation'; import { useRouter, useSearchParams } from 'next/navigation';
@@ -260,8 +260,16 @@ export default function ListProject() {
</Flex> </Flex>
</Box> </Box>
</Card.Section> </Card.Section>
<Box pt={10}> <Box pt={15}>
<Text>{v.desc}</Text> {
v.status > 0 &&
<Progress.Root size="xl" radius="xl" style={{ border: `1px solid ${'#BDBDBD'}` }}>
<Progress.Section value={_.isNull(v.progress) ? 0 : v.progress} color="yellow" striped >
<Progress.Label>{_.isNull(v.progress) ? 0 : v.progress}%</Progress.Label>
</Progress.Section>
</Progress.Root>
}
<Text lineClamp={2} my={v.status > 0 ? 10 : 0}>{v.desc}</Text>
<Group align='center' pt={10} justify='space-between'> <Group align='center' pt={10} justify='space-between'>
<Badge color={ <Badge color={
v.status === 0 ? '#1372C4' : v.status === 0 ? '#1372C4' :
@@ -273,7 +281,7 @@ export default function ListProject() {
v.status === 0 ? 'Segera' : v.status === 0 ? 'Segera' :
v.status === 1 ? 'Dikerjakan' : v.status === 1 ? 'Dikerjakan' :
v.status === 2 ? 'Selesai' : v.status === 2 ? 'Selesai' :
v.status === 3 ? 'Dibatalkan' : v.status === 3 ? 'Batal' :
"" ""
}</Badge> }</Badge>
<Avatar.Group> <Avatar.Group>

View File

@@ -1,6 +1,7 @@
'use client' 'use client'
import { globalRole, keyWibu, LayoutDrawer, LayoutNavbarNew, TEMA } from '@/module/_global'; import { globalRole, keyWibu, LayoutDrawer, LayoutNavbarNew, TEMA } from '@/module/_global';
import LayoutModal from '@/module/_global/layout/layout_modal'; import LayoutModal from '@/module/_global/layout/layout_modal';
import { funGetUserByCookies } from '@/module/auth';
import { useHookstate } from '@hookstate/core'; import { useHookstate } from '@hookstate/core';
import { ActionIcon, Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core'; import { ActionIcon, Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
import { useShallowEffect } from '@mantine/hooks'; import { useShallowEffect } from '@mantine/hooks';
@@ -23,6 +24,7 @@ export default function NavbarDetailProject() {
const [isOpen, setOpen] = useState(false) const [isOpen, setOpen] = useState(false)
const roleLogin = useHookstate(globalRole) const roleLogin = useHookstate(globalRole)
const memberProject = useHookstate(globalIsMemberProject) const memberProject = useHookstate(globalIsMemberProject)
const [isUser, setUser] = useState('')
const tema = useHookstate(TEMA) const tema = useHookstate(TEMA)
const [reason, setReason] = useState("") const [reason, setReason] = useState("")
const [openModal, setOpenModal] = useState(false) const [openModal, setOpenModal] = useState(false)
@@ -35,10 +37,12 @@ export default function NavbarDetailProject() {
async function getOneData() { async function getOneData() {
try { try {
const res = await funGetOneProjectById(param.id, 'data'); const res = await funGetOneProjectById(param.id, 'data');
const userLogin = await funGetUserByCookies()
if (res.success) { if (res.success) {
setName(res.data.title); setName(res.data.title);
setReason(res.data.reason); setReason(res.data.reason);
setGrup(res.data.idGroup); setGrup(res.data.idGroup);
setUser(String(userLogin?.id))
} else { } else {
toast.error(res.message); toast.error(res.message);
} }
@@ -56,6 +60,7 @@ export default function NavbarDetailProject() {
setDataRealtime([{ setDataRealtime([{
category: "project-delete", category: "project-delete",
id: param.id, id: param.id,
user: res.user
}]) }])
toast.success(res.message) toast.success(res.message)
router.push("/project") router.push("/project")
@@ -80,7 +85,7 @@ export default function NavbarDetailProject() {
getOneData() getOneData()
} }
if (dataRealTime && dataRealTime.some((i: any) => (i.category == 'project-delete') && i.id == param.id)) { if (dataRealTime && dataRealTime.some((i: any) => i.category == 'project-delete' && i.id == param.id && i.user != isUser)) {
toast.error("Data telah dihapus, anda akan beralih ke halaman list kegiatan") toast.error("Data telah dihapus, anda akan beralih ke halaman list kegiatan")
setTimeout(() => { setTimeout(() => {
router.push("/project") router.push("/project")

View File

@@ -1,6 +1,6 @@
import { currentScroll, globalNotifPage, ReloadButtonTop, SkeletonList, TEMA } from "@/module/_global"; import { currentScroll, globalNotifPage, ReloadButtonTop, SkeletonList, TEMA } from "@/module/_global";
import { useHookstate } from "@hookstate/core"; import { useHookstate } from "@hookstate/core";
import { ActionIcon, Avatar, Box, Card, Center, Divider, Flex, Grid, Group, Progress, Skeleton, Text, TextInput, Title } from "@mantine/core"; import { ActionIcon, Avatar, Badge, Box, Card, Center, Divider, Flex, Grid, Group, Progress, Skeleton, Text, TextInput, Title } from "@mantine/core";
import { useMediaQuery, useShallowEffect } from "@mantine/hooks"; import { useMediaQuery, useShallowEffect } from "@mantine/hooks";
import _ from "lodash"; import _ from "lodash";
import { useParams, useRouter, useSearchParams } from "next/navigation"; import { useParams, useRouter, useSearchParams } from "next/navigation";
@@ -246,14 +246,30 @@ export default function ListDivisionTask() {
</Flex> </Flex>
</Box> </Box>
</Card.Section> </Card.Section>
<Box pt={10}> <Box pt={15}>
{
v.status > 0 &&
<Progress.Root size="xl" radius="xl" style={{ border: `1px solid ${'#BDBDBD'}` }}> <Progress.Root size="xl" radius="xl" style={{ border: `1px solid ${'#BDBDBD'}` }}>
<Progress.Section value={_.isNull(v.progress) ? 0 : v.progress} color="yellow" striped > <Progress.Section value={_.isNull(v.progress) ? 0 : v.progress} color="yellow" striped >
<Progress.Label>{_.isNull(v.progress) ? 0 : v.progress}%</Progress.Label> <Progress.Label>{_.isNull(v.progress) ? 0 : v.progress}%</Progress.Label>
</Progress.Section> </Progress.Section>
</Progress.Root> </Progress.Root>
<Text my={10}>{v.desc}</Text> }
<Text lineClamp={2} my={v.status > 0 ? 10 : 0}>{v.desc}</Text>
<Group align='center' pt={10} justify='space-between'> <Group align='center' pt={10} justify='space-between'>
<Badge color={
v.status === 0 ? '#1372C4' :
v.status === 1 ? '#C5771A' :
v.status === 2 ? '#0B6025' :
v.status === 3 ? '#BB1F1F' :
""
}>{
v.status === 0 ? 'Segera' :
v.status === 1 ? 'Dikerjakan' :
v.status === 2 ? 'Selesai' :
v.status === 3 ? 'Batal' :
""
}</Badge>
<Avatar.Group> <Avatar.Group>
<Avatar> <Avatar>
<MdAccountCircle size={32} color={tema.get().utama} /> <MdAccountCircle size={32} color={tema.get().utama} />

View File

@@ -14,6 +14,7 @@ import { MdCancel } from "react-icons/md";
import { funDeleteTask, funGetTaskDivisionById } from "../lib/api_task"; import { funDeleteTask, funGetTaskDivisionById } from "../lib/api_task";
import { useWibuRealtime } from "wibu-realtime"; import { useWibuRealtime } from "wibu-realtime";
import LayoutModal from "@/module/_global/layout/layout_modal"; import LayoutModal from "@/module/_global/layout/layout_modal";
import { funGetUserByCookies } from "@/module/auth";
export default function NavbarDetailDivisionTask() { export default function NavbarDetailDivisionTask() {
const router = useRouter() const router = useRouter()
@@ -25,6 +26,7 @@ export default function NavbarDetailDivisionTask() {
const memberDivision = useHookstate(globalIsMemberDivision) const memberDivision = useHookstate(globalIsMemberDivision)
const tema = useHookstate(TEMA) const tema = useHookstate(TEMA)
const [reason, setReason] = useState("") const [reason, setReason] = useState("")
const [isUser, setUser] = useState('')
const [loadingModal, setLoadingModal] = useState(false) const [loadingModal, setLoadingModal] = useState(false)
const [openModal, setOpenModal] = useState(false) const [openModal, setOpenModal] = useState(false)
const [dataRealTime, setDataRealtime] = useWibuRealtime({ const [dataRealTime, setDataRealtime] = useWibuRealtime({
@@ -35,9 +37,11 @@ export default function NavbarDetailDivisionTask() {
async function getOneData() { async function getOneData() {
try { try {
const res = await funGetTaskDivisionById(param.detail, 'data'); const res = await funGetTaskDivisionById(param.detail, 'data');
const userLogin = await funGetUserByCookies()
if (res.success) { if (res.success) {
setName(res.data.title); setName(res.data.title);
setReason(res.data.reason); setReason(res.data.reason);
setUser(String(userLogin?.id))
} else { } else {
toast.error(res.message); toast.error(res.message);
} }
@@ -56,6 +60,7 @@ export default function NavbarDetailDivisionTask() {
setDataRealtime([{ setDataRealtime([{
category: "tugas-delete", category: "tugas-delete",
id: param.detail, id: param.detail,
user: res.user
}]) }])
toast.success(res.message) toast.success(res.message)
router.push("/division/" + param.id + "/task") router.push("/division/" + param.id + "/task")
@@ -81,7 +86,7 @@ export default function NavbarDetailDivisionTask() {
getOneData() getOneData()
} }
if (dataRealTime && dataRealTime.some((i: any) => i.category == 'tugas-delete' && i.id == param.detail)) { if (dataRealTime && dataRealTime.some((i: any) => i.category == 'tugas-delete' && i.id == param.detail && i.user != isUser)) {
toast.error("Data telah dihapus, anda akan beralih ke halaman list tugas divisi") toast.error("Data telah dihapus, anda akan beralih ke halaman list tugas divisi")
setTimeout(() => { setTimeout(() => {
router.push("/division/" + param.id + "/task") router.push("/division/" + param.id + "/task")