Skip to content

Instantly share code, notes, and snippets.

@elliotec
Created July 11, 2017 20:49
Show Gist options
  • Save elliotec/ee62b1008250eb138d0807e3d9ed88b4 to your computer and use it in GitHub Desktop.
Save elliotec/ee62b1008250eb138d0807e3d9ed88b4 to your computer and use it in GitHub Desktop.
const itemsById = itemsWithFields.reduce(
(accum, item) => {
const itemId = item.sys.id;
accum[itemId] = item;
return accum;
}, []
);
console.log(itemsById);
return {
...state,
devices: itemsById,
isFetching: false,
contentful: action.contentful,
lastUpdated: action.receivedAt
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment