- Added isFormValid() and isHtmlEmpty() helper functions for form validation - Disabled submit buttons when required fields are empty across multiple admin and public pages - Applied consistent validation pattern for creating and editing records - Commented out WhatsApp OTP sending in login route for debugging/testing - Fixed path in NavbarMainMenu tooltip action
174 lines
5.3 KiB
TypeScript
174 lines
5.3 KiB
TypeScript
'use client'
|
|
import stateEdukasiLingkungan from '@/app/admin/(dashboard)/_state/lingkungan/edukasi-lingkungan';
|
|
import colors from '@/con/colors';
|
|
import { Box, Button, Group, Loader, Paper, Stack, Text, Title } from '@mantine/core';
|
|
import { useShallowEffect } from '@mantine/hooks';
|
|
import { IconArrowBack } from '@tabler/icons-react';
|
|
import dynamic from 'next/dynamic';
|
|
import { useRouter } from 'next/navigation';
|
|
import { useEffect, useState } from 'react';
|
|
import { toast } from 'react-toastify';
|
|
import { useProxy } from 'valtio/utils';
|
|
|
|
const EdukasiLingkunganTextEditor = dynamic(
|
|
() => import('../../_lib/edukasiLingkunganTextEditor').then(mod => mod.EdukasiLingkunganTextEditor),
|
|
{ ssr: false }
|
|
);
|
|
|
|
export default function EditMateriEdukasiYangDiberikan() {
|
|
const router = useRouter();
|
|
const materiEdukasiState = useProxy(stateEdukasiLingkungan.stateMateriEdukasiLingkungan);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
// State lokal gabungan untuk form
|
|
const [formData, setFormData] = useState({ judul: '', content: '' });
|
|
const [originalData, setOriginalData] = useState({
|
|
judul: '',
|
|
content: '',
|
|
});
|
|
|
|
// 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 (
|
|
!isHtmlEmpty(formData.judul) &&
|
|
!isHtmlEmpty(formData.content)
|
|
);
|
|
};
|
|
|
|
// Initialize data kalau belum ada
|
|
useShallowEffect(() => {
|
|
if (!materiEdukasiState.findById.data) {
|
|
materiEdukasiState.findById.initialize();
|
|
}
|
|
}, []);
|
|
|
|
// Set formData saat data tersedia
|
|
useEffect(() => {
|
|
if (materiEdukasiState.findById.data) {
|
|
setFormData({
|
|
judul: materiEdukasiState.findById.data.judul ?? '',
|
|
content: materiEdukasiState.findById.data.deskripsi ?? '',
|
|
});
|
|
setOriginalData({
|
|
judul: materiEdukasiState.findById.data.judul ?? '',
|
|
content: materiEdukasiState.findById.data.deskripsi ?? '',
|
|
});
|
|
}
|
|
}, [materiEdukasiState.findById.data]);
|
|
|
|
// Handler perubahan form
|
|
const handleChange = (field: 'judul' | 'content', value: string) => {
|
|
setFormData(prev => ({ ...prev, [field]: value }));
|
|
};
|
|
const handleResetForm = () => {
|
|
setFormData({
|
|
judul: originalData.judul,
|
|
content: originalData.content,
|
|
});
|
|
toast.info("Form dikembalikan ke data awal");
|
|
};
|
|
|
|
const submit = () => {
|
|
try {
|
|
setIsSubmitting(true);
|
|
if (materiEdukasiState.findById.data) {
|
|
const updatedData = {
|
|
...materiEdukasiState.findById.data,
|
|
judul: formData.judul,
|
|
deskripsi: formData.content,
|
|
};
|
|
materiEdukasiState.update.save(updatedData);
|
|
}
|
|
router.push('/admin/lingkungan/edukasi-lingkungan/materi-edukasi-yang-diberikan');
|
|
} catch (error) {
|
|
console.error("Error updating materi edukasi yang diberikan:", error);
|
|
toast.error("Terjadi kesalahan saat memperbarui materi edukasi yang diberikan");
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Box px={{ base: 0, md: 'lg' }} py="xs">
|
|
<Group mb="md">
|
|
<Button variant="subtle" onClick={() => router.back()} p="xs" radius="md">
|
|
<IconArrowBack color={colors['blue-button']} size={24} />
|
|
</Button>
|
|
<Title order={4} ml="sm" c="dark">
|
|
Edit Materi Edukasi Yang Diberikan
|
|
</Title>
|
|
</Group>
|
|
|
|
<Paper
|
|
bg={colors['white-1']}
|
|
p="lg"
|
|
radius="md"
|
|
shadow="sm"
|
|
w={{ base: '100%', md: '50%' }}
|
|
style={{ border: '1px solid #e0e0e0' }}
|
|
>
|
|
<Stack gap="md">
|
|
<Box>
|
|
<Text fw="bold" mb={6}>
|
|
Judul
|
|
</Text>
|
|
<EdukasiLingkunganTextEditor
|
|
showSubmit={false}
|
|
onChange={(val) => handleChange('judul', val)}
|
|
initialContent={formData.judul}
|
|
/>
|
|
</Box>
|
|
|
|
<Box>
|
|
<Text fw="bold" mb={6}>
|
|
Konten
|
|
</Text>
|
|
<EdukasiLingkunganTextEditor
|
|
showSubmit={false}
|
|
onChange={(val) => handleChange('content', val)}
|
|
initialContent={formData.content}
|
|
/>
|
|
</Box>
|
|
|
|
<Group justify="right">
|
|
{/* Tombol Batal */}
|
|
<Button
|
|
variant="outline"
|
|
color="gray"
|
|
radius="md"
|
|
size="md"
|
|
onClick={handleResetForm}
|
|
>
|
|
Batal
|
|
</Button>
|
|
|
|
{/* Tombol Simpan */}
|
|
<Button
|
|
onClick={submit}
|
|
radius="md"
|
|
size="md"
|
|
disabled={!isFormValid() || isSubmitting}
|
|
style={{
|
|
background: !isFormValid() || isSubmitting
|
|
? `linear-gradient(135deg, #cccccc, #eeeeee)`
|
|
: `linear-gradient(135deg, ${colors['blue-button']}, #4facfe)`,
|
|
color: '#fff',
|
|
boxShadow: '0 4px 15px rgba(79, 172, 254, 0.4)',
|
|
}}
|
|
>
|
|
{isSubmitting ? <Loader size="sm" color="white" /> : 'Simpan'}
|
|
</Button>
|
|
</Group>
|
|
</Stack>
|
|
</Paper>
|
|
</Box>
|
|
);
|
|
}
|