Deskripsi: - update calender - update color palette - update discussion - update division - update task No Issue
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
"use client"
|
|
import { globalRole, TEMA } from '@/module/_global';
|
|
import { useHookstate } from '@hookstate/core';
|
|
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import React from 'react';
|
|
import { HiOutlineFilter } from 'react-icons/hi';
|
|
import { IoAddCircle } from 'react-icons/io5';
|
|
import { TbReportAnalytics } from "react-icons/tb";
|
|
|
|
export default function DrawerDivision() {
|
|
const router = useRouter()
|
|
const roleLogin = useHookstate(globalRole)
|
|
const searchParams = useSearchParams()
|
|
const group = searchParams.get('group')
|
|
const tema = useHookstate(TEMA)
|
|
|
|
return (
|
|
<Box>
|
|
<Stack pt={10}>
|
|
<SimpleGrid
|
|
cols={{ base: 3, sm: 3, lg: 3 }}
|
|
>
|
|
<Flex onClick={() => router.push('/division/create')} justify={'center'} align={'center'} direction={'column'} >
|
|
<Box>
|
|
<IoAddCircle size={30} color={tema.get().utama} />
|
|
</Box>
|
|
<Box>
|
|
<Text c={tema.get().utama} ta={"center"}>Tambah Divisi</Text>
|
|
</Box>
|
|
</Flex>
|
|
{
|
|
roleLogin.get() == "supadmin" &&
|
|
<Flex onClick={() => {
|
|
router.push('/division?page=filter&group=' + group)
|
|
}} justify={'center'} align={'center'} direction={'column'} >
|
|
<Box>
|
|
<HiOutlineFilter size={30} color={tema.get().utama} />
|
|
</Box>
|
|
<Box>
|
|
<Text c={tema.get().utama}>Filter</Text>
|
|
</Box>
|
|
</Flex>
|
|
}
|
|
|
|
{
|
|
(roleLogin.get() == "supadmin" || roleLogin.get() == "cosupadmin") &&
|
|
<Flex onClick={() => {
|
|
router.push('/division?page=report')
|
|
}} justify={'center'} align={'center'} direction={'column'} >
|
|
<Box>
|
|
<TbReportAnalytics size={30} color={tema.get().utama} />
|
|
</Box>
|
|
<Box>
|
|
<Text c={tema.get().utama}>Report</Text>
|
|
</Box>
|
|
</Flex>
|
|
}
|
|
</SimpleGrid>
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
}
|