148 lines
4.7 KiB
TypeScript
148 lines
4.7 KiB
TypeScript
'use client'
|
|
import CreateEditor from '@/app/admin/(dashboard)/_com/createEditor';
|
|
import stateGallery from '@/app/admin/(dashboard)/_state/desa/gallery';
|
|
import colors from '@/con/colors';
|
|
import ApiFetch from '@/lib/api-fetch';
|
|
import { Box, Button, Group, Image, 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';
|
|
|
|
|
|
|
|
function CreateFoto() {
|
|
const fotoState = useProxy(stateGallery.foto)
|
|
const router = useRouter();
|
|
const [previewImage, setPreviewImage] = useState<string | null>(null);
|
|
const [file, setFile] = useState<File | null>(null);
|
|
|
|
const resetForm = () => {
|
|
fotoState.create.form = {
|
|
name: "",
|
|
deskripsi: "",
|
|
imagesId: "",
|
|
};
|
|
|
|
setPreviewImage(null)
|
|
setFile(null)
|
|
};
|
|
|
|
const handleSubmit = async () => {
|
|
if (!file) {
|
|
return toast.warn("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 upload gambar");
|
|
}
|
|
|
|
fotoState.create.form.imagesId = uploaded.id;
|
|
await fotoState.create.create();
|
|
resetForm();
|
|
router.push("/admin/desa/gallery/foto")
|
|
};
|
|
|
|
return (
|
|
<Box>
|
|
<Box mb={10}>
|
|
<Button onClick={() => router.back()} variant='subtle' color={'blue'}>
|
|
<IconArrowBack color={colors['blue-button']} size={25} />
|
|
</Button>
|
|
</Box>
|
|
|
|
<Paper w={{ base: '100%', md: '50%' }} bg={colors['white-1']} p={'md'}>
|
|
<Stack gap={"xs"}>
|
|
<Title order={4}>Create Foto</Title>
|
|
<TextInput
|
|
label={<Text fw={"bold"} fz={"sm"}>Judul Foto</Text>}
|
|
placeholder='Masukkan judul foto'
|
|
value={fotoState.create.form.name}
|
|
onChange={(val) => {
|
|
fotoState.create.form.name = val.target.value;
|
|
}}
|
|
/>
|
|
<Box>
|
|
<Text fz={"md"} fw={"bold"}>Gambar</Text>
|
|
<Box>
|
|
<Dropzone
|
|
onDrop={(files) => {
|
|
const selectedFile = files[0]; // Ambil file pertama
|
|
if (selectedFile) {
|
|
setFile(selectedFile);
|
|
setPreviewImage(URL.createObjectURL(selectedFile)); // Buat preview
|
|
}
|
|
}}
|
|
onReject={() => toast.error('File tidak valid.')}
|
|
maxSize={5 * 1024 ** 2} // Maks 5MB
|
|
accept={{ 'image/*': [] }}
|
|
>
|
|
<Group justify="center" gap="xl" mih={220} style={{ pointerEvents: 'none' }}>
|
|
<Dropzone.Accept>
|
|
<IconUpload size={52} color="var(--mantine-color-blue-6)" stroke={1.5} />
|
|
</Dropzone.Accept>
|
|
<Dropzone.Reject>
|
|
<IconX size={52} color="var(--mantine-color-red-6)" stroke={1.5} />
|
|
</Dropzone.Reject>
|
|
<Dropzone.Idle>
|
|
<IconPhoto size={52} color="var(--mantine-color-dimmed)" stroke={1.5} />
|
|
</Dropzone.Idle>
|
|
|
|
<div>
|
|
<Text size="xl" inline>
|
|
Drag gambar ke sini atau klik untuk pilih file
|
|
</Text>
|
|
<Text size="sm" c="dimmed" inline mt={7}>
|
|
Maksimal 5MB dan harus format gambar
|
|
</Text>
|
|
</div>
|
|
</Group>
|
|
</Dropzone>
|
|
|
|
{/* Tampilkan preview kalau ada */}
|
|
{previewImage && (
|
|
<Box mt="sm">
|
|
<Image
|
|
src={previewImage}
|
|
alt="Preview"
|
|
style={{
|
|
maxWidth: '100%',
|
|
maxHeight: '200px',
|
|
objectFit: 'contain',
|
|
borderRadius: '8px',
|
|
border: '1px solid #ddd',
|
|
}}
|
|
/>
|
|
</Box>
|
|
)}
|
|
|
|
</Box>
|
|
</Box>
|
|
<Box>
|
|
<Text fw={"bold"} fz={"sm"}>Deskripsi Foto</Text>
|
|
<CreateEditor
|
|
value={fotoState.create.form.deskripsi}
|
|
onChange={(val) => {
|
|
fotoState.create.form.deskripsi = val;
|
|
}}
|
|
/>
|
|
</Box>
|
|
<Group>
|
|
<Button onClick={handleSubmit} bg={colors['blue-button']}>Submit</Button>
|
|
</Group>
|
|
</Stack>
|
|
</Paper>
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
export default CreateFoto;
|