- 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
168 lines
4.8 KiB
TypeScript
168 lines
4.8 KiB
TypeScript
'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 dataLingkunganDesaState from '../../../_state/lingkungan/data-lingkungan-desa';
|
|
import { useState } from 'react';
|
|
import { toast } from 'react-toastify';
|
|
|
|
function CreateDataLingkunganDesa() {
|
|
const stateCreate = useProxy(dataLingkunganDesaState);
|
|
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.jumlah?.trim() !== '' &&
|
|
!isHtmlEmpty(stateCreate.create.form.deskripsi)
|
|
);
|
|
};
|
|
|
|
const resetForm = () => {
|
|
stateCreate.create.form = {
|
|
name: '',
|
|
deskripsi: '',
|
|
jumlah: '',
|
|
icon: '',
|
|
};
|
|
};
|
|
|
|
const handleSubmit = async () => {
|
|
try {
|
|
setIsSubmitting(true);
|
|
await stateCreate.create.create();
|
|
resetForm();
|
|
router.push('/admin/lingkungan/data-lingkungan-desa');
|
|
} catch (error) {
|
|
console.error("Error creating data lingkungan desa:", error);
|
|
toast.error("Terjadi kesalahan saat menambahkan data lingkungan desa");
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Box px={{ base: 0, md: 'lg' }} py="xs">
|
|
{/* Header */}
|
|
<Group mb="md">
|
|
<Button
|
|
variant="subtle"
|
|
onClick={() => router.back()}
|
|
p="xs"
|
|
radius="md"
|
|
>
|
|
<IconArrowBack color={colors['blue-button']} size={22} />
|
|
</Button>
|
|
<Title order={4} ml="sm" c="dark">
|
|
Tambah Data Lingkungan Desa
|
|
</Title>
|
|
</Group>
|
|
|
|
{/* Card Form */}
|
|
<Paper
|
|
w={{ base: '100%', md: '50%' }}
|
|
bg={colors['white-1']}
|
|
p="lg"
|
|
radius="md"
|
|
shadow="sm"
|
|
style={{ border: '1px solid #e0e0e0' }}
|
|
>
|
|
<Stack gap="md">
|
|
<TextInput
|
|
label={<Text fw="bold" fz="sm">Nama Data Lingkungan Desa</Text>}
|
|
placeholder="Masukkan nama data lingkungan desa"
|
|
value={stateCreate.create.form.name || ''}
|
|
onChange={(val) => (stateCreate.create.form.name = val.target.value)}
|
|
required
|
|
/>
|
|
|
|
<Box>
|
|
<Text fz="sm" fw="bold" mb={6}>
|
|
Ikon Data Lingkungan Desa
|
|
</Text>
|
|
<SelectIconProgram
|
|
onChange={(value) => (stateCreate.create.form.icon = value)}
|
|
/>
|
|
</Box>
|
|
|
|
<TextInput
|
|
label={<Text fw="bold" fz="sm">Jumlah Data Lingkungan Desa</Text>}
|
|
placeholder="Masukkan jumlah data lingkungan desa"
|
|
value={stateCreate.create.form.jumlah || ''}
|
|
onChange={(e) => (stateCreate.create.form.jumlah = e.currentTarget.value)}
|
|
required
|
|
/>
|
|
|
|
<Box>
|
|
<Text fw="bold" fz="sm" mb={6}>
|
|
Deskripsi Data Lingkungan Desa
|
|
</Text>
|
|
<CreateEditor
|
|
value={stateCreate.create.form.deskripsi}
|
|
onChange={(htmlContent) =>
|
|
(stateCreate.create.form.deskripsi = htmlContent)
|
|
}
|
|
/>
|
|
</Box>
|
|
|
|
{/* Submit Button */}
|
|
<Group justify="right" mt="sm">
|
|
<Button
|
|
variant="outline"
|
|
color="gray"
|
|
radius="md"
|
|
size="md"
|
|
onClick={resetForm}
|
|
>
|
|
Reset
|
|
</Button>
|
|
|
|
{/* Tombol Simpan */}
|
|
<Button
|
|
onClick={handleSubmit}
|
|
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>
|
|
);
|
|
}
|
|
|
|
export default CreateDataLingkunganDesa;
|