213 lines
7.5 KiB
TypeScript
213 lines
7.5 KiB
TypeScript
"use client";
|
|
import { keyWibu, LayoutDrawer, LayoutNavbarNew, TEMA } from "@/module/_global";
|
|
import LayoutModal from "@/module/_global/layout/layout_modal";
|
|
import { useHookstate } from "@hookstate/core";
|
|
import { Box, Button, Flex, Group, Loader, rem, SimpleGrid, Stack, Text, } from "@mantine/core";
|
|
import { Dropzone } from "@mantine/dropzone";
|
|
import _ from "lodash";
|
|
import { useParams, useRouter } from "next/navigation";
|
|
import { useRef, useState } from "react";
|
|
import toast from "react-hot-toast";
|
|
import { FaTrash } from "react-icons/fa6";
|
|
import { IoIosArrowDropright } from "react-icons/io";
|
|
import { useWibuRealtime } from "wibu-realtime";
|
|
import { funAddFileProject, funCekNamFileUploadProject } from "../lib/api_project";
|
|
import { IListFileTaskProject } from "../lib/type_project";
|
|
import ResultsFile from "./results_file";
|
|
|
|
|
|
export default function AddFileDetailProject() {
|
|
const router = useRouter()
|
|
const [loadingModal, setLoadingModal] = useState(false)
|
|
const [openModal, setOpenModal] = useState(false)
|
|
const [fileForm, setFileForm] = useState<any[]>([])
|
|
const [listFile, setListFile] = useState<IListFileTaskProject[]>([])
|
|
const param = useParams<{ id: string }>()
|
|
const [indexDelFile, setIndexDelFile] = useState<number>(0)
|
|
const [openDrawerFile, setOpenDrawerFile] = useState(false)
|
|
const tema = useHookstate(TEMA)
|
|
const [loadingUpload, setLoadingUpload] = useState(false)
|
|
const openRef = useRef<() => void>(null)
|
|
const [dataRealTime, setDataRealtime] = useWibuRealtime({
|
|
WIBU_REALTIME_TOKEN: keyWibu,
|
|
project: "sdm"
|
|
})
|
|
|
|
function deleteFile(index: number) {
|
|
setListFile([...listFile.filter((val, i) => i !== index)])
|
|
setFileForm([...fileForm.filter((val, i) => i !== index)])
|
|
setOpenDrawerFile(false)
|
|
}
|
|
|
|
|
|
async function cekFileName(data: any) {
|
|
try {
|
|
setLoadingUpload(true)
|
|
const fd = new FormData();
|
|
fd.append(`file`, data);
|
|
const res = await funCekNamFileUploadProject(param.id, fd)
|
|
if (res.success) {
|
|
setFileForm([...fileForm, data])
|
|
setListFile([...listFile, { name: data.name, extension: data.type.split("/")[1] }])
|
|
} else {
|
|
toast.error(res.message)
|
|
}
|
|
} catch (error) {
|
|
console.error(error)
|
|
toast.error("Gagal menambahkan file, coba lagi nanti")
|
|
} finally {
|
|
setLoadingUpload(false)
|
|
}
|
|
}
|
|
|
|
async function onSubmit() {
|
|
try {
|
|
setLoadingModal(true)
|
|
const fd = new FormData();
|
|
for (let i = 0; i < fileForm.length; i++) {
|
|
fd.append(`file${i}`, fileForm[i]);
|
|
}
|
|
|
|
const response = await funAddFileProject(param.id, fd)
|
|
if (response.success) {
|
|
setDataRealtime([{
|
|
category: "project-detail-file",
|
|
id: param.id,
|
|
}])
|
|
toast.success(response.message)
|
|
setFileForm([])
|
|
setListFile([])
|
|
router.push(`/project/${param.id}`)
|
|
} else {
|
|
toast.error(response.message)
|
|
}
|
|
} catch (error) {
|
|
console.error(error)
|
|
toast.error("Gagal menambahkan file, coba lagi nanti");
|
|
} finally {
|
|
setOpenModal(false)
|
|
setLoadingModal(false)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
<Box>
|
|
<LayoutNavbarNew back="" title={"Tambah File"} menu />
|
|
<Box p={20} pb={100}>
|
|
<Stack>
|
|
<Dropzone
|
|
openRef={openRef}
|
|
onDrop={async (files) => {
|
|
if (!files || _.isEmpty(files))
|
|
return toast.error('Tidak ada file yang dipilih')
|
|
cekFileName(files[0])
|
|
}}
|
|
activateOnClick={false}
|
|
maxSize={100 * 1024 ** 2}
|
|
accept={['image/png', 'image/jpeg', 'application/pdf', 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'application/vnd.ms-excel', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet']}
|
|
onReject={(files) => {
|
|
return toast.error('File yang diizinkan: .csv, .png, .jpg, .pdf, .doc, .docx, .xls, .xlsx dengan ukuran maksimal 100 MB')
|
|
}}
|
|
>
|
|
</Dropzone>
|
|
<Group
|
|
justify="space-between"
|
|
p={10}
|
|
style={{
|
|
border: `1px solid ${"#D6D8F6"}`,
|
|
borderRadius: 10,
|
|
}}
|
|
onClick={() => openRef.current?.()}
|
|
>
|
|
<Text>Upload File</Text>
|
|
<IoIosArrowDropright size={25} />
|
|
</Group>
|
|
</Stack>
|
|
{
|
|
listFile.length > 0 &&
|
|
<Box pt={20}>
|
|
<Text fw={'bold'} c={tema.get().utama}>File</Text>
|
|
<Box bg={"white"} style={{
|
|
borderRadius: 10,
|
|
border: `1px solid ${"#D6D8F6"}`,
|
|
padding: 20
|
|
}}>
|
|
{
|
|
listFile.map((v, i) => {
|
|
return (
|
|
<Box key={i} onClick={() => {
|
|
setIndexDelFile(i)
|
|
setOpenDrawerFile(true)
|
|
}}>
|
|
<ResultsFile name={v.name} extension={v.extension} />
|
|
</Box>
|
|
)
|
|
})
|
|
}
|
|
</Box>
|
|
</Box>
|
|
}
|
|
{
|
|
loadingUpload &&
|
|
<Group justify="center" py={20}>
|
|
<Loader color="gray" type="dots" />
|
|
</Group>
|
|
}
|
|
|
|
</Box>
|
|
<Box pos={'fixed'} bottom={0} p={rem(20)} w={"100%"} style={{
|
|
maxWidth: rem(550),
|
|
zIndex: 999,
|
|
backgroundColor: `${tema.get().bgUtama}`,
|
|
}}>
|
|
<Button
|
|
color="white"
|
|
bg={tema.get().utama}
|
|
size="lg" radius={30}
|
|
fullWidth
|
|
onClick={() => {
|
|
if (fileForm.length > 0) {
|
|
setOpenModal(true)
|
|
} else {
|
|
toast.error("Silakan pilih file yang akan diupload")
|
|
}
|
|
}}>
|
|
Simpan
|
|
</Button>
|
|
</Box>
|
|
|
|
<LayoutDrawer
|
|
opened={openDrawerFile}
|
|
onClose={() => setOpenDrawerFile(false)}
|
|
title={""}
|
|
>
|
|
<Stack pt={10}>
|
|
<SimpleGrid cols={{ base: 3, sm: 3, lg: 3 }} >
|
|
<Flex style={{ cursor: 'pointer' }} justify={'center'} align={'center'} direction={'column'} onClick={() => deleteFile(indexDelFile)}>
|
|
<Box>
|
|
<FaTrash size={30} color={tema.get().utama} />
|
|
</Box>
|
|
<Box>
|
|
<Text c={tema.get().utama} ta='center'>Hapus File</Text>
|
|
</Box>
|
|
</Flex>
|
|
</SimpleGrid>
|
|
</Stack>
|
|
</LayoutDrawer>
|
|
|
|
<LayoutModal loading={loadingModal} opened={openModal} onClose={() => setOpenModal(false)}
|
|
description="Apakah Anda yakin ingin menambahkan file?"
|
|
onYes={(val) => {
|
|
if (val) {
|
|
onSubmit()
|
|
} else {
|
|
setOpenModal(false)
|
|
}
|
|
}} />
|
|
|
|
</Box>
|
|
);
|
|
}
|