140 lines
4.1 KiB
TypeScript
140 lines
4.1 KiB
TypeScript
'use client'
|
|
import { ModalKonfirmasiHapus } from '@/app/admin/(dashboard)/_com/modalKonfirmasiHapus';
|
|
import stateProfileDesa from '@/app/admin/(dashboard)/_state/desa/profile';
|
|
import colors from '@/con/colors';
|
|
import { Box, Button, Group, Image, Paper, Skeleton, Stack, Text } from '@mantine/core';
|
|
import { useShallowEffect } from '@mantine/hooks';
|
|
import { IconArrowBack, IconEdit, IconX } from '@tabler/icons-react';
|
|
import { useParams, useRouter } from 'next/navigation';
|
|
import { useState } from 'react';
|
|
import { useProxy } from 'valtio/utils';
|
|
|
|
function DetailPerbekelDariMasa() {
|
|
const state = useProxy(stateProfileDesa.mantanPerbekel);
|
|
const [modalHapus, setModalHapus] = useState(false);
|
|
const [selectedId, setSelectedId] = useState<string | null>(null);
|
|
const params = useParams();
|
|
const router = useRouter();
|
|
|
|
useShallowEffect(() => {
|
|
state.findUnique.load(params?.id as string);
|
|
}, []);
|
|
|
|
const handleHapus = () => {
|
|
if (selectedId) {
|
|
state.delete.byId(selectedId);
|
|
setModalHapus(false);
|
|
setSelectedId(null);
|
|
router.push("/admin/desa/profile/profile-perbekel-dari-masa-ke-masa");
|
|
}
|
|
};
|
|
|
|
if (!state.findUnique.data) {
|
|
return (
|
|
<Stack py={10}>
|
|
<Skeleton height={500} radius="md" />
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
const data = state.findUnique.data;
|
|
|
|
return (
|
|
<Box py={10}>
|
|
<Button
|
|
variant="subtle"
|
|
onClick={() => router.back()}
|
|
leftSection={<IconArrowBack size={24} color={colors['blue-button']} />}
|
|
mb={15}
|
|
>
|
|
Kembali
|
|
</Button>
|
|
|
|
<Paper
|
|
withBorder
|
|
w={{ base: "100%", md: "60%" }}
|
|
bg={colors['white-1']}
|
|
p="lg"
|
|
radius="md"
|
|
shadow="sm"
|
|
>
|
|
<Stack gap="md">
|
|
<Text fz="2xl" fw="bold" c={colors['blue-button']}>
|
|
Detail Perbekel Dari Masa Ke Masa
|
|
</Text>
|
|
|
|
<Paper bg="#ECEEF8" p="md" radius="md" shadow="xs">
|
|
<Stack gap="sm">
|
|
<Box>
|
|
<Text fz="lg" fw="bold">Gambar</Text>
|
|
{data.image?.link ? (
|
|
<Image
|
|
src={data.image.link}
|
|
alt={data.nama || 'Gambar Perbekel'}
|
|
w={150}
|
|
h={150}
|
|
radius="md"
|
|
fit="cover"
|
|
loading='lazy'
|
|
/>
|
|
) : (
|
|
<Text fz="sm" c="dimmed">Tidak ada gambar</Text>
|
|
)}
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text fz="lg" fw="bold">Nama Perbekel</Text>
|
|
<Text fz="md" c="dimmed">{data.nama || '-'}</Text>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text fz="lg" fw="bold">Daerah</Text>
|
|
<Text fz="md" c="dimmed">{data.daerah || '-'}</Text>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text fz="lg" fw="bold">Periode</Text>
|
|
<Text fz="md" c="dimmed">{data.periode || '-'}</Text>
|
|
</Box>
|
|
|
|
<Group gap="sm">
|
|
<Button
|
|
color="red"
|
|
onClick={() => {
|
|
setSelectedId(data.id);
|
|
setModalHapus(true);
|
|
}}
|
|
variant="light"
|
|
radius="md"
|
|
size="md"
|
|
>
|
|
<IconX size={20} />
|
|
</Button>
|
|
|
|
<Button
|
|
color="green"
|
|
onClick={() => router.push(`/admin/desa/profile/profile-perbekel-dari-masa-ke-masa/${data.id}/edit`)}
|
|
variant="light"
|
|
radius="md"
|
|
size="md"
|
|
>
|
|
<IconEdit size={20} />
|
|
</Button>
|
|
</Group>
|
|
</Stack>
|
|
</Paper>
|
|
</Stack>
|
|
</Paper>
|
|
|
|
<ModalKonfirmasiHapus
|
|
opened={modalHapus}
|
|
onClose={() => setModalHapus(false)}
|
|
onConfirm={handleHapus}
|
|
text="Apakah Anda yakin ingin menghapus perbekel dari masa ke masa ini?"
|
|
/>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default DetailPerbekelDariMasa;
|