224 lines
6.9 KiB
TypeScript
224 lines
6.9 KiB
TypeScript
'use client'
|
|
import colors from '@/con/colors';
|
|
import {
|
|
Box,
|
|
Button,
|
|
Center,
|
|
Group,
|
|
Pagination,
|
|
Paper,
|
|
Skeleton,
|
|
Stack,
|
|
Table,
|
|
TableTbody,
|
|
TableTd,
|
|
TableTh,
|
|
TableThead,
|
|
TableTr,
|
|
Text,
|
|
Title
|
|
} from '@mantine/core';
|
|
import { IconDeviceImac, IconSearch } from '@tabler/icons-react';
|
|
import { useDebouncedValue, useShallowEffect } from '@mantine/hooks';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useState } from 'react';
|
|
import { useProxy } from 'valtio/utils';
|
|
import HeaderSearch from '../../../_com/header';
|
|
import layananonlineDesa from '../../../_state/inovasi/layanan-online-desa';
|
|
|
|
function PengaduanMasyarakat() {
|
|
const [search, setSearch] = useState("");
|
|
return (
|
|
<Box>
|
|
<HeaderSearch
|
|
title='Pengaduan Masyarakat'
|
|
placeholder='Cari nama, email, atau nomor telepon...'
|
|
searchIcon={<IconSearch size={20} />}
|
|
value={search}
|
|
onChange={(e) => setSearch(e.currentTarget.value)}
|
|
/>
|
|
<ListPengaduanMasyarakat search={search} />
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
function ListPengaduanMasyarakat({ search }: { search: string }) {
|
|
const listState = useProxy(layananonlineDesa.pengaduanMasyarakat);
|
|
const router = useRouter();
|
|
const [debouncedSearch] = useDebouncedValue(search, 1000);
|
|
const {
|
|
data,
|
|
page,
|
|
totalPages,
|
|
loading,
|
|
load,
|
|
} = listState.findMany;
|
|
|
|
useShallowEffect(() => {
|
|
load(page, 10, debouncedSearch);
|
|
}, [page, debouncedSearch]);
|
|
|
|
const filteredData = data || [];
|
|
|
|
if (loading || !data) {
|
|
return (
|
|
<Stack py={{ base: 'sm', md: 'md' }}>
|
|
<Skeleton height={600} radius="md" />
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Box py={{ base: 'sm', md: 'md' }}>
|
|
<Paper withBorder bg={colors['white-1']} p={{ base: 'md', md: 'lg' }} shadow="md" radius="md">
|
|
{/* Section Header */}
|
|
<Group justify="space-between" mb={{ base: 'sm', md: 'md' }}>
|
|
<Title order={4} lh={1.2}>
|
|
Daftar Pengaduan Masyarakat
|
|
</Title>
|
|
</Group>
|
|
|
|
{/* Desktop Table */}
|
|
<Box visibleFrom="md">
|
|
<Table
|
|
highlightOnHover
|
|
miw={0}
|
|
style={{
|
|
tableLayout: 'fixed',
|
|
width: '100%',
|
|
}}
|
|
>
|
|
<TableThead>
|
|
<TableTr>
|
|
<TableTh style={{ width: '25%' }}>
|
|
<Text fz="sm" fw={600} lh={1.4}>Nama</Text>
|
|
</TableTh>
|
|
<TableTh style={{ width: '25%' }}>
|
|
<Text fz="sm" fw={600} lh={1.4}>Email</Text>
|
|
</TableTh>
|
|
<TableTh style={{ width: '20%' }}>
|
|
<Text fz="sm" fw={600} lh={1.4}>Nomor Telepon</Text>
|
|
</TableTh>
|
|
<TableTh style={{ width: '15%' }}>
|
|
<Text fz="sm" fw={600} lh={1.4}>Aksi</Text>
|
|
</TableTh>
|
|
</TableTr>
|
|
</TableThead>
|
|
<TableTbody>
|
|
{filteredData.length > 0 ? (
|
|
filteredData.map((item) => (
|
|
<TableTr key={item.id}>
|
|
<TableTd>
|
|
<Text fz="md" fw={500} lh={1.5} truncate="end" lineClamp={1}>
|
|
{item.name}
|
|
</Text>
|
|
</TableTd>
|
|
<TableTd>
|
|
<Text fz="sm" c="dimmed" lh={1.5} truncate lineClamp={1}>
|
|
{item.email}
|
|
</Text>
|
|
</TableTd>
|
|
<TableTd>
|
|
<Text fz="sm" c="dimmed" lh={1.5} truncate lineClamp={1}>
|
|
{item.nomorTelepon}
|
|
</Text>
|
|
</TableTd>
|
|
<TableTd>
|
|
<Button
|
|
size="xs"
|
|
radius="md"
|
|
variant="light"
|
|
color="blue"
|
|
leftSection={<IconDeviceImac size={16} />}
|
|
onClick={() =>
|
|
router.push(`/admin/inovasi/layanan-online-desa/pengaduan-masyarakat/${item.id}`)
|
|
}
|
|
>
|
|
Detail
|
|
</Button>
|
|
</TableTd>
|
|
</TableTr>
|
|
))
|
|
) : (
|
|
<TableTr>
|
|
<TableTd colSpan={4}>
|
|
<Center py={{ base: 'sm', md: 'lg' }}>
|
|
<Text c="dimmed" fz="sm" lh={1.4}>
|
|
Tidak ada data pengaduan yang cocok
|
|
</Text>
|
|
</Center>
|
|
</TableTd>
|
|
</TableTr>
|
|
)}
|
|
</TableTbody>
|
|
</Table>
|
|
</Box>
|
|
|
|
{/* Mobile Cards */}
|
|
<Box hiddenFrom="md">
|
|
<Stack gap="xs">
|
|
{filteredData.length > 0 ? (
|
|
filteredData.map((item) => (
|
|
<Paper key={item.id} withBorder p="sm" radius="md">
|
|
<Stack gap={'xs'}>
|
|
<Box>
|
|
<Text fz="sm" fw={600} lh={1.4}>Nama</Text>
|
|
<Text fz="sm" fw={500} lh={1.45}>{item.name}</Text>
|
|
</Box>
|
|
<Box>
|
|
<Text fz="sm" fw={600} lh={1.4}>Email</Text>
|
|
<Text fz="sm" c="dimmed" fw={500} lh={1.45}>{item.email}</Text>
|
|
</Box>
|
|
<Box>
|
|
<Text fz="sm" fw={600} lh={1.4}>Nomor Telepon</Text>
|
|
<Text fz="sm" c="dimmed" fw={500} lh={1.45}>{item.nomorTelepon}</Text>
|
|
</Box>
|
|
<Box>
|
|
<Button
|
|
size="xs"
|
|
radius="md"
|
|
variant="light"
|
|
color="blue"
|
|
leftSection={<IconDeviceImac size={16} />}
|
|
onClick={() =>
|
|
router.push(`/admin/inovasi/layanan-online-desa/pengaduan-masyarakat/${item.id}`)
|
|
}
|
|
fullWidth
|
|
>
|
|
Detail
|
|
</Button>
|
|
</Box>
|
|
</Stack>
|
|
</Paper>
|
|
))
|
|
) : (
|
|
<Center py="lg">
|
|
<Text c="dimmed" fz="sm" lh={1.4}>
|
|
Tidak ada data pengaduan yang cocok
|
|
</Text>
|
|
</Center>
|
|
)}
|
|
</Stack>
|
|
</Box>
|
|
</Paper>
|
|
|
|
{/* Pagination */}
|
|
<Center>
|
|
<Pagination
|
|
value={page}
|
|
onChange={(newPage) => {
|
|
load(newPage, 10);
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|
}}
|
|
total={totalPages}
|
|
mt="md"
|
|
mb="md"
|
|
color="blue"
|
|
radius="md"
|
|
/>
|
|
</Center>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default PengaduanMasyarakat; |