216 lines
6.5 KiB
TypeScript
216 lines
6.5 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 { useDebouncedValue, useShallowEffect } from '@mantine/hooks';
|
|
import { IconDeviceImac, IconPlus, IconSearch } from '@tabler/icons-react';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useState } from 'react';
|
|
import { useProxy } from 'valtio/utils';
|
|
import HeaderSearch from '../../../_com/header';
|
|
import stateGallery from '../../../_state/desa/gallery';
|
|
|
|
function Foto() {
|
|
const [search, setSearch] = useState("");
|
|
return (
|
|
<Box>
|
|
<HeaderSearch
|
|
title='Foto'
|
|
placeholder='Cari judul atau deskripsi foto...'
|
|
searchIcon={<IconSearch size={20} />}
|
|
value={search}
|
|
onChange={(e) => setSearch(e.currentTarget.value)}
|
|
/>
|
|
<ListFoto search={search} />
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
function ListFoto({ search }: { search: string }) {
|
|
const FotoState = useProxy(stateGallery.foto)
|
|
const router = useRouter();
|
|
const [debouncedSearch] = useDebouncedValue(search, 1000);
|
|
|
|
const {
|
|
data,
|
|
page,
|
|
totalPages,
|
|
loading,
|
|
load,
|
|
} = FotoState.findMany;
|
|
|
|
useShallowEffect(() => {
|
|
load(page, 10, debouncedSearch)
|
|
}, [page, debouncedSearch])
|
|
|
|
const filteredData = data || []
|
|
|
|
if (loading || !data) {
|
|
return (
|
|
<Stack py={{ base: 'md', md: 'lg' }}>
|
|
<Skeleton height={600} radius="md" />
|
|
</Stack>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<Box py={{ base: 'md', md: 'lg' }}>
|
|
<Paper withBorder bg={colors['white-1']} p={{ base: 'md', md: 'lg' }} shadow="md" radius="md">
|
|
<Group justify="space-between" mb={{ base: 'sm', md: 'md' }}>
|
|
<Title order={4} lh={1.2}>Daftar Foto</Title>
|
|
<Button
|
|
leftSection={<IconPlus size={18} />}
|
|
color="blue"
|
|
variant="light"
|
|
onClick={() => router.push('/admin/desa/gallery/foto/create')}
|
|
>
|
|
Tambah Baru
|
|
</Button>
|
|
</Group>
|
|
|
|
{/* Desktop Table */}
|
|
<Box visibleFrom="md">
|
|
<Table highlightOnHover>
|
|
<TableThead>
|
|
<TableTr>
|
|
<TableTh>Judul Foto</TableTh>
|
|
<TableTh>Tanggal</TableTh>
|
|
<TableTh>Deskripsi</TableTh>
|
|
<TableTh>Aksi</TableTh>
|
|
</TableTr>
|
|
</TableThead>
|
|
<TableTbody>
|
|
{filteredData.length > 0 ? (
|
|
filteredData.map((item) => (
|
|
<TableTr key={item.id}>
|
|
<TableTd>
|
|
<Text fz="md" fw={500} lh={1.45} truncate="end" lineClamp={1}>
|
|
{item.name}
|
|
</Text>
|
|
</TableTd>
|
|
<TableTd>
|
|
<Text fz="sm" c="dimmed" lh={1.45}>
|
|
{new Date(item.createdAt).toLocaleDateString('id-ID', {
|
|
day: 'numeric',
|
|
month: 'long',
|
|
year: 'numeric',
|
|
})}
|
|
</Text>
|
|
</TableTd>
|
|
<TableTd>
|
|
<Text
|
|
fz="sm"
|
|
lh={1.45}
|
|
truncate="end"
|
|
lineClamp={1}
|
|
dangerouslySetInnerHTML={{ __html: item.deskripsi }}
|
|
/>
|
|
</TableTd>
|
|
<TableTd>
|
|
<Button
|
|
variant="light"
|
|
color="blue"
|
|
size="xs"
|
|
onClick={() => router.push(`/admin/desa/gallery/foto/${item.id}`)}
|
|
>
|
|
<IconDeviceImac size={16} />
|
|
<Text ml={5} fz="sm" fw={500}>Detail</Text>
|
|
</Button>
|
|
</TableTd>
|
|
</TableTr>
|
|
))
|
|
) : (
|
|
<TableTr>
|
|
<TableTd colSpan={4}>
|
|
<Center py={20}>
|
|
<Text c="dimmed" fz="sm" lh={1.4}>Tidak ada foto yang cocok</Text>
|
|
</Center>
|
|
</TableTd>
|
|
</TableTr>
|
|
)}
|
|
</TableTbody>
|
|
</Table>
|
|
</Box>
|
|
|
|
{/* Mobile Card View */}
|
|
<Box hiddenFrom="md">
|
|
<Stack gap="md">
|
|
{filteredData.length > 0 ? (
|
|
filteredData.map((item) => (
|
|
<Paper key={item.id} withBorder radius="sm" p="md">
|
|
<Stack gap="xs">
|
|
<Box>
|
|
<Text fz="sm" fw={600} lh={1.4}>Judul Foto</Text>
|
|
<Text fz="sm" fw={500} lh={1.45}>{item.name}</Text>
|
|
</Box>
|
|
<Box>
|
|
<Text fz="sm" fw={600} lh={1.4}>Tanggal</Text>
|
|
<Text fz="sm" fw={500} lh={1.45} c="dimmed">
|
|
{new Date(item.createdAt).toLocaleDateString('id-ID', {
|
|
day: 'numeric',
|
|
month: 'long',
|
|
year: 'numeric',
|
|
})}
|
|
</Text>
|
|
</Box>
|
|
<Box>
|
|
<Text fz="sm" fw={600} lh={1.4}>Deskripsi</Text>
|
|
<Text fz="sm" fw={500} lh={1.45} dangerouslySetInnerHTML={{ __html: item.deskripsi }} />
|
|
</Box>
|
|
<Button
|
|
variant="light"
|
|
color="blue"
|
|
size="xs"
|
|
fullWidth
|
|
onClick={() => router.push(`/admin/desa/gallery/foto/${item.id}`)}
|
|
>
|
|
<IconDeviceImac size={16} />
|
|
<Text ml={5} fz="sm" fw={500}>Detail</Text>
|
|
</Button>
|
|
</Stack>
|
|
</Paper>
|
|
))
|
|
) : (
|
|
<Center py={20}>
|
|
<Text c="dimmed" fz="sm" lh={1.4}>Tidak ada foto yang cocok</Text>
|
|
</Center>
|
|
)}
|
|
</Stack>
|
|
</Box>
|
|
</Paper>
|
|
|
|
<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 Foto; |