Deskripsi: - update global - update announcement - update update color palette - update group - update home - update position - update project - update member No Issue
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import { globalRole, TEMA, WARNA } from '@/module/_global';
|
|
import { useHookstate } from '@hookstate/core';
|
|
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
|
import { useSearchParams } from 'next/navigation';
|
|
import React, { useState } from 'react';
|
|
import { HiOutlineFilter } from 'react-icons/hi';
|
|
import { IoAddCircle } from 'react-icons/io5';
|
|
|
|
export default function MenuDrawerProject() {
|
|
const roleLogin = useHookstate(globalRole)
|
|
const searchParams = useSearchParams()
|
|
const group = searchParams.get('group')
|
|
const tema = useHookstate(TEMA)
|
|
|
|
return (
|
|
<Box>
|
|
<Stack pt={10}>
|
|
<SimpleGrid
|
|
cols={{ base: 2, sm: 2, lg: 3 }}
|
|
>
|
|
<Flex onClick={() => window.location.href = "/project/create"} justify={'center'} align={'center'} direction={'column'} >
|
|
<Box>
|
|
<IoAddCircle size={30} color={tema.get().utama} />
|
|
</Box>
|
|
<Box>
|
|
<Text c={tema.get().utama}>Tambah Kegiatan</Text>
|
|
</Box>
|
|
</Flex>
|
|
{
|
|
roleLogin.get() == "supadmin" &&
|
|
<Flex onClick={() => window.location.href = "/project?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>
|
|
}
|
|
</SimpleGrid>
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
}
|
|
|