'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 infoTeknoState from '../../../_state/inovasi/info-tekno'; function CreateInfoTeknologiTepatGuna() { const stateInfoTekno = useProxy(infoTeknoState); const [previewImage, setPreviewImage] = useState(null); const [file, setFile] = useState(null); const router = useRouter(); 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 ( stateInfoTekno.create.form.name?.trim() !== '' && !isHtmlEmpty(stateInfoTekno.create.form.deskripsi) && file !== null ); }; const resetForm = () => { stateInfoTekno.create.form = { name: '', deskripsi: '', imageId: '', }; setPreviewImage(null); setFile(null); }; const handleSubmit = async () => { if (!file) { return toast.error('Silahkan pilih file gambar terlebih dahulu'); } try { setIsSubmitting(true); const uploadRes = await ApiFetch.api.fileStorage.create.post({ file: file, name: file.name, }); const uploaded = uploadRes.data?.data; if (!uploaded?.id) { return toast.error('Gagal upload gambar'); } stateInfoTekno.create.form.imageId = uploaded.id; const success = await stateInfoTekno.create.create(); if (success) { resetForm(); router.push('/admin/inovasi/info-teknologi-tepat-guna'); } } catch (error) { console.error('Error in handleSubmit:', error); toast.error('Terjadi kesalahan saat menyimpan data'); } finally { setIsSubmitting(false); } }; return ( {/* Header */} Tambah Info Teknologi Tepat Guna {/* Form Card */} {/* Nama */} { stateInfoTekno.create.form.name = val.target.value; }} label="Nama Info Teknologi Tepat Guna" placeholder="Masukkan nama info teknologi tepat guna" required /> {/* Deskripsi */} Deskripsi { stateInfoTekno.create.form.deskripsi = htmlContent; }} /> {/* Upload Gambar */} Gambar { const selectedFile = files[0]; if (selectedFile) { setFile(selectedFile); setPreviewImage(URL.createObjectURL(selectedFile)); } }} onReject={() => toast.error('File tidak valid.')} 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 { setPreviewImage(null); setFile(null); }} style={{ boxShadow: '0 2px 6px rgba(0,0,0,0.15)', }} > )} {/* Submit Button */} {/* Tombol Simpan */} ); } export default CreateInfoTeknologiTepatGuna;