167 lines
5.8 KiB
TypeScript
167 lines
5.8 KiB
TypeScript
'use client'
|
|
import { LayoutDrawer, LayoutNavbarNew, WARNA } from '@/module/_global';
|
|
import { ActionIcon, Avatar, Box, Card, Center, Divider, Flex, Grid, Group, Text, TextInput, Title } from '@mantine/core';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import React, { useState } from 'react';
|
|
import { HiMenu } from 'react-icons/hi';
|
|
import { HiMagnifyingGlass, HiMiniPresentationChartBar, HiMiniUserGroup, HiOutlineListBullet, HiSquares2X2 } from 'react-icons/hi2';
|
|
import { MdAccountCircle } from 'react-icons/md';
|
|
import DrawerDivision from './drawer_division';
|
|
import { useShallowEffect } from '@mantine/hooks';
|
|
import { IDataDivison } from '../lib/type_division';
|
|
import { funGetAllDivision } from '../lib/api_division';
|
|
import toast from 'react-hot-toast';
|
|
|
|
export default function ListDivision() {
|
|
const [isList, setIsList] = useState(false)
|
|
const router = useRouter()
|
|
const [openDrawer, setOpenDrawer] = useState(false)
|
|
const [data, setData] = useState<IDataDivison[]>([])
|
|
const [jumlah, setJumlah] = useState(0)
|
|
const [searchQuery, setSearchQuery] = useState('')
|
|
const searchParams = useSearchParams()
|
|
const group = searchParams.get('group')
|
|
|
|
const handleList = () => {
|
|
setIsList(!isList)
|
|
}
|
|
|
|
const fetchData = async (search: string) => {
|
|
try {
|
|
setData([]);
|
|
const response = await funGetAllDivision('?search=' + search + '&group=' + group)
|
|
|
|
if (response.success) {
|
|
setData(response.data)
|
|
setJumlah(response.data.length)
|
|
} else {
|
|
toast.error(response.message);
|
|
}
|
|
|
|
} catch (error) {
|
|
toast.error("Gagal mendapatkan divisi, coba lagi nanti");
|
|
console.error(error);
|
|
}
|
|
};
|
|
|
|
function searchDivision(search: string) {
|
|
setSearchQuery(search)
|
|
fetchData(search)
|
|
}
|
|
|
|
useShallowEffect(() => {
|
|
fetchData(searchQuery)
|
|
}, [searchQuery])
|
|
|
|
|
|
|
|
return (
|
|
<Box>
|
|
<LayoutNavbarNew back='/home' title='Divisi'
|
|
menu={<ActionIcon variant="light" onClick={() => (setOpenDrawer(true))} bg={WARNA.bgIcon} size="lg" radius="lg" aria-label="Settings">
|
|
<HiMenu size={20} color='white' />
|
|
</ActionIcon>} />
|
|
<Box p={20}>
|
|
<Grid justify='center' align='center'>
|
|
<Grid.Col span={10}>
|
|
<TextInput
|
|
styles={{
|
|
input: {
|
|
color: WARNA.biruTua,
|
|
borderRadius: '#A3A3A3',
|
|
borderColor: '#A3A3A3',
|
|
},
|
|
}}
|
|
size="md"
|
|
radius={30}
|
|
leftSection={<HiMagnifyingGlass size={20} />}
|
|
placeholder="Pencarian"
|
|
value={searchQuery}
|
|
onChange={(val) => { searchDivision(val.target.value) }}
|
|
/>
|
|
</Grid.Col>
|
|
<Grid.Col span={'auto'}>
|
|
<Flex justify={'center'}>
|
|
{isList ? (
|
|
<HiOutlineListBullet size={35} color={WARNA.biruTua} onClick={handleList} />
|
|
) : (
|
|
<HiSquares2X2 size={35} color={WARNA.biruTua} onClick={handleList} />
|
|
)}
|
|
</Flex>
|
|
</Grid.Col>
|
|
</Grid>
|
|
<Box pt={20}>
|
|
<Box bg={WARNA.biruTua} p={10} style={{ borderRadius: 10 }}>
|
|
<Text fw={'bold'} c={'white'}>Total Divisi</Text>
|
|
<Flex justify={'center'} align={'center'} h={'100%'}>
|
|
<Text fz={40} fw={'bold'} c={'white'}>{jumlah}</Text>
|
|
</Flex>
|
|
</Box>
|
|
</Box>
|
|
{isList ? (
|
|
<Box pt={20}>
|
|
{data?.map((v: any, i: any) => {
|
|
return (
|
|
<Box key={i}>
|
|
<Group justify="space-between" mb={10} onClick={() => router.push(`/division/${v.id}`)}>
|
|
<Group>
|
|
<Center>
|
|
<ActionIcon
|
|
variant="gradient"
|
|
size={50}
|
|
aria-label="Gradient action icon"
|
|
radius={100}
|
|
gradient={{
|
|
from: '#DFDA7C',
|
|
to: '#F2AF46',
|
|
deg: 174
|
|
}}
|
|
>
|
|
<HiMiniUserGroup size={25} color={WARNA.biruTua} />
|
|
</ActionIcon>
|
|
</Center>
|
|
<Text>{v.name}</Text>
|
|
</Group>
|
|
</Group>
|
|
<Divider my="sm" />
|
|
</Box>
|
|
);
|
|
})}
|
|
</Box>
|
|
) : (
|
|
<Box pt={20}>
|
|
{data?.map((v: any, i: any) => {
|
|
return (
|
|
<Box key={i} mb={20}>
|
|
<Card shadow="sm" padding="md" component="a" radius={10} onClick={() => router.push(`/division/${v.id}`)}>
|
|
<Card.Section>
|
|
<Box h={120} bg={WARNA.biruTua}>
|
|
<Flex justify={'center'} align={'center'} h={"100%"}>
|
|
<Title order={3} c={"white"}>{v.name}</Title>
|
|
</Flex>
|
|
</Box>
|
|
</Card.Section>
|
|
<Box pt={10}>
|
|
<Text>{v.desc}</Text>
|
|
<Group align='center' pt={10} justify='flex-end'>
|
|
<Avatar.Group>
|
|
<Avatar>
|
|
<MdAccountCircle size={32} color={WARNA.biruTua} />
|
|
</Avatar>
|
|
<Avatar>+{v.jumlah_member - 1}</Avatar>
|
|
</Avatar.Group>
|
|
</Group>
|
|
</Box>
|
|
</Card>
|
|
</Box>
|
|
);
|
|
})}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
<LayoutDrawer opened={openDrawer} title={'Menu'} onClose={() => setOpenDrawer(false)}>
|
|
<DrawerDivision />
|
|
</LayoutDrawer>
|
|
</Box>
|
|
);
|
|
} |