admin管理员组

文章数量:1344612

I have these two array of objects

todos: [
    {
      id: 1,
      name: 'customerReport',
      label: 'Report send to customer'
    },
    {
      id: 2,
      name: 'handover',
      label: 'Handover (in CRM)'
    },
  ]

And:

todosMoreDetails: [
          {
            id: 1,
            checked: false,
            link: {
              type: 'url',
              content: ''
            },
            notes: []
          },
          {
            id: 2,
            checked: false,
            link: {
              type: 'url',
              content: ''
            },
            notes: []
          }
        ]

So that the final array of objects will be a bination of the two, based on the object ID, like below:

FinalTodos: [
          {
            id: 1,
            checked: false,
            link: {
              type: 'url',
              content: ''
            },
            notes: [],
            name: 'customerReport',
            label: 'Report send to customer'
          },
          {
            id: 2,
            checked: false,
            link: {
              type: 'url',
              content: ''
            },
            notes: [],
            name: 'handover',
            label: 'Handover (in CRM)'
          }
        ]

I tried with merge mergeAll and mergeWithKey but I am probably missing something

I have these two array of objects

todos: [
    {
      id: 1,
      name: 'customerReport',
      label: 'Report send to customer'
    },
    {
      id: 2,
      name: 'handover',
      label: 'Handover (in CRM)'
    },
  ]

And:

todosMoreDetails: [
          {
            id: 1,
            checked: false,
            link: {
              type: 'url',
              content: 'http://something.'
            },
            notes: []
          },
          {
            id: 2,
            checked: false,
            link: {
              type: 'url',
              content: 'http://something.'
            },
            notes: []
          }
        ]

So that the final array of objects will be a bination of the two, based on the object ID, like below:

FinalTodos: [
          {
            id: 1,
            checked: false,
            link: {
              type: 'url',
              content: 'http://something.'
            },
            notes: [],
            name: 'customerReport',
            label: 'Report send to customer'
          },
          {
            id: 2,
            checked: false,
            link: {
              type: 'url',
              content: 'http://something.'
            },
            notes: [],
            name: 'handover',
            label: 'Handover (in CRM)'
          }
        ]

I tried with merge mergeAll and mergeWithKey but I am probably missing something

Share Improve this question asked Mar 9, 2017 at 14:24 AnonymousAnonymous 1,0312 gold badges10 silver badges25 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

You can achieve this with an intermediate groupBy:

Transform the todosMoreDetails array into an object keyed by todo property ID using groupBy:

var moreDetailsById = R.groupBy(R.prop('id'), todosMoreDetails);

moreDetailsById is an object where the key is id, and the value is an array of todos. If the id is unique, this will be a singleton array:

{
      1: [{
        id: 1,
        checked: false,
        link: {
          type: 'url',
          content: 'http://something.'
        },
        notes: []
      }]
}

Now transform the todos array by merging each todo to it's details you retrieve from the grouped view:

var finalTodos = R.map(todo => R.merge(todo, moreDetailsById[todo.id][0]), todos);

An alternate more detailed way:

function mergeTodo(todo) {
   var details = moreDetailsById[todo.id][0]; // this is not null safe
   var finalTodo = R.merge(todo, details);
   return finalTodo;
}

var moreDetailsById = R.groupBy(R.prop('id'), todosMoreDetails);
var finalTodos = todos.map(mergeTodo);

I guess merge is only used for arrays. Have a search for object "extend". Maybe storing the todo details not in seperate objects is the better solution.

  • Using jQuery? https://api.jquery./jquery.extend/
  • Using underscore? http://underscorejs/#extend
  • Native approach? https://gomakethings./vanilla-javascript-version-of-jquery-extend/

Using underscore:

var result = [];
var entry = {};
_.each(todos, function(todo) {
    _.each(todosMoreDetails, function(detail) {
        if (todo.id == detail.id) {
            entry = _.extend(todo, detail);
            result.push(entry);
        }
    }
});
return result;

本文标签: javascriptRamdajs Combine two array of objects that share the same property IDStack Overflow