data = _.reduce(searchdata, function(memo, entry) {
_.each(entry.results, function(answer) {
const csventry = {
...entry.geoip,
..._.pick(entry, ['id', 'supporter', 'creatorName', 'savingTime', 'experimentId', 'timelineId', 'href', 'researchTag']),
...answer.video,
..._.pick(answer, ['order', 'textdesc']),
};
memo.push(csventry);
});
return memo;
}, []);