Deskripsi: - update api berdasarkan kategori data - update tampilan untuk role user dan coadmin di kasih filter berdasarkan data - tulisan filter by menjadi filter No Issues
301 lines
11 KiB
TypeScript
301 lines
11 KiB
TypeScript
"use client"
|
|
import { currentScroll, globalNotifPage, globalRole, ReloadButtonTop, SkeletonList, TEMA } from '@/module/_global';
|
|
import { useHookstate } from '@hookstate/core';
|
|
import { ActionIcon, Avatar, Badge, Box, Card, Center, Divider, Flex, Grid, Group, Skeleton, Text, TextInput, Title } from '@mantine/core';
|
|
import { useMediaQuery, useShallowEffect } from '@mantine/hooks';
|
|
import _ from 'lodash';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import { useEffect, useState } from 'react';
|
|
import toast from 'react-hot-toast';
|
|
import { HiMagnifyingGlass, HiMiniPresentationChartBar, HiOutlineListBullet, HiSquares2X2 } from 'react-icons/hi2';
|
|
import { MdAccountCircle } from 'react-icons/md';
|
|
import { funGetAllProject } from '../lib/api_project';
|
|
import { IDataProject } from '../lib/type_project';
|
|
|
|
export default function ListProject() {
|
|
const [isList, setIsList] = useState(false)
|
|
const router = useRouter()
|
|
const [isData, setData] = useState<IDataProject[]>([])
|
|
const [loading, setLoading] = useState(true);
|
|
const searchParams = useSearchParams()
|
|
const status = searchParams.get('status')
|
|
const group = searchParams.get('group')
|
|
const kategori = searchParams.get('cat')
|
|
const [searchQuery, setSearchQuery] = useState('')
|
|
const roleLogin = useHookstate(globalRole)
|
|
const [nameGroup, setNameGroup] = useState('')
|
|
const tema = useHookstate(TEMA)
|
|
const { value: containerRef } = useHookstate(currentScroll)
|
|
const [isPage, setPage] = useState(1)
|
|
const [totalData, setTotalData] = useState(0)
|
|
const isMobile = useMediaQuery('(max-width: 369px)');
|
|
const paddingLift = useMediaQuery('(max-width: 505px)')
|
|
const [isRefresh, setRefresh] = useState(false)
|
|
const notifLoadPage = useHookstate(globalNotifPage)
|
|
|
|
const handleList = () => {
|
|
setIsList(!isList)
|
|
}
|
|
|
|
const fetchData = async (loading: boolean) => {
|
|
try {
|
|
if (loading)
|
|
setLoading(true)
|
|
if (isPage == 1) {
|
|
setData([])
|
|
}
|
|
const response = await funGetAllProject('?status=' + status + '&search=' + searchQuery + '&group=' + group + '&page=' + isPage + '&cat=' + kategori);
|
|
if (response.success) {
|
|
setNameGroup(response.filter.name)
|
|
setTotalData(response.total)
|
|
if (isPage == 1) {
|
|
setData(response.data)
|
|
} else {
|
|
setData((isData) => [...isData, ...response.data])
|
|
}
|
|
} else {
|
|
toast.error(response.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error("Gagal mendapatkan kegiatan, coba lagi nanti");
|
|
console.error(error);
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
|
|
useShallowEffect(() => {
|
|
setPage(1)
|
|
fetchData(true);
|
|
}, [status, searchQuery, kategori]);
|
|
|
|
|
|
useShallowEffect(() => {
|
|
fetchData(false)
|
|
}, [isPage])
|
|
|
|
useEffect(() => {
|
|
const handleScroll = async () => {
|
|
if (containerRef && containerRef.current) {
|
|
const scrollTop = containerRef.current.scrollTop;
|
|
const containerHeight = containerRef.current.clientHeight;
|
|
const scrollHeight = containerRef.current.scrollHeight;
|
|
|
|
if (scrollTop + containerHeight + 1 >= scrollHeight) {
|
|
setPage(isPage + 1)
|
|
}
|
|
}
|
|
};
|
|
|
|
const container = containerRef?.current;
|
|
container?.addEventListener("scroll", handleScroll);
|
|
|
|
return () => {
|
|
container?.removeEventListener("scroll", handleScroll);
|
|
};
|
|
}, [containerRef, isPage]);
|
|
|
|
useShallowEffect(() => {
|
|
if (notifLoadPage.get().category == 'project' && notifLoadPage.get().load == true) {
|
|
setRefresh(true)
|
|
}
|
|
}, [notifLoadPage.get().load])
|
|
|
|
function onRefresh() {
|
|
notifLoadPage.set({
|
|
category: '',
|
|
load: false
|
|
})
|
|
setRefresh(false)
|
|
setPage(1)
|
|
setTimeout(() => {
|
|
fetchData(true)
|
|
}, 500)
|
|
}
|
|
|
|
return (
|
|
<Box mt={20}>
|
|
{
|
|
isRefresh &&
|
|
<ReloadButtonTop
|
|
onReload={() => { onRefresh() }}
|
|
title='UPDATE'
|
|
/>
|
|
|
|
}
|
|
<Grid justify='center' align='center'>
|
|
<Grid.Col span={10}>
|
|
<TextInput
|
|
styles={{
|
|
input: {
|
|
color: tema.get().utama,
|
|
borderRadius: '#A3A3A3',
|
|
borderColor: '#A3A3A3',
|
|
},
|
|
}}
|
|
size="md"
|
|
radius={30}
|
|
leftSection={<HiMagnifyingGlass size={20} />}
|
|
placeholder="Pencarian"
|
|
onChange={(event) => setSearchQuery(event.currentTarget.value)}
|
|
value={searchQuery}
|
|
/>
|
|
</Grid.Col>
|
|
<Grid.Col span={'auto'}>
|
|
<Flex justify={'center'}>
|
|
{isList ? (
|
|
<HiOutlineListBullet size={35} color={tema.get().utama} onClick={handleList} />
|
|
) : (
|
|
<HiSquares2X2 size={35} color={tema.get().utama} onClick={handleList} />
|
|
)}
|
|
</Flex>
|
|
</Grid.Col>
|
|
</Grid>
|
|
<Box pt={20}>
|
|
{roleLogin.get() == 'supadmin' && <Text mb={5}>Filter : {nameGroup}</Text>}
|
|
{(roleLogin.get() == 'user' || roleLogin.get() == 'coadmin') && <Text mb={5}>Filter : {(kategori == null || kategori == undefined || kategori == '') ? 'Kegiatan Saya' : 'Semua Kegiatan'}</Text>}
|
|
<Box bg={tema.get().bgTotalKegiatan} p={10} style={{ borderRadius: 10 }}>
|
|
<Text fw={'bold'} c={tema.get().utama}>Total Kegiatan</Text>
|
|
<Flex justify={'center'} align={'center'} h={'100%'}>
|
|
<Text fz={40} fw={'bold'} c={tema.get().utama}>{loading ? 0 : totalData}</Text>
|
|
</Flex>
|
|
</Box>
|
|
{isList ? (
|
|
<Box pt={20}>
|
|
{loading ?
|
|
Array(3)
|
|
.fill(null)
|
|
.map((_, i) => (
|
|
<Box key={i}>
|
|
<SkeletonList />
|
|
</Box>
|
|
))
|
|
:
|
|
_.isEmpty(isData)
|
|
?
|
|
<Box style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '50vh' }}>
|
|
<Text c="dimmed" ta={"center"} fs={"italic"}>Tidak ada Kegiatan</Text>
|
|
</Box>
|
|
:
|
|
isData.map((v, i) => {
|
|
return (
|
|
<Box key={i}>
|
|
<Grid align='center' onClick={() => router.push(`/project/${v.id}`)}>
|
|
<Grid.Col span={{
|
|
base: 1,
|
|
xs: 1,
|
|
sm: 1,
|
|
md: 1,
|
|
lg: 1,
|
|
xl: 1
|
|
}}>
|
|
<Group >
|
|
<Center>
|
|
<ActionIcon
|
|
variant="gradient"
|
|
size={50}
|
|
aria-label="Gradient action icon"
|
|
radius={100}
|
|
bg={tema.get().bgFiturHome}
|
|
>
|
|
<HiMiniPresentationChartBar size={25} color={tema.get().utama} />
|
|
</ActionIcon>
|
|
</Center>
|
|
</Group>
|
|
</Grid.Col>
|
|
<Grid.Col span={{
|
|
base: 11,
|
|
xs: 11,
|
|
sm: 11,
|
|
md: 11,
|
|
lg: 11,
|
|
xl: 11,
|
|
}}>
|
|
<Group justify='space-between' align='center'>
|
|
<Box>
|
|
<Box w={{
|
|
base: isMobile ? 200 : 230,
|
|
xl: 430
|
|
}}>
|
|
<Text truncate="end" pl={paddingLift ? 30 : 20}>
|
|
{v.title}
|
|
</Text>
|
|
</Box>
|
|
</Box>
|
|
</Group>
|
|
</Grid.Col>
|
|
</Grid>
|
|
<Divider my="sm" />
|
|
</Box>
|
|
);
|
|
})
|
|
}
|
|
</Box>
|
|
) : (
|
|
<Box pt={20}>
|
|
{loading ?
|
|
Array(3)
|
|
.fill(null)
|
|
.map((_, i) => (
|
|
<Box key={i} mb={20}>
|
|
<Skeleton width={"100%"} height={200} radius={"md"} />
|
|
</Box>
|
|
))
|
|
:
|
|
_.isEmpty(isData)
|
|
?
|
|
<Box style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', height: '50vh' }}>
|
|
<Text c="dimmed" ta={"center"} fs={"italic"}>Tidak ada Kegiatan</Text>
|
|
</Box>
|
|
:
|
|
isData.map((v, i) => {
|
|
return (
|
|
<Box key={i} mb={20}>
|
|
<Card shadow="sm" padding="md" component="a" radius={10} onClick={() => router.push(`/project/${v.id}`)}>
|
|
<Card.Section>
|
|
<Box h={120} bg={tema.get().utama}>
|
|
<Flex justify={'center'} align={'center'} h={"100%"} pl={20} pr={20}>
|
|
<Title order={3} c={"white"} ta={"center"} lineClamp={2}>{v.title}</Title>
|
|
</Flex>
|
|
</Box>
|
|
</Card.Section>
|
|
<Box pt={10}>
|
|
<Text>{v.desc}</Text>
|
|
<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 ? 'Dibatalkan' :
|
|
""
|
|
}</Badge>
|
|
<Avatar.Group>
|
|
<Avatar>
|
|
<MdAccountCircle size={32} color={tema.get().utama} />
|
|
</Avatar>
|
|
<Avatar>{(v.member == 0) ? "0" : "+" + (v.member - 1)}</Avatar>
|
|
</Avatar.Group>
|
|
</Group>
|
|
</Box>
|
|
</Card>
|
|
</Box>
|
|
);
|
|
})
|
|
}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
</Box >
|
|
);
|
|
}
|
|
|
|
|
|
|