Created
January 29, 2020 13:53
-
-
Save florestankorp/9e3fe76217a5ce8e0f760798050412a3 to your computer and use it in GitHub Desktop.
Mapping an array to object with default keys
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const BOOKS = [ | |
'1', | |
'The Stranger\nThe Outsider', | |
'Albert Camus', | |
'1942', | |
'French', | |
'2', | |
'In Search of Lost Time\nRemembrance of Things Past', | |
'Marcel Proust', | |
'1913β27', | |
'French' | |
]; | |
let currentItem = 0; | |
const books = []; | |
const A = BOOKS.forEach((v, i) => { | |
if (i % 5 == 0) { | |
books[currentItem] = {}; | |
books[currentItem].id = BOOKS[i]; | |
} else if (i % 5 == 1) { | |
books[currentItem].title = BOOKS[i]; | |
} else if (i % 5 == 2) { | |
books[currentItem].author = BOOKS[i]; | |
} else if (i % 5 == 3) { | |
books[currentItem].year = BOOKS[i]; | |
} else if (i % 5 == 4) { | |
books[currentItem].lang = BOOKS[i]; | |
currentItem++; | |
} | |
}); | |
console.log(books); | |
// OUTPUT | |
[ | |
{ | |
id: '1', | |
title: 'The Stranger\nThe Outsider', | |
author: 'Albert Camus', | |
year: '1942', | |
lang: 'French' | |
}, | |
{ | |
id: '2', | |
title: 'In Search of Lost Time\nRemembrance of Things Past', | |
author: 'Marcel Proust', | |
year: '1913β27', | |
lang: 'French' | |
} | |
]; |
Many interesting ways here.
But most of them are too complex in my opinion. Why not use ES6 destructuring?
In combination with a recursive call makes it simple and readable.
What do you think?
const booksList = [
'1',
'The Stranger\nThe Outsider',
'Albert Camus',
'1942',
'French',
'2',
'In Search of Lost Time\nRemembrance of Things Past',
'Marcel Proust',
'1913β27',
'French',
'3',
'The adventures of Huckleberry Finn',
'Mark Twain',
'1885',
'English'
];
function createBooksFromList(listOfBooks) {
const [id, title, author, year, language, ...rest] = listOfBooks;
const result = [];
result.push({
id,
title,
author,
year,
language
});
if (rest.length) {
return result.concat(createBooksFromList(rest));
}
return result;
}
console.log(createBooksFromList(booksList));
Good point too @epatrasc, your chunk
method is actually equivalent to ramda
's splitEvery
π
I love the idea of your ...rest
parameter and recursive call @fidel-karsto ! π β€οΈ
The same exact code as a one-liner :
const BOOKS = [
'1',
'The Stranger\nThe Outsider',
'Albert Camus',
'1942',
'French',
'2',
'In Search of Lost Time\nRemembrance of Things Past',
'Marcel Proust',
'1913β27',
'French',
'3',
'The adventures of Huckleberry Finn',
'Mark Twain',
'1885',
'English'
];
const convert = ([ id, title, author, year, language, ...rest ]) => rest.length
? [{ id, title, author, year, language }].concat(convert(rest))
: [{ id, title, author, year, language }]
console.log(convert(BOOKS))
As mentioned above, this is how I would do it using Array.reduce()
const books = [
'1',
'The Stranger\nThe Outsider',
'Albert Camus',
'1942',
'French',
'2',
'In Search of Lost Time\nRemembrance of Things Past',
'Marcel Proust',
'1913β27',
'French',
'3',
'The adventures of Huckleberry Finn',
'Mark Twain',
'1885',
'English'
]
const newList = books.reduce((acc, cur, index) => {
if (index % 5 === 0) {
const [id, title, author, year, language] = books.slice(index, index + 5);
acc = [...acc, {id, title, author, year, language}];
}
return acc;
}, []);
class Book {
constructor(id, title, author, year, lang) {
this.id = id;
this.title = title;
this.author = author;
this.year = year;
this.lang = lang;
}
}
const books = [];
for (let i=0; i<BOOKS.length; i+=5) {
book = new Book(...BOOKS.slice(i, i+5));
books.push(book);
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Relly cool the idea to spread directly the array to columns name.