151 lines
4.9 KiB
TypeScript
151 lines
4.9 KiB
TypeScript
/* eslint-disable react-hooks/exhaustive-deps */
|
|
'use client'
|
|
import EditEditor from '@/app/admin/(dashboard)/_com/editEditor';
|
|
import infoWabahPenyakit from '@/app/admin/(dashboard)/_state/kesehatan/info-wabah-penyakit/infoWabahPenyakit';
|
|
import colors from '@/con/colors';
|
|
import ApiFetch from '@/lib/api-fetch';
|
|
import { Box, Button, Center, FileInput, Image, Paper, Stack, Text, TextInput, Title } from '@mantine/core';
|
|
import { IconArrowBack, IconImageInPicture } from '@tabler/icons-react';
|
|
import { useParams, useRouter } from 'next/navigation';
|
|
import { useEffect, useState } from 'react';
|
|
import { toast } from 'react-toastify';
|
|
import { useProxy } from 'valtio/utils';
|
|
|
|
|
|
function EditInfoWabahPenyakit() {
|
|
const infoWabahPenyakitState = useProxy(infoWabahPenyakit)
|
|
const router = useRouter();
|
|
const params = useParams()
|
|
|
|
const [previewImage, setPreviewImage] = useState<string | null>(null);
|
|
const [file, setFile] = useState<File | null>(null);
|
|
const [formData, setFormData] = useState({
|
|
name: infoWabahPenyakitState.edit.form.name || '',
|
|
deskripsiSingkat: infoWabahPenyakitState.edit.form.deskripsiSingkat || '',
|
|
deskripsi: infoWabahPenyakitState.edit.form.deskripsiLengkap || '',
|
|
imageId: infoWabahPenyakitState.edit.form.imageId || '',
|
|
})
|
|
|
|
useEffect(() => {
|
|
const loadInfoWabahPenyakit = async () => {
|
|
const id = params?.id as string;
|
|
if (!id) return;
|
|
|
|
try {
|
|
const data = await infoWabahPenyakitState.edit.load(id);
|
|
if (data) {
|
|
setFormData({
|
|
name: data.name || '',
|
|
deskripsiSingkat: data.deskripsiSingkat || '',
|
|
deskripsi: data.deskripsiLengkap || '',
|
|
imageId: data.imageId || '',
|
|
});
|
|
|
|
if (data?.image?.link) {
|
|
setPreviewImage(data.image.link);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error("Error loading program kesehatan:", error);
|
|
toast.error("Gagal memuat data program kesehatan");
|
|
}
|
|
};
|
|
|
|
loadInfoWabahPenyakit();
|
|
}, [params?.id]);
|
|
|
|
const handleSubmit = async () => {
|
|
try {
|
|
infoWabahPenyakitState.edit.form = {
|
|
...infoWabahPenyakitState.edit.form,
|
|
name: formData.name,
|
|
deskripsiSingkat: formData.deskripsiSingkat,
|
|
deskripsiLengkap: formData.deskripsi,
|
|
imageId: formData.imageId,
|
|
};
|
|
|
|
if (file) {
|
|
const res = await ApiFetch.api.fileStorage.create.post({ file, name: file.name });
|
|
const uploaded = res.data?.data;
|
|
|
|
if (!uploaded?.id) {
|
|
return toast.error("Gagal upload gambar");
|
|
}
|
|
|
|
infoWabahPenyakitState.edit.form.imageId = uploaded.id;
|
|
}
|
|
|
|
await infoWabahPenyakitState.edit.update();
|
|
toast.success("Info wabah penyakit berhasil diperbarui!");
|
|
router.push("/admin/kesehatan/info-wabah-penyakit");
|
|
} catch (error) {
|
|
console.error("Error updating info wabah penyakit:", error);
|
|
toast.error("Gagal memuat data info wabah penyakit");
|
|
}
|
|
}
|
|
return (
|
|
<Box>
|
|
<Box mb={10}>
|
|
<Button variant="subtle" onClick={() => router.back()}>
|
|
<IconArrowBack color={colors['blue-button']} size={25} />
|
|
</Button>
|
|
</Box>
|
|
<Stack gap={"xs"}>
|
|
<Paper bg={colors['white-1']} p="md" w={{ base: '100%', md: '50%' }}>
|
|
<Stack gap="xs">
|
|
<Title order={3}>Edit Info Wabah Penyakit</Title>
|
|
<TextInput
|
|
value={formData.name}
|
|
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
|
label={<Text fz="sm" fw="bold">Judul</Text>}
|
|
placeholder="masukkan judul"
|
|
/>
|
|
|
|
<TextInput
|
|
value={formData.deskripsiSingkat}
|
|
onChange={(e) => setFormData({ ...formData, deskripsiSingkat: e.target.value })}
|
|
label={<Text fz="sm" fw="bold">Deskripsi Singkat</Text>}
|
|
placeholder="masukkan deskripsi"
|
|
/>
|
|
|
|
<Box>
|
|
<Text fz="sm" fw="bold">Deskripsi</Text>
|
|
<EditEditor
|
|
value={formData.deskripsi}
|
|
onChange={(val) => setFormData({ ...formData, deskripsi: val })}
|
|
/>
|
|
</Box>
|
|
|
|
<FileInput
|
|
label={<Text fz="sm" fw="bold">Upload Gambar</Text>}
|
|
value={file}
|
|
onChange={async (e) => {
|
|
if (!e) return;
|
|
setFile(e);
|
|
const base64 = await e.arrayBuffer().then((buf) =>
|
|
'data:image/png;base64,' + Buffer.from(buf).toString('base64')
|
|
);
|
|
setPreviewImage(base64);
|
|
}}
|
|
/>
|
|
|
|
{previewImage ? (
|
|
<Image alt="" src={previewImage} w={200} h={200} />
|
|
) : (
|
|
<Center w={200} h={200} bg="gray">
|
|
<IconImageInPicture />
|
|
</Center>
|
|
)}
|
|
|
|
<Button onClick={handleSubmit} bg={colors['blue-button']}>
|
|
Simpan
|
|
</Button>
|
|
</Stack>
|
|
</Paper>
|
|
</Stack>
|
|
</Box >
|
|
);
|
|
}
|
|
|
|
export default EditInfoWabahPenyakit;
|