import React from "react"; import { Progress, ProgressLabel, Flex, Box, ScaleFade, } from "@chakra-ui/react"; import { useNuiEvent } from "../hooks/useNuiEvent"; import { debugData } from "../utils/debugData"; import { fetchNui } from "../utils/fetchNui"; interface Props { label: string; duration: number; } debugData([ { action: "progress", data: { label: "Using lockpick", duration: 8000, }, }, ]); const Progressbar: React.FC = () => { const [visible, setVisible] = React.useState(false); const [label, setLabel] = React.useState(""); const [duration, setDuration] = React.useState(0); const progressComplete = () => { setVisible(false); fetchNui("progressComplete"); }; useNuiEvent("progress", (data) => { if (visible) return; setVisible(true); setLabel(data.label); setDuration(data.duration); }); return ( div:first-of-type": { animation: `progress-bar linear ${duration}ms`, }, }} > {label} ); }; export default Progressbar;