'use client'; import CreateEditor from '@/app/admin/(dashboard)/_com/createEditor'; import stateGallery from '@/app/admin/(dashboard)/_state/desa/gallery'; import colors from '@/con/colors'; import ApiFetch from '@/lib/api-fetch'; import { ActionIcon, Box, Button, Group, Paper, Stack, Text, TextInput, Title, Loader, Image } 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'; function CreateFoto() { const FotoState = useProxy(stateGallery.foto); const router = useRouter(); const [isSubmitting, setIsSubmitting] = useState(false); const [previewImage, setPreviewImage] = useState(null); const [file, setFile] = useState(null); // 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 ( FotoState.create.form.name?.trim() !== '' && !isHtmlEmpty(FotoState.create.form.deskripsi) && file !== null ); }; const resetForm = () => { FotoState.create.form = { name: '', deskripsi: '', imagesId: '', }; setPreviewImage(null); setFile(null); }; const handleSubmit = async () => { if (!FotoState.create.form.name?.trim()) { toast.error('Judul wajib diisi'); return; } if (isHtmlEmpty(FotoState.create.form.deskripsi)) { toast.error('Deskripsi 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'); } const res = await ApiFetch.api.fileStorage.create.post({ file, name: file.name, }); const uploaded = res.data?.data; if (!uploaded?.id) { return toast.error('Gagal mengunggah gambar, silakan coba lagi'); } FotoState.create.form.imagesId = uploaded.id; await FotoState.create.create(); resetForm(); router.push('/admin/desa/gallery/foto'); } catch (error) { console.error('Error creating foto:', error); toast.error('Terjadi kesalahan saat membuat foto'); } finally { setIsSubmitting(false); } }; return ( {/* Header Back Button + Title */} Tambah Foto {/* Card Form */} {/* Judul */} { FotoState.create.form.name = e.currentTarget.value; }} required /> Gambar Berita { 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 {/* Tombol hapus (pojok kanan atas) */} { setPreviewImage(null); setFile(null); }} style={{ boxShadow: '0 2px 6px rgba(0,0,0,0.15)', }} > )} {/* Deskripsi */} Deskripsi Foto { FotoState.create.form.deskripsi = val; }} /> {/* Button Submit */} {/* Tombol Simpan */} ); } export default CreateFoto;