'use client'; import colors from '@/con/colors'; import ApiFetch from '@/lib/api-fetch'; import { ActionIcon, Box, Button, Group, Image, Loader, Paper, Stack, Text, TextInput, Title } from '@mantine/core'; import { Dropzone } from '@mantine/dropzone'; import { IconArrowBack, IconPhoto, IconUpload, IconX } from '@tabler/icons-react'; import { useRouter } from 'next/navigation'; import { useState } from 'react'; import { toast } from 'react-toastify'; import { useProxy } from 'valtio/utils'; import CreateEditor from '../../../_com/createEditor'; import posyandustate from '../../../_state/kesehatan/posyandu/posyandu'; function CreatePosyandu() { const statePosyandu = useProxy(posyandustate); const router = useRouter(); const [file, setFile] = useState(null); const [previewImage, setPreviewImage] = useState(null); const [isSubmitting, setIsSubmitting] = useState(false); // Helper function to check if HTML content is empty const isHtmlEmpty = (html: string) => { // Remove all HTML tags and check if there's any text content const textContent = html.replace(/<[^>]*>/g, '').trim(); return textContent === ''; }; // Check if form is valid const isFormValid = () => { return ( statePosyandu.create.form.name?.trim() !== '' && statePosyandu.create.form.nomor?.trim() !== '' && !isHtmlEmpty(statePosyandu.create.form.deskripsi) && !isHtmlEmpty(statePosyandu.create.form.jadwalPelayanan) && file !== null ); }; const resetForm = () => { statePosyandu.create.form = { name: '', nomor: '', deskripsi: '', imageId: '', jadwalPelayanan: '', }; setFile(null); setPreviewImage(null); }; const handleSubmit = async () => { if (!statePosyandu.create.form.name?.trim()) { toast.error('Nama posyandu wajib diisi'); return; } if (!statePosyandu.create.form.nomor?.trim()) { toast.error('Nomor telepon wajib diisi'); return; } if (isHtmlEmpty(statePosyandu.create.form.deskripsi)) { toast.error('Deskripsi wajib diisi'); return; } if (isHtmlEmpty(statePosyandu.create.form.jadwalPelayanan)) { toast.error('Jadwal pelayanan wajib diisi'); return; } if (!file) { toast.error('Gambar wajib dipilih'); return; } try { setIsSubmitting(true); if (!file) { return toast.warn('Silakan pilih file gambar terlebih dahulu'); } // Upload gambar dulu 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'); } statePosyandu.create.form.imageId = uploaded.id; await statePosyandu.create.create(); resetForm(); router.push('/admin/kesehatan/posyandu'); } catch (error) { console.error('Error creating posyandu:', error); toast.error('Gagal menambahkan posyandu'); } finally { setIsSubmitting(false); } }; return ( {/* Header */} Tambah Posyandu {/* Upload Gambar */} Gambar Posyandu { const selectedFile = files[0]; if (selectedFile) { setFile(selectedFile); setPreviewImage(URL.createObjectURL(selectedFile)); } }} onReject={() => toast.error('File tidak valid, gunakan format gambar')} maxSize={5 * 1024 ** 2} accept={{ 'image/*': ['.jpeg', '.jpg', '.png', '.webp'] }} radius="md" p="xl" > Seret gambar atau klik untuk memilih file (maks 5MB) {previewImage && ( Preview Gambar { setPreviewImage(null); setFile(null); }} style={{ boxShadow: '0 2px 6px rgba(0,0,0,0.15)', }} > )} {/* Input Form */} (statePosyandu.create.form.name = e.target.value)} required /> (statePosyandu.create.form.nomor = e.target.value)} required /> Deskripsi Posyandu { statePosyandu.create.form.deskripsi = htmlContent; }} /> Jadwal Pelayanan { statePosyandu.create.form.jadwalPelayanan = htmlContent; }} /> {/* Button */} {/* Tombol Simpan */} ); } export default CreatePosyandu;