220 lines
6.6 KiB
TypeScript
220 lines
6.6 KiB
TypeScript
'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 penghargaanState from '../../../_state/desa/penghargaan';
|
|
|
|
function CreatePenghargaan() {
|
|
const statePenghargaan = useProxy(penghargaanState);
|
|
const [previewImage, setPreviewImage] = useState<string | null>(null);
|
|
const [file, setFile] = useState<File | null>(null);
|
|
const router = useRouter();
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const resetForm = () => {
|
|
statePenghargaan.create.form = {
|
|
name: '',
|
|
juara: '',
|
|
deskripsi: '',
|
|
imageId: '',
|
|
};
|
|
setPreviewImage(null);
|
|
setFile(null);
|
|
};
|
|
|
|
const handleSubmit = async () => {
|
|
try {
|
|
setIsSubmitting(true);
|
|
if (!file) {
|
|
return toast.warn('Silakan pilih file gambar terlebih dahulu');
|
|
}
|
|
|
|
const res = await ApiFetch.api.fileStorage.create.post({
|
|
file,
|
|
name: file.name,
|
|
});
|
|
|
|
const uploaded = res.data?.data;
|
|
|
|
if (!uploaded?.id) {
|
|
return toast.error('Gagal mengunggah gambar, silakan coba lagi');
|
|
}
|
|
|
|
statePenghargaan.create.form.imageId = uploaded.id;
|
|
|
|
await statePenghargaan.create.create();
|
|
resetForm();
|
|
router.push('/admin/desa/penghargaan');
|
|
} catch (error) {
|
|
console.error('Error creating penghargaan:', error);
|
|
toast.error('Terjadi kesalahan saat menambahkan penghargaan');
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Box px={{ base: 'sm', md: 'lg' }} py="md">
|
|
{/* Header */}
|
|
<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">
|
|
Tambah Penghargaan
|
|
</Title>
|
|
</Group>
|
|
|
|
{/* 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
|
|
value={statePenghargaan.create.form.name}
|
|
onChange={(val) => (statePenghargaan.create.form.name = val.target.value)}
|
|
label="Nama Penghargaan"
|
|
placeholder="Masukkan nama penghargaan"
|
|
required
|
|
/>
|
|
|
|
<TextInput
|
|
value={statePenghargaan.create.form.juara}
|
|
onChange={(val) => (statePenghargaan.create.form.juara = val.target.value)}
|
|
label="Juara"
|
|
placeholder="Masukkan juara"
|
|
required
|
|
/>
|
|
|
|
<Box>
|
|
<Text fz="sm" fw="bold" mb={6}>Deskripsi</Text>
|
|
<CreateEditor
|
|
value={statePenghargaan.create.form.deskripsi}
|
|
onChange={(htmlContent) => {
|
|
statePenghargaan.create.form.deskripsi = htmlContent;
|
|
}}
|
|
/>
|
|
</Box>
|
|
|
|
{/* Dropzone Upload */}
|
|
<Box>
|
|
<Text fz="sm" fw="bold" mb={6}>Gambar</Text>
|
|
<Dropzone
|
|
onDrop={(files) => {
|
|
const selectedFile = files[0];
|
|
if (selectedFile) {
|
|
setFile(selectedFile);
|
|
setPreviewImage(URL.createObjectURL(selectedFile));
|
|
}
|
|
}}
|
|
onReject={() => toast.error('File tidak valid, gunakan format gambar')}
|
|
maxSize={5 * 1024 ** 2}
|
|
accept={{ 'image/*': ['.jpeg', '.jpg', '.png', '.webp'] }}
|
|
radius="md"
|
|
p="xl"
|
|
>
|
|
<Group justify="center" gap="xl" mih={180}>
|
|
<Dropzone.Accept>
|
|
<IconUpload size={48} color="var(--mantine-color-blue-6)" stroke={1.5} />
|
|
</Dropzone.Accept>
|
|
<Dropzone.Reject>
|
|
<IconX size={48} color="var(--mantine-color-red-6)" stroke={1.5} />
|
|
</Dropzone.Reject>
|
|
<Dropzone.Idle>
|
|
<IconPhoto size={48} color="var(--mantine-color-dimmed)" stroke={1.5} />
|
|
</Dropzone.Idle>
|
|
</Group>
|
|
<Text ta="center" mt="sm" size="sm" color="dimmed">
|
|
Seret gambar atau klik untuk memilih file (maks 5MB)
|
|
</Text>
|
|
</Dropzone>
|
|
|
|
{previewImage && (
|
|
<Box pos={"relative"} mt="sm" style={{ textAlign: 'center' }}>
|
|
<Image
|
|
src={previewImage}
|
|
alt="Preview Gambar"
|
|
radius="md"
|
|
style={{ maxHeight: 200, objectFit: 'contain', border: '1px solid #ddd' }}
|
|
loading="lazy"
|
|
/>
|
|
<ActionIcon
|
|
variant="filled"
|
|
color="red"
|
|
radius="xl"
|
|
size="sm"
|
|
pos="absolute"
|
|
top={5}
|
|
right={5}
|
|
onClick={() => {
|
|
setPreviewImage(null);
|
|
setFile(null);
|
|
}}
|
|
style={{
|
|
boxShadow: '0 2px 6px rgba(0,0,0,0.15)',
|
|
}}
|
|
>
|
|
<IconX size={14} />
|
|
</ActionIcon>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
|
|
{/* Button Submit */}
|
|
<Group justify="right">
|
|
<Button
|
|
variant="outline"
|
|
color="gray"
|
|
radius="md"
|
|
size="md"
|
|
onClick={resetForm}
|
|
>
|
|
Reset
|
|
</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>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default CreatePenghargaan;
|