import { Modal, ModalOverlay, ModalContent, ModalFooter, ModalHeader, ModalBody, Button, } from "@chakra-ui/react"; import React from "react"; import { useNuiEvent } from "../../hooks/useNuiEvent"; import { useLocales } from "../../providers/LocaleProvider"; import { debugData } from "../../utils/debugData"; import { fetchNui } from "../../utils/fetchNui"; import { Row } from "../../interfaces/dialog"; import Input from "./components/input"; import CheckboxField from "./components/checkbox"; import SelectField from "./components/select"; interface Props { heading: string; rows: Row[]; } // debugData([ // { // action: "openDialog", // data: { // heading: "Police locker", // rows: [ // { type: "input", label: "Locker number" }, // { type: "checkbox", label: "Some checkbox" }, // { type: "input", label: "Locker PIN", password: true, icon: "lock" }, // { type: "checkbox", label: "Some other checkbox" }, // { // type: "select", // label: "Locker type", // options: [ // { value: "option1", label: "Option 1" }, // { value: "option2", label: "Option 2" }, // { value: "option3", label: "Option 3" }, // ], // }, // ], // }, // }, // ]); const InputDialog: React.FC = () => { const [fields, setFields] = React.useState({ heading: "", rows: [{ type: "input", label: "" }], }); const [inputData, setInputData] = React.useState>([]); const [passwordStates, setPasswordStates] = React.useState([]); const [visible, setVisible] = React.useState(false); const { locale } = useLocales(); const handlePasswordStates = (index: number) => { setPasswordStates({ ...passwordStates, [index]: !passwordStates[index], }); }; useNuiEvent("openDialog", (data) => { setPasswordStates([]); setFields(data); setInputData([]); setVisible(true); }); const handleClose = () => { setVisible(false); fetchNui("inputData"); }; const handleChange = (value: string | boolean, index: number) => { setInputData((previousData) => { previousData[index] = value; return previousData; }); }; const handleConfirm = () => { setVisible(false); fetchNui("inputData", inputData); }; return ( <> {fields.heading} {fields.rows.map((row, index) => ( {row.type === "input" && ( )} {row.type === "checkbox" && ( )} {row.type === "select" && ( )} ))} ); }; export default InputDialog;