import styles from './styles.module.css' import Option from '../option' import {useContext, useEffect, useState} from "react"; import Context, {ContextInterface} from "../command/context"; import {Select, OutlinedInput, FormControl, MenuItem, Checkbox, ListItemText} from "@mui/material"; import {OptionInterface} from "../../../../../api/sm/responses/comamnds"; interface OptionsInterface { optionList: OptionInterface[] } export default function Options({optionList}: OptionsInterface) { let {optionList: ol, setOptionList} = useContext(Context) let [selectedOptions, setSelectedOptions] = useState([]); let [selectedValues, setSelectedValues] = useState(Object.keys(ol) || []); useEffect(() => { let result: OptionInterface[] = []; optionList.forEach((value, index, array) => { let check = selectedValues.find(item => item === value.name) check && result.push(value) }) setSelectedOptions(result) let temp: any = {} optionList.forEach((value, index, array) => { let check = selectedValues.find(item => item === value.name) check && (temp[value.name] = value.acceptValue ? '' : true) }) setOptionList(temp) }, [selectedValues]); if (!optionList.length) { return <> } const handleChange = (event: any) => { const { target: { value }} = event setSelectedValues(typeof value === 'string' ? value.split(',') : value) }; return ( <> {optionList.length > 0 && <>   } {selectedOptions.map((option: OptionInterface, index: number) => (