react 自动设置高度

export default function Height() {
    const [showDom,setShowDom]=useState([])
    const heightRef = useRef(null)
    let arrData =[
        {
               "index": 1,//占的U位
               "model_id": "assert",//model_id
               "ci_id": 1,//设备id 
               "ci_name": "设备1"//设备名称
             },
             {
               "index": 2,
               "model_id": "assert",
               "ci_id": 1,//设备占的U位多id相同
               "ci_name": ""//设备占的U位多不写名称
             },
             {
               "index": 3,
               "model_id": "assert",
               "ci_id": 1,
               "ci_name": ""
             },
             {
               "index": 4,
               "model_id": "assert",
               "ci_id": 2,
               "ci_name": "设备2"
             },
             {
               "index": 5,
               "model_id": "assert",
               "ci_id": 2,
               "ci_name": ""
             },
             {
               "index": 6,
               "model_id": "assert",
               "ci_id": 2,
               "ci_name": ""
             },
             {
               "index": 7,//没有占用 序号要有
               "model_id": "",
               "ci_id": "",//没有U位id为空
               "ci_name": ""
             }
   ]
   const changeData=(arrData)=>{
    let newArr = []
    arrData.forEach(item => {
        const parent = newArr.find(c => c.ci_id=== item.ci_id)
        if (parent) {
            parent.dataInfo.push(item)
        } else {
            const obj = {
                index: item.index,
                model_id:item.model_id,
                ci_id: item.ci_id,
                ci_name:item.ci_name,
                dataInfo:[item]
            }
            newArr.push(obj)
        }
    })
    newArr.map(obj => {  
      obj.height = obj.dataInfo.length*20+"px";  
      return obj;  
    });  
    return newArr
   }
    useEffect(()=>{
       let arrObj= changeData(arrData);
      
      //  console.log(heightRef.style)
      console.log(arrObj)
       setShowDom(arrObj)
    
    },[])
  return (
    <div>
        {
            showDom.map(item=>{
                return <div key={item.index} className="box1" style={{ height:item.height }} ref={heightRef}>{item.ci_name}</div>
            })
        }
    </div>
  )
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值