googlescholar: fix linting violation: no-await-in-loop (#590)

#588
This commit is contained in:
Henry Wang
2018-08-30 14:44:28 +01:00
committed by DIYgod
parent 0cad0ce547
commit 48ec6bec9f

View File

@@ -22,29 +22,27 @@ module.exports = async (ctx) => {
}); });
const $ = cheerio.load(response.data); const $ = cheerio.load(response.data);
const list = $('#gs_res_ccl_mid .gs_r.gs_or.gs_scl .gs_ri'); const list = $('#gs_res_ccl_mid .gs_r.gs_or.gs_scl .gs_ri').get();
const out = []; const out = await Promise.all(
list.map(async (item) => {
for (let i = 0; i < list.length; i++) { const $ = cheerio.load(item);
const $ = cheerio.load(list[i]); const itemUrl = $('h3 a').attr('href');
const itemUrl = $('h3 a').attr('href'); const cache = await ctx.cache.get(itemUrl);
const cache = await ctx.cache.get(itemUrl); if (cache) {
if (cache) { return Promise.resolve(JSON.parse(cache));
out.push(JSON.parse(cache)); }
continue; const single = {
} title: $('h3 a').text(),
const single = { author: $('.gs_a').text(),
title: $('h3 a').text(), description: $('.gs_rs').text(),
author: $('.gs_a').text(), link: itemUrl,
description: $('.gs_rs').text(), guid: itemUrl,
link: itemUrl, };
guid: itemUrl,
};
out.push(single);
}
return Promise.resolve(single);
})
);
ctx.state.data = { ctx.state.data = {
title: `Google Scholar Monitor: ${query}`, title: `Google Scholar Monitor: ${query}`,
link: url, link: url,