Files
ox_lib/web/src/features/progress/Progressbar.tsx

94 lines
2.3 KiB
TypeScript
Raw Normal View History

2022-03-15 20:35:02 +01:00
import React from "react";
import { Text, Flex, Box } from "@chakra-ui/react";
import { useNuiEvent } from "../../hooks/useNuiEvent";
import { fetchNui } from "../../utils/fetchNui";
2022-03-15 20:35:02 +01:00
export interface ProgressbarProps {
2022-03-15 20:35:02 +01:00
label: string;
duration: number;
}
const Progressbar: React.FC = () => {
const [visible, setVisible] = React.useState(false);
const [label, setLabel] = React.useState("");
const [duration, setDuration] = React.useState(0);
2022-03-15 21:08:08 +01:00
const [cancelled, setCancelled] = React.useState(false);
2022-03-15 20:35:02 +01:00
const progressComplete = () => {
setVisible(false);
fetchNui("progressComplete");
};
2022-03-15 21:08:08 +01:00
const progressCancel = () => {
setCancelled(true);
setVisible(false);
2022-03-15 21:08:08 +01:00
};
useNuiEvent("progressCancel", progressCancel);
useNuiEvent<ProgressbarProps>("progress", (data) => {
2022-03-15 21:08:08 +01:00
setCancelled(false);
2022-03-15 20:35:02 +01:00
setVisible(true);
setLabel(data.label);
setDuration(data.duration);
});
return (
<Flex
h="30%"
2022-03-15 20:35:02 +01:00
w="100%"
position="absolute"
bottom="0"
justifyContent="center"
alignItems="center"
>
<Box width={350}>
{visible && (
<Box
height={45}
bg="rgba(0, 0, 0, 0.6)"
textAlign="center"
borderRadius="sm"
boxShadow="lg"
overflow="hidden"
>
<Box
height={45}
onAnimationEnd={progressComplete}
sx={
!cancelled
? {
width: "0%",
backgroundColor: "green.400",
animation: "progress-bar linear",
animationDuration: `${duration}ms`,
}
: {
// Currently unused
2022-03-15 21:08:08 +01:00
width: "100%",
animationPlayState: "paused",
2022-03-15 21:08:08 +01:00
backgroundColor: "rgb(198, 40, 40)",
}
}
/>
<Text
fontFamily="Inter"
isTruncated
fontSize={22}
fontWeight="light"
position="absolute"
top="50%"
left="50%"
transform="translate(-50%, -50%)"
>
{label}
</Text>
</Box>
)}
2022-03-15 20:35:02 +01:00
</Box>
</Flex>
);
};
export default Progressbar;