mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
16 lines
No EOL
611 B
JavaScript
16 lines
No EOL
611 B
JavaScript
export function createViewedEvents(_ref) {
|
|
var items = _ref.items;
|
|
var itemsByIndexName = items.reduce(function (acc, current) {
|
|
var _acc$current$__autoco;
|
|
acc[current.__autocomplete_indexName] = ((_acc$current$__autoco = acc[current.__autocomplete_indexName]) !== null && _acc$current$__autoco !== void 0 ? _acc$current$__autoco : []).concat(current);
|
|
return acc;
|
|
}, {});
|
|
return Object.keys(itemsByIndexName).map(function (indexName) {
|
|
var items = itemsByIndexName[indexName];
|
|
return {
|
|
index: indexName,
|
|
items: items,
|
|
algoliaSource: ['autocomplete']
|
|
};
|
|
});
|
|
} |