Skip to content

Instantly share code, notes, and snippets.

@haru01
Last active April 4, 2019 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haru01/3b853c85aae65eab6bc8693bb8ef4625 to your computer and use it in GitHub Desktop.
Save haru01/3b853c85aae65eab6bc8693bb8ef4625 to your computer and use it in GitHub Desktop.
function createReportData(readList, recommendList) {
const reportData = {};
reportData.userName = readList.name;
reportData.readBooks = readList.books
.map(book => {
return {...book, point: point(book)};
});
return reportData;
function point(readBook) {
if (readBook.times <= 0) {
return 0;
}
if (notRecommendBook()) {
return 1;
}
if (readBook.times >= 3) {
return 8;
} else if (readBook.times === 2) {
return 5;
} else if (readBook.times === 1) {
return 3;
} else {
return 0;
}
function notRecommendBook() {
return !recommendList.map(recommend => recommend.asin).includes(readBook.asin);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment