Merge pull request #206 from bipproduction/amalia/06-september-24
upd: division
This commit is contained in:
@@ -2,8 +2,8 @@ import { ViewFilter } from '@/module/_global';
|
|||||||
import { TabProject, ViewProject } from '@/module/project';
|
import { TabProject, ViewProject } from '@/module/project';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
function Page({ searchParams }: { searchParams: { cat: string } }) {
|
function Page({ searchParams }: { searchParams: { page: string } }) {
|
||||||
if (searchParams.cat == 'filter')
|
if (searchParams.page == 'filter')
|
||||||
return <ViewFilter linkFilter='project' />
|
return <ViewFilter linkFilter='project' />
|
||||||
return (
|
return (
|
||||||
<TabProject />
|
<TabProject />
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ export async function GET(request: Request) {
|
|||||||
|
|
||||||
let grup
|
let grup
|
||||||
const villaId = user.idVillage
|
const villaId = user.idVillage
|
||||||
|
const roleUser = user.idUserRole
|
||||||
const { searchParams } = new URL(request.url);
|
const { searchParams } = new URL(request.url);
|
||||||
const idGroup = searchParams.get("group");
|
const idGroup = searchParams.get("group");
|
||||||
const name = searchParams.get('search');
|
const name = searchParams.get('search');
|
||||||
@@ -25,8 +26,8 @@ export async function GET(request: Request) {
|
|||||||
grup = idGroup
|
grup = idGroup
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = await prisma.division.findMany({
|
|
||||||
where: {
|
let kondisi: any = {
|
||||||
isActive: true,
|
isActive: true,
|
||||||
idVillage: String(villaId),
|
idVillage: String(villaId),
|
||||||
idGroup: grup,
|
idGroup: grup,
|
||||||
@@ -34,7 +35,28 @@ export async function GET(request: Request) {
|
|||||||
contains: (name == undefined || name == "null") ? "" : name,
|
contains: (name == undefined || name == "null") ? "" : name,
|
||||||
mode: "insensitive"
|
mode: "insensitive"
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (roleUser != "supadmin" && roleUser != "cosupadmin" && roleUser != "admin") {
|
||||||
|
kondisi = {
|
||||||
|
isActive: true,
|
||||||
|
idVillage: String(villaId),
|
||||||
|
idGroup: grup,
|
||||||
|
name: {
|
||||||
|
contains: (name == undefined || name == "null") ? "" : name,
|
||||||
|
mode: "insensitive"
|
||||||
},
|
},
|
||||||
|
DivisionMember: {
|
||||||
|
some: {
|
||||||
|
isActive: true,
|
||||||
|
idUser: String(user.id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await prisma.division.findMany({
|
||||||
|
where: kondisi,
|
||||||
select: {
|
select: {
|
||||||
id: true,
|
id: true,
|
||||||
name: true,
|
name: true,
|
||||||
@@ -56,7 +78,18 @@ export async function GET(request: Request) {
|
|||||||
}))
|
}))
|
||||||
|
|
||||||
|
|
||||||
return NextResponse.json({ success: true, message: "Berhasil mendapatkan divisi", data: allData, }, { status: 200 });
|
const filter = await prisma.group.findUnique({
|
||||||
|
where: {
|
||||||
|
id: grup
|
||||||
|
},
|
||||||
|
select: {
|
||||||
|
id: true,
|
||||||
|
name: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
return NextResponse.json({ success: true, message: "Berhasil mendapatkan divisi", data: allData, filter }, { status: 200 });
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
|
|||||||
@@ -1,14 +1,19 @@
|
|||||||
"use client"
|
"use client"
|
||||||
import { WARNA } from '@/module/_global';
|
import { globalRole, WARNA } from '@/module/_global';
|
||||||
|
import { useHookstate } from '@hookstate/core';
|
||||||
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
||||||
import { useRouter } from 'next/navigation';
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
import React, { useState } from 'react';
|
import React from 'react';
|
||||||
import { HiOutlineFilter } from 'react-icons/hi';
|
import { HiOutlineFilter } from 'react-icons/hi';
|
||||||
import { IoAddCircle } from 'react-icons/io5';
|
import { IoAddCircle } from 'react-icons/io5';
|
||||||
import { TbReportAnalytics } from "react-icons/tb";
|
import { TbReportAnalytics } from "react-icons/tb";
|
||||||
|
|
||||||
export default function DrawerDivision() {
|
export default function DrawerDivision() {
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
const roleLogin = useHookstate(globalRole)
|
||||||
|
const searchParams = useSearchParams()
|
||||||
|
const group = searchParams.get('group')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<Stack pt={10}>
|
<Stack pt={10}>
|
||||||
@@ -23,8 +28,10 @@ export default function DrawerDivision() {
|
|||||||
<Text c={WARNA.biruTua}>Tambah Divisi</Text>
|
<Text c={WARNA.biruTua}>Tambah Divisi</Text>
|
||||||
</Box>
|
</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
{
|
||||||
|
roleLogin.get() == "supadmin" &&
|
||||||
<Flex onClick={() => {
|
<Flex onClick={() => {
|
||||||
router.push('/division?page=filter')
|
router.push('/division?page=filter&group=' + group)
|
||||||
}} justify={'center'} align={'center'} direction={'column'} >
|
}} justify={'center'} align={'center'} direction={'column'} >
|
||||||
<Box>
|
<Box>
|
||||||
<HiOutlineFilter size={30} color={WARNA.biruTua} />
|
<HiOutlineFilter size={30} color={WARNA.biruTua} />
|
||||||
@@ -33,6 +40,10 @@ export default function DrawerDivision() {
|
|||||||
<Text c={WARNA.biruTua}>Filter</Text>
|
<Text c={WARNA.biruTua}>Filter</Text>
|
||||||
</Box>
|
</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
(roleLogin.get() == "supadmin" || roleLogin.get() == "cosupadmin") &&
|
||||||
<Flex onClick={() => {
|
<Flex onClick={() => {
|
||||||
router.push('/division?page=report')
|
router.push('/division?page=report')
|
||||||
}} justify={'center'} align={'center'} direction={'column'} >
|
}} justify={'center'} align={'center'} direction={'column'} >
|
||||||
@@ -43,6 +54,7 @@ export default function DrawerDivision() {
|
|||||||
<Text c={WARNA.biruTua}>Report</Text>
|
<Text c={WARNA.biruTua}>Report</Text>
|
||||||
</Box>
|
</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
}
|
||||||
</SimpleGrid>
|
</SimpleGrid>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
"use client"
|
"use client"
|
||||||
import { LayoutDrawer, LayoutNavbarNew, SkeletonSingle, WARNA } from '@/module/_global';
|
import { globalRole, LayoutDrawer, LayoutNavbarNew, SkeletonSingle, WARNA } from '@/module/_global';
|
||||||
import { ActionIcon, Avatar, Box, Button, Divider, Flex, Grid, Group, Skeleton, Stack, Text } from '@mantine/core';
|
import { ActionIcon, Avatar, Box, Button, Divider, Flex, Grid, Group, Skeleton, Stack, Text } from '@mantine/core';
|
||||||
import { useShallowEffect } from '@mantine/hooks';
|
import { useShallowEffect } from '@mantine/hooks';
|
||||||
import { useParams, useRouter } from 'next/navigation';
|
import { useParams, useRouter } from 'next/navigation';
|
||||||
@@ -12,6 +12,8 @@ import { LuClipboardEdit } from 'react-icons/lu';
|
|||||||
import { funDeleteMemberDivision, funEditStatusAdminDivision, funGetDivisionById } from '../lib/api_division';
|
import { funDeleteMemberDivision, funEditStatusAdminDivision, funGetDivisionById } from '../lib/api_division';
|
||||||
import { IDataMemberDivision } from '../lib/type_division';
|
import { IDataMemberDivision } from '../lib/type_division';
|
||||||
import LayoutModal from '@/module/_global/layout/layout_modal';
|
import LayoutModal from '@/module/_global/layout/layout_modal';
|
||||||
|
import { useHookstate } from '@hookstate/core';
|
||||||
|
import { funGetUserByCookies } from '@/module/auth';
|
||||||
|
|
||||||
|
|
||||||
export default function InformationDivision() {
|
export default function InformationDivision() {
|
||||||
@@ -26,15 +28,20 @@ export default function InformationDivision() {
|
|||||||
const [valChooseMemberStatus, setChooseMemberStatus] = useState<boolean>(false)
|
const [valChooseMemberStatus, setChooseMemberStatus] = useState<boolean>(false)
|
||||||
const [valChooseMemberName, setChooseMemberName] = useState("")
|
const [valChooseMemberName, setChooseMemberName] = useState("")
|
||||||
const [isOpenModal, setOpenModal] = useState(false)
|
const [isOpenModal, setOpenModal] = useState(false)
|
||||||
|
const roleLogin = useHookstate(globalRole)
|
||||||
|
const [isAdmin, setAdmin] = useState(false)
|
||||||
|
|
||||||
async function getOneData() {
|
async function getOneData() {
|
||||||
try {
|
try {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
const res = await funGetDivisionById(param.id);
|
const res = await funGetDivisionById(param.id);
|
||||||
|
const login = await funGetUserByCookies()
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
setName(res.data.division.name);
|
setName(res.data.division.name);
|
||||||
setDeskripsi(res.data.division.desc);
|
setDeskripsi(res.data.division.desc);
|
||||||
setMember(res.data.member)
|
setMember(res.data.member)
|
||||||
|
const cek = res.data.member.some((i: any) => i.id == login.id && i.isAdmin == true)
|
||||||
|
setAdmin(cek)
|
||||||
} else {
|
} else {
|
||||||
toast.error(res.message);
|
toast.error(res.message);
|
||||||
}
|
}
|
||||||
@@ -163,12 +170,15 @@ export default function InformationDivision() {
|
|||||||
</Box>
|
</Box>
|
||||||
</Group>
|
</Group>
|
||||||
:
|
:
|
||||||
|
|
||||||
|
((roleLogin.get() != 'user' && roleLogin.get() != 'coadmin') || isAdmin) ?
|
||||||
<Group align='center' onClick={() => router.push('/division/add-member/' + param.id)}>
|
<Group align='center' onClick={() => router.push('/division/add-member/' + param.id)}>
|
||||||
<Avatar size="lg">
|
<Avatar size="lg">
|
||||||
<AiOutlineUserAdd size={30} color={WARNA.biruTua} />
|
<AiOutlineUserAdd size={30} color={WARNA.biruTua} />
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<Text>Tambah Anggota</Text>
|
<Text>Tambah Anggota</Text>
|
||||||
</Group>
|
</Group>
|
||||||
|
: <></>
|
||||||
}
|
}
|
||||||
</Box>
|
</Box>
|
||||||
<Box pt={10}>
|
<Box pt={10}>
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
'use client'
|
'use client'
|
||||||
import { LayoutDrawer, LayoutNavbarNew, SkeletonSingle, WARNA } from '@/module/_global';
|
import { globalRole, LayoutDrawer, LayoutNavbarNew, SkeletonSingle, WARNA } from '@/module/_global';
|
||||||
import { ActionIcon, Avatar, Box, Card, Center, Divider, Flex, Grid, Group, Skeleton, Text, TextInput, Title } from '@mantine/core';
|
import { ActionIcon, Avatar, Box, Card, Center, Divider, Flex, Grid, Group, Skeleton, Text, TextInput, Title } from '@mantine/core';
|
||||||
import { useRouter, useSearchParams } from 'next/navigation';
|
import { useRouter, useSearchParams } from 'next/navigation';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { HiMenu } from 'react-icons/hi';
|
import { HiMenu } from 'react-icons/hi';
|
||||||
import { HiMagnifyingGlass, HiMiniPresentationChartBar, HiMiniUserGroup, HiOutlineListBullet, HiSquares2X2 } from 'react-icons/hi2';
|
import { HiMagnifyingGlass, HiMiniUserGroup, HiOutlineListBullet, HiSquares2X2 } from 'react-icons/hi2';
|
||||||
import { MdAccountCircle } from 'react-icons/md';
|
import { MdAccountCircle } from 'react-icons/md';
|
||||||
import DrawerDivision from './drawer_division';
|
import DrawerDivision from './drawer_division';
|
||||||
import { useShallowEffect } from '@mantine/hooks';
|
import { useShallowEffect } from '@mantine/hooks';
|
||||||
import { IDataDivison } from '../lib/type_division';
|
import { IDataDivison } from '../lib/type_division';
|
||||||
import { funGetAllDivision } from '../lib/api_division';
|
import { funGetAllDivision } from '../lib/api_division';
|
||||||
import toast from 'react-hot-toast';
|
import toast from 'react-hot-toast';
|
||||||
import { funGetAllGroup, IDataGroup } from '@/module/group';
|
import { useHookstate } from '@hookstate/core';
|
||||||
|
|
||||||
export default function ListDivision() {
|
export default function ListDivision() {
|
||||||
const [isList, setIsList] = useState(false)
|
const [isList, setIsList] = useState(false)
|
||||||
@@ -23,6 +23,8 @@ export default function ListDivision() {
|
|||||||
const searchParams = useSearchParams()
|
const searchParams = useSearchParams()
|
||||||
const group = searchParams.get('group')
|
const group = searchParams.get('group')
|
||||||
const [loading, setLoading] = useState(true)
|
const [loading, setLoading] = useState(true)
|
||||||
|
const [nameGroup, setNameGroup] = useState('')
|
||||||
|
const roleLogin = useHookstate(globalRole)
|
||||||
|
|
||||||
|
|
||||||
const handleList = () => {
|
const handleList = () => {
|
||||||
@@ -34,10 +36,10 @@ export default function ListDivision() {
|
|||||||
setData([]);
|
setData([]);
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
const response = await funGetAllDivision('?search=' + search + '&group=' + group)
|
const response = await funGetAllDivision('?search=' + search + '&group=' + group)
|
||||||
|
|
||||||
if (response.success) {
|
if (response.success) {
|
||||||
setData(response.data)
|
setData(response.data)
|
||||||
setJumlah(response.data.length)
|
setJumlah(response.data.length)
|
||||||
|
setNameGroup(response.filter.name)
|
||||||
} else {
|
} else {
|
||||||
toast.error(response.message);
|
toast.error(response.message);
|
||||||
}
|
}
|
||||||
@@ -59,37 +61,16 @@ export default function ListDivision() {
|
|||||||
fetchData(searchQuery)
|
fetchData(searchQuery)
|
||||||
}, [searchQuery])
|
}, [searchQuery])
|
||||||
|
|
||||||
const [checked, setChecked] = useState<IDataGroup[]>([]);
|
|
||||||
|
|
||||||
const groupNameMap = (groupId: string) => {
|
|
||||||
const groupName = checked.find((group) => group.id === groupId)?.name;
|
|
||||||
return groupName || '-';
|
|
||||||
};
|
|
||||||
|
|
||||||
async function getAllGroupFilter() {
|
|
||||||
try {
|
|
||||||
const response = await funGetAllGroup('?active=true')
|
|
||||||
if (response.success) {
|
|
||||||
setChecked(response.data);
|
|
||||||
} else {
|
|
||||||
toast.error(response.message);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error(error);
|
|
||||||
toast.error("Gagal mendapatkan grup, coba lagi nanti");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
useShallowEffect(() => {
|
|
||||||
getAllGroupFilter();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<LayoutNavbarNew back='/home' title='Divisi'
|
<LayoutNavbarNew back='/home' title='Divisi'
|
||||||
menu={<ActionIcon variant="light" onClick={() => (setOpenDrawer(true))} bg={WARNA.bgIcon} size="lg" radius="lg" aria-label="Settings">
|
menu={
|
||||||
|
(roleLogin.get() != "user" && roleLogin.get() != "coadmin") &&
|
||||||
|
<ActionIcon variant="light" onClick={() => (setOpenDrawer(true))} bg={WARNA.bgIcon} size="lg" radius="lg" aria-label="Settings">
|
||||||
<HiMenu size={20} color='white' />
|
<HiMenu size={20} color='white' />
|
||||||
</ActionIcon>} />
|
</ActionIcon>
|
||||||
|
} />
|
||||||
|
|
||||||
<Box p={20}>
|
<Box p={20}>
|
||||||
<Grid justify='center' align='center'>
|
<Grid justify='center' align='center'>
|
||||||
@@ -121,8 +102,7 @@ export default function ListDivision() {
|
|||||||
</Grid.Col>
|
</Grid.Col>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Box pt={20}>
|
<Box pt={20}>
|
||||||
{/* {group && <Text>Filter by: {group}</Text>} */}
|
{roleLogin.get() == 'supadmin' && <Text>Filter by: {nameGroup}</Text>}
|
||||||
{group && <Text>Filter by: {groupNameMap(group)}</Text>}
|
|
||||||
{loading ?
|
{loading ?
|
||||||
<>
|
<>
|
||||||
<Skeleton width={"100%"} height={100} radius={"md"} />
|
<Skeleton width={"100%"} height={100} radius={"md"} />
|
||||||
@@ -224,7 +204,11 @@ export default function ListDivision() {
|
|||||||
<Avatar>
|
<Avatar>
|
||||||
<MdAccountCircle size={32} color={WARNA.biruTua} />
|
<MdAccountCircle size={32} color={WARNA.biruTua} />
|
||||||
</Avatar>
|
</Avatar>
|
||||||
<Avatar>+{v.jumlah_member - 1}</Avatar>
|
<Avatar>
|
||||||
|
{
|
||||||
|
(v.jumlah_member == 0) ? "0" : "+" + (v.jumlah_member - 1)
|
||||||
|
}
|
||||||
|
</Avatar>
|
||||||
</Avatar.Group>
|
</Avatar.Group>
|
||||||
</Group>
|
</Group>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
import { WARNA } from '@/module/_global';
|
import { WARNA } from '@/module/_global';
|
||||||
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
||||||
|
import { useSearchParams } from 'next/navigation';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { HiOutlineFilter } from 'react-icons/hi';
|
import { HiOutlineFilter } from 'react-icons/hi';
|
||||||
import { IoAddCircle } from 'react-icons/io5';
|
import { IoAddCircle } from 'react-icons/io5';
|
||||||
|
|
||||||
export default function DrawerProject() {
|
export default function DrawerProject() {
|
||||||
|
const searchParams = useSearchParams()
|
||||||
|
const group = searchParams.get('group')
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<Stack pt={10}>
|
<Stack pt={10}>
|
||||||
@@ -19,7 +22,7 @@ export default function DrawerProject() {
|
|||||||
<Text c={WARNA.biruTua}>Tambah Kegiatan</Text>
|
<Text c={WARNA.biruTua}>Tambah Kegiatan</Text>
|
||||||
</Box>
|
</Box>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex onClick={() => window.location.href = "/project?cat=filter"} justify={'center'} align={'center'} direction={'column'} >
|
<Flex onClick={() => window.location.href = "/project?page=filter&group=" + group} justify={'center'} align={'center'} direction={'column'} >
|
||||||
<Box>
|
<Box>
|
||||||
<HiOutlineFilter size={30} color={WARNA.biruTua} />
|
<HiOutlineFilter size={30} color={WARNA.biruTua} />
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import { funGetAllProject } from '../lib/api_project';
|
|||||||
import toast from 'react-hot-toast';
|
import toast from 'react-hot-toast';
|
||||||
import { useShallowEffect } from '@mantine/hooks';
|
import { useShallowEffect } from '@mantine/hooks';
|
||||||
import { IDataProject } from '../lib/type_project';
|
import { IDataProject } from '../lib/type_project';
|
||||||
import { funGetAllGroup, IDataGroup } from '@/module/group';
|
|
||||||
import { useHookstate } from '@hookstate/core';
|
import { useHookstate } from '@hookstate/core';
|
||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
import { globalRole, WARNA } from '@/module/_global';
|
import { globalRole, WARNA } from '@/module/_global';
|
||||||
import { useHookstate } from '@hookstate/core';
|
import { useHookstate } from '@hookstate/core';
|
||||||
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
||||||
|
import { useSearchParams } from 'next/navigation';
|
||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { HiOutlineFilter } from 'react-icons/hi';
|
import { HiOutlineFilter } from 'react-icons/hi';
|
||||||
import { IoAddCircle } from 'react-icons/io5';
|
import { IoAddCircle } from 'react-icons/io5';
|
||||||
|
|
||||||
export default function MenuDrawerProject() {
|
export default function MenuDrawerProject() {
|
||||||
const roleLogin = useHookstate(globalRole)
|
const roleLogin = useHookstate(globalRole)
|
||||||
|
const searchParams = useSearchParams()
|
||||||
|
const group = searchParams.get('group')
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box>
|
<Box>
|
||||||
<Stack pt={10}>
|
<Stack pt={10}>
|
||||||
@@ -23,7 +27,7 @@ export default function MenuDrawerProject() {
|
|||||||
</Flex>
|
</Flex>
|
||||||
{
|
{
|
||||||
roleLogin.get() == "supadmin" &&
|
roleLogin.get() == "supadmin" &&
|
||||||
<Flex onClick={() => window.location.href = "/project?cat=filter"} justify={'center'} align={'center'} direction={'column'} >
|
<Flex onClick={() => window.location.href = "/project?page=filter&group=" + group} justify={'center'} align={'center'} direction={'column'} >
|
||||||
<Box>
|
<Box>
|
||||||
<HiOutlineFilter size={30} color={WARNA.biruTua} />
|
<HiOutlineFilter size={30} color={WARNA.biruTua} />
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user