Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

65
Views
How can I push children in object state? I want to add children in any place off tree where parent key is match
const [treeData, setTreeData] = useState([
      {
        title: 'parent 1',
        key: '0-0',
        icon: <UserAddOutlined />,
        children: [
          {
            title: 'parent 1-0',
            key: '0-0-0',
            icon: <UserAddOutlined />,
            children: [
              {
                title: 'leaf',
                key: '0-0-0-0',
                icon: <UserAddOutlined />,
              },
              {
                title: 'leaf',
                key: '0-0-0-1',
                icon: <UserAddOutlined />,
              },
            ],
          },
          {
            title: 'parent 1-1',
            key: '0-0-1',
            icon: <UserAddOutlined />,
            children: [
              {
                title: 'sss',
                key: '0-0-1-0',
                icon: <UserAddOutlined />,
              },
            ],
          },
        ],
      },
    ]);


const insertDataHandler = (formData) =>{

  // i need to add this element on specific parent's children list
  const parentId = formData.pId;
  let element = {
    title: formData.nNode,
    key: formData.Id,
    icon: <UserAddOutlined />,
  }
}

in insertDataHandler the element was created, and also I have a parent id so what I need to do is the parent id will check all the keys of treeData and add to this specific parent's children's array where key is match, if the children are not exist then create the array then insert into that array

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!