mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
import {
|
|
AlertDialog as Dialog,
|
|
AlertDialogBody,
|
|
AlertDialogFooter,
|
|
AlertDialogHeader,
|
|
AlertDialogContent,
|
|
AlertDialogOverlay,
|
|
useDisclosure,
|
|
Button,
|
|
} from "@chakra-ui/react";
|
|
import { useRef, useState } from "react";
|
|
import ReactMarkdown from "react-markdown";
|
|
import { useNuiEvent } from "../../hooks/useNuiEvent";
|
|
import { debugData } from "../../utils/debugData";
|
|
import { fetchNui } from "../../utils/fetchNui";
|
|
|
|
interface DialogProps {
|
|
header: string;
|
|
content: string;
|
|
button: string;
|
|
centered?: boolean;
|
|
}
|
|
|
|
debugData<DialogProps>([
|
|
{
|
|
action: "sendAlert",
|
|
data: {
|
|
header: "Hello there",
|
|
content: "General kenobi \n Markdown works",
|
|
button: "Ok",
|
|
centered: true,
|
|
},
|
|
},
|
|
]);
|
|
|
|
const AlertDialog: React.FC = () => {
|
|
const { isOpen, onOpen, onClose } = useDisclosure();
|
|
const cancelRef = useRef(null);
|
|
const [dialogData, setDialogData] = useState<DialogProps>({
|
|
header: "",
|
|
content: "",
|
|
button: "",
|
|
});
|
|
|
|
const closeAlert = () => {
|
|
onClose();
|
|
fetchNui("closeAlert");
|
|
};
|
|
|
|
useNuiEvent("sendAlert", (data: DialogProps) => {
|
|
setDialogData(data);
|
|
onOpen();
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<Dialog
|
|
leastDestructiveRef={cancelRef}
|
|
onClose={onClose}
|
|
isOpen={isOpen}
|
|
isCentered={dialogData.centered}
|
|
closeOnOverlayClick={false}
|
|
onEsc={closeAlert}
|
|
>
|
|
<AlertDialogOverlay />
|
|
<AlertDialogContent fontFamily="Inter">
|
|
<AlertDialogHeader fontSize="lg" fontWeight="bold">
|
|
{dialogData.header}
|
|
</AlertDialogHeader>
|
|
<AlertDialogBody>
|
|
<ReactMarkdown>{dialogData.content}</ReactMarkdown>
|
|
</AlertDialogBody>
|
|
<AlertDialogFooter>
|
|
<Button onClick={closeAlert}>{dialogData.button}</Button>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</Dialog>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AlertDialog;
|