How to convert Array of Object into Object in React

585 Views Asked by At

GetQuery

sample data from getquery graphql generated api

{
    id: '',
    name: '',
    regions: [
      {
        id: '',
        name: '',
        districts: [
          {
            id: '',
            name: '',
            locations: [{ id: '', city: '', division: '', street: '' }],
          },
        ],
      },
    ],
  }

convert it to

{
  id: '',
  name: '',
  regions: {
    id: '',
    name: '',
    districts: {
      id: '',
      name: '',
      locations: { id: '', city: '', division: '', street: '' },
    },
  },
}

I already tried to convert it by using this code

const data = dataGetOrganization?.AllCountries

const result = Object.keys(data).reduce((acc, key) => {
  acc[key] = {
    ...data[key],
    _styles: {
      root: { overflow: 'hidden' },
    },
  }
  return acc
})
1

There are 1 best solutions below

0
On

Try something like this:

var newObj = Object.assign({}, ...(array.map(item => ({ [item.key]: item.value }) )));