152 lines
4.9 KiB
TypeScript
152 lines
4.9 KiB
TypeScript
'use client'
|
|
import { keyWibu, TEMA } from "@/module/_global";
|
|
import { useHookstate } from "@hookstate/core";
|
|
import { ActionIcon, Box, Grid, Group, Progress, Skeleton, Text } from "@mantine/core";
|
|
import { useMediaQuery, useShallowEffect } from "@mantine/hooks";
|
|
import { useParams } from "next/navigation";
|
|
import { useState } from "react";
|
|
import toast from "react-hot-toast";
|
|
import { HiMiniPresentationChartBar } from "react-icons/hi2";
|
|
import { IoIosWarning } from "react-icons/io";
|
|
import { useWibuRealtime } from "wibu-realtime";
|
|
import { funGetTaskDivisionById } from "../lib/api_task";
|
|
import { globalRefreshTask } from "../lib/val_task";
|
|
|
|
export default function ProgressDetailTask() {
|
|
const [valProgress, setValProgress] = useState(0)
|
|
const [valLastUpdate, setValLastUpdate] = useState('')
|
|
const param = useParams<{ id: string, detail: string }>()
|
|
const refresh = useHookstate(globalRefreshTask)
|
|
const [loading, setLoading] = useState(true)
|
|
const isMobile = useMediaQuery('(max-width: 369px)');
|
|
const tema = useHookstate(TEMA)
|
|
const [reason, setReason] = useState("")
|
|
const [dataRealTime, setDataRealtime] = useWibuRealtime({
|
|
WIBU_REALTIME_TOKEN: keyWibu,
|
|
project: "sdm"
|
|
})
|
|
|
|
async function getOneDataCancel() {
|
|
try {
|
|
const res = await funGetTaskDivisionById(param.detail, 'data');
|
|
if (res.success) {
|
|
setReason(res.data.reason);
|
|
} else {
|
|
toast.error(res.message);
|
|
}
|
|
|
|
} catch (error) {
|
|
console.error(error);
|
|
toast.error("Gagal mendapatkan data tugas divisi, coba lagi nanti");
|
|
}
|
|
}
|
|
|
|
useShallowEffect(() => {
|
|
getOneDataCancel();
|
|
}, [param.detail])
|
|
|
|
|
|
async function getOneData(loading: boolean) {
|
|
try {
|
|
setLoading(loading)
|
|
const res = await funGetTaskDivisionById(param.detail, 'progress');
|
|
if (res.success) {
|
|
setValProgress(res.data.progress);
|
|
setValLastUpdate(res.data.lastUpdate);
|
|
} else {
|
|
toast.error(res.message);
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
toast.error("Gagal mendapatkan progress tugas divisi, coba lagi nanti");
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
function onRefresh() {
|
|
if (refresh.get()) {
|
|
getOneData(false)
|
|
refresh.set(false)
|
|
}
|
|
}
|
|
|
|
|
|
useShallowEffect(() => {
|
|
onRefresh()
|
|
}, [refresh.get()])
|
|
|
|
useShallowEffect(() => {
|
|
getOneData(true);
|
|
}, [param.detail])
|
|
|
|
useShallowEffect(() => {
|
|
if (dataRealTime && dataRealTime.some((i: any) => i.category == 'tugas-detail-status' && i.id == param.detail)) {
|
|
getOneDataCancel()
|
|
getOneData(false)
|
|
}
|
|
}, [dataRealTime])
|
|
|
|
return (
|
|
<Box mt={10}>
|
|
{loading ? "" :
|
|
reason !== null ?
|
|
(
|
|
<Box mb={10}>
|
|
<Box p={15} bg={"#FFF2CD"} style={{
|
|
borderRadius: 10,
|
|
}}>
|
|
<Group align='center'>
|
|
<IoIosWarning size={25} />
|
|
<Text fw={"bold"}>Tugas dibatalkan</Text>
|
|
</Group>
|
|
<Text mt={5} truncate="end">{reason}</Text>
|
|
</Box>
|
|
</Box>
|
|
)
|
|
: null
|
|
}
|
|
{loading ?
|
|
<Skeleton width={"100%"} height={100} radius={"md"} />
|
|
:
|
|
<Box
|
|
p={20}
|
|
bg={tema.get().bgTotalKegiatan}
|
|
style={{
|
|
borderRadius: 10,
|
|
}}
|
|
>
|
|
<Grid gutter={"lg"}>
|
|
<Grid.Col span={3}>
|
|
<ActionIcon
|
|
variant="gradient"
|
|
size={isMobile ? 50 : 68}
|
|
aria-label="Gradient action icon"
|
|
radius={100}
|
|
// gradient={{ from: "#DFDA7C", to: "#F2AF46", deg: 174 }}
|
|
bg={tema.get().bgFiturHome}
|
|
>
|
|
<HiMiniPresentationChartBar size={isMobile ? 25 : 35} color={tema.get().utama} />
|
|
</ActionIcon>
|
|
</Grid.Col>
|
|
<Grid.Col span={9}>
|
|
<Box>
|
|
<Text fz={isMobile ? 14 : 16}>Kemajuan Tugas {valProgress}%</Text>
|
|
<Progress
|
|
style={{
|
|
border: `1px solid ${"#BDBDBD"}`,
|
|
}}
|
|
w={"100%"}
|
|
color={tema.get().bgFiturDivision}
|
|
radius="md"
|
|
size={isMobile ? "lg" : "xl"}
|
|
value={valProgress}
|
|
/>
|
|
</Box>
|
|
</Grid.Col>
|
|
</Grid>
|
|
</Box>
|
|
}
|
|
</Box>
|
|
)
|
|
} |