206 lines
5.4 KiB
TypeScript
206 lines
5.4 KiB
TypeScript
'use client'
|
|
|
|
import stateProgramPendidikanAnak from '@/app/admin/(dashboard)/_state/pendidikan/program-pendidikan-anak';
|
|
import colors from '@/con/colors';
|
|
import {
|
|
Box,
|
|
Button,
|
|
Center,
|
|
Group,
|
|
Loader,
|
|
Paper,
|
|
Stack,
|
|
Text,
|
|
TextInput,
|
|
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 { useCallback, useEffect, useState } from 'react';
|
|
import { toast } from 'react-toastify';
|
|
import { useProxy } from 'valtio/utils';
|
|
|
|
const ProgramPendidikanAnakTextEditor = dynamic(
|
|
() =>
|
|
import('../../_lib/programPendidikanAnakTextEditor').then(
|
|
(mod) => mod.ProgramPendidikanAnakTextEditor
|
|
),
|
|
{ ssr: false }
|
|
);
|
|
|
|
interface FormData {
|
|
judul: string;
|
|
deskripsi: string;
|
|
}
|
|
|
|
function EditTujuanProgram() {
|
|
const router = useRouter();
|
|
const editState = useProxy(stateProgramPendidikanAnak.programUnggulanState);
|
|
|
|
// lokal state form
|
|
const [formData, setFormData] = useState<FormData>({
|
|
judul: '',
|
|
deskripsi: ''
|
|
});
|
|
const [originalData, setOriginalData] = useState<FormData>({
|
|
judul: '',
|
|
deskripsi: ''
|
|
});
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
// load data once
|
|
useShallowEffect(() => {
|
|
if (!editState.findById.data) editState.findById.initialize();
|
|
}, []);
|
|
|
|
// populate formData saat data global tersedia
|
|
useEffect(() => {
|
|
if (editState.findById.data) {
|
|
setFormData({
|
|
judul: editState.findById.data.judul ?? '',
|
|
deskripsi: editState.findById.data.deskripsi ?? ''
|
|
});
|
|
setOriginalData({
|
|
judul: editState.findById.data.judul ?? '',
|
|
deskripsi: editState.findById.data.deskripsi ?? ''
|
|
});
|
|
}
|
|
}, [editState.findById.data]);
|
|
|
|
const handleChange = useCallback(
|
|
(field: keyof FormData, value: string) => {
|
|
setFormData((prev) => ({ ...prev, [field]: value }));
|
|
},
|
|
[]
|
|
);
|
|
|
|
const handleResetForm = () => {
|
|
setFormData({
|
|
judul: originalData.judul,
|
|
deskripsi: originalData.deskripsi,
|
|
});
|
|
toast.info("Form dikembalikan ke data awal");
|
|
};
|
|
|
|
const handleSubmit = async () => {
|
|
if (!formData.judul.trim()) {
|
|
toast.error('Judul wajib diisi');
|
|
return;
|
|
}
|
|
|
|
setIsSubmitting(true);
|
|
try {
|
|
if (editState.findById.data) {
|
|
// update global state only on submit
|
|
const updatedData = {
|
|
...editState.findById.data,
|
|
judul: formData.judul,
|
|
deskripsi: formData.deskripsi
|
|
};
|
|
await editState.update.save(updatedData);
|
|
|
|
toast.success('Berhasil menyimpan perubahan');
|
|
router.push('/admin/pendidikan/program-pendidikan-anak/program-unggulan');
|
|
}
|
|
} catch (err) {
|
|
console.error('Error saving:', err);
|
|
toast.error('Gagal menyimpan data');
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
const handleBack = () => router.back();
|
|
|
|
if (editState.findById.loading) {
|
|
return (
|
|
<Box>
|
|
<Center h={400}>
|
|
<Text>Memuat data program unggulan...</Text>
|
|
</Center>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Box px={{ base: 0, md: 'lg' }} py="xs">
|
|
<Stack gap="xs">
|
|
<Group mb="md">
|
|
<Button variant="subtle" onClick={handleBack} p="xs" radius="md">
|
|
<IconArrowBack color={colors['blue-button']} size={24} />
|
|
</Button>
|
|
<Title order={4} ml="sm" c="dark">
|
|
Edit Program Unggulan
|
|
</Title>
|
|
</Group>
|
|
|
|
<Paper
|
|
w={{ base: '100%', md: '50%' }}
|
|
bg={colors['white-1']}
|
|
p="md"
|
|
radius="md"
|
|
shadow="sm"
|
|
style={{ border: '1px solid #e0e0e0' }}
|
|
>
|
|
<Stack gap="xs">
|
|
<Title order={3}>Edit Tujuan Program</Title>
|
|
|
|
{/* Judul Field */}
|
|
<TextInput
|
|
label={<Text fw="bold">Judul</Text>}
|
|
placeholder="Masukkan judul program"
|
|
value={formData.judul}
|
|
onChange={(e) => handleChange('judul', e.currentTarget.value)}
|
|
error={!formData.judul && 'Judul wajib diisi'}
|
|
/>
|
|
|
|
{/* Deskripsi Field */}
|
|
<Box>
|
|
<Text fz="sm" fw="bold" mb="xs">
|
|
Deskripsi
|
|
</Text>
|
|
<ProgramPendidikanAnakTextEditor
|
|
showSubmit={false}
|
|
onChange={(value) => handleChange('deskripsi', value)}
|
|
initialContent={formData.deskripsi}
|
|
/>
|
|
</Box>
|
|
|
|
{/* Submit & Cancel */}
|
|
<Group justify="right">
|
|
{/* Tombol Batal */}
|
|
<Button
|
|
variant="outline"
|
|
color="gray"
|
|
radius="md"
|
|
size="md"
|
|
onClick={handleResetForm}
|
|
>
|
|
Batal
|
|
</Button>
|
|
|
|
{/* Tombol Simpan */}
|
|
<Button
|
|
onClick={handleSubmit}
|
|
radius="md"
|
|
size="md"
|
|
style={{
|
|
background: `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>
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default EditTujuanProgram;
|