'use client'; import colors from '@/con/colors'; import { Box, Button, Group, Loader, Paper, Stack, Text, TextInput, Title } from '@mantine/core'; import { IconArrowBack } from '@tabler/icons-react'; import { useRouter } from 'next/navigation'; import { useProxy } from 'valtio/utils'; import CreateEditor from '../../../_com/createEditor'; import SelectIconProgram from '../../../_com/selectIcon'; import programPenghijauanState from '../../../_state/lingkungan/program-penghijauan'; import { toast } from 'react-toastify'; import { useState } from 'react'; function CreateProgramPenghijauan() { const stateCreate = useProxy(programPenghijauanState); 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 ( stateCreate.create.form.name?.trim() !== '' && stateCreate.create.form.icon?.trim() !== '' && stateCreate.create.form.judul?.trim() !== '' && !isHtmlEmpty(stateCreate.create.form.deskripsi) ); }; const resetForm = () => { stateCreate.create.form = { name: '', deskripsi: '', judul: '', icon: '', }; }; const handleSubmit = async () => { try { setIsSubmitting(true); await stateCreate.create.create(); resetForm(); router.push('/admin/lingkungan/program-penghijauan'); } catch (error) { console.error(error); toast.error(error instanceof Error ? error.message : 'Gagal menambahkan program penghijauan'); } finally { setIsSubmitting(false); } }; return ( {/* Tombol back + title */} Tambah Program Penghijauan {/* Form */} Nama Program Penghijauan} placeholder="Masukkan nama program penghijauan" value={stateCreate.create.form.name || ''} onChange={(e) => (stateCreate.create.form.name = e.target.value)} required /> Ikon Program Penghijauan (stateCreate.create.form.icon = value)} /> Judul Deskripsi Program Penghijauan} placeholder="Masukkan judul deskripsi program penghijauan" value={stateCreate.create.form.judul || ''} onChange={(e) => (stateCreate.create.form.judul = e.target.value)} required /> Deskripsi Program Penghijauan (stateCreate.create.form.deskripsi = htmlContent) } /> {/* Tombol Simpan */} ); } export default CreateProgramPenghijauan;