2022-08-27 15:58:36 +02: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
|
|
|
|
2022-08-27 15:40:41 +02: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);
|
2022-08-27 15:58:36 +02:00
|
|
|
const [label, setLabel] = React.useState('');
|
2022-03-15 20:35:02 +01:00
|
|
|
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);
|
2022-08-27 15:58:36 +02:00
|
|
|
fetchNui('progressComplete');
|
2022-03-15 20:35:02 +01:00
|
|
|
};
|
|
|
|
|
|
2022-03-15 21:08:08 +01:00
|
|
|
const progressCancel = () => {
|
|
|
|
|
setCancelled(true);
|
2022-06-14 19:18:24 +02:00
|
|
|
setVisible(false);
|
2022-03-15 21:08:08 +01:00
|
|
|
};
|
|
|
|
|
|
2022-08-27 15:58:36 +02:00
|
|
|
useNuiEvent('progressCancel', progressCancel);
|
2022-03-15 21:08:08 +01:00
|
|
|
|
2022-08-27 15:58:36 +02:00
|
|
|
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 (
|
2022-08-27 15:58:36 +02:00
|
|
|
<Flex h="30%" w="100%" position="absolute" bottom="0" justifyContent="center" alignItems="center">
|
2022-04-16 13:04:22 +02:00
|
|
|
<Box width={350}>
|
2022-05-10 16:39:05 +02:00
|
|
|
{visible && (
|
2022-04-16 13:04:22 +02:00
|
|
|
<Box
|
|
|
|
|
height={45}
|
|
|
|
|
bg="rgba(0, 0, 0, 0.6)"
|
|
|
|
|
textAlign="center"
|
2022-03-20 19:58:52 +01:00
|
|
|
borderRadius="sm"
|
|
|
|
|
boxShadow="lg"
|
2022-04-16 13:04:22 +02:00
|
|
|
overflow="hidden"
|
|
|
|
|
>
|
|
|
|
|
<Box
|
|
|
|
|
height={45}
|
|
|
|
|
onAnimationEnd={progressComplete}
|
|
|
|
|
sx={
|
|
|
|
|
!cancelled
|
|
|
|
|
? {
|
2022-08-27 15:58:36 +02:00
|
|
|
width: '0%',
|
|
|
|
|
backgroundColor: 'green.400',
|
|
|
|
|
animation: 'progress-bar linear',
|
2022-05-10 16:39:05 +02:00
|
|
|
animationDuration: `${duration}ms`,
|
2022-04-16 13:04:22 +02:00
|
|
|
}
|
|
|
|
|
: {
|
2022-06-14 19:18:24 +02:00
|
|
|
// Currently unused
|
2022-08-27 15:58:36 +02:00
|
|
|
width: '100%',
|
|
|
|
|
animationPlayState: 'paused',
|
|
|
|
|
backgroundColor: 'rgb(198, 40, 40)',
|
2022-04-16 13:04:22 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<Text
|
2022-10-27 16:44:21 +02:00
|
|
|
maxWidth={350}
|
2022-04-16 13:04:22 +02:00
|
|
|
fontFamily="Inter"
|
2022-10-27 16:44:21 +02:00
|
|
|
textOverflow="ellipsis"
|
|
|
|
|
overflow="hidden"
|
|
|
|
|
whiteSpace="nowrap"
|
2022-04-16 13:04:22 +02:00
|
|
|
fontSize={22}
|
|
|
|
|
fontWeight="light"
|
|
|
|
|
position="absolute"
|
|
|
|
|
top="50%"
|
|
|
|
|
left="50%"
|
|
|
|
|
transform="translate(-50%, -50%)"
|
|
|
|
|
>
|
2022-03-20 19:58:52 +01:00
|
|
|
{label}
|
2022-04-16 13:04:22 +02:00
|
|
|
</Text>
|
|
|
|
|
</Box>
|
2022-05-10 16:39:05 +02:00
|
|
|
)}
|
2022-03-15 20:35:02 +01:00
|
|
|
</Box>
|
|
|
|
|
</Flex>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Progressbar;
|