File size: 713 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | import algoliasearchHelper from 'algoliasearch-helper';
import type { SearchParameters } from 'algoliasearch-helper';
export function createSearchResults<THit>(state: SearchParameters) {
return new algoliasearchHelper.SearchResults<THit>(
state,
[
{
query: state.query ?? '',
page: state.page ?? 0,
hitsPerPage: state.hitsPerPage ?? 20,
hits: [],
nbHits: 0,
nbPages: 0,
params: '',
exhaustiveNbHits: true,
exhaustiveFacetsCount: true,
processingTimeMS: 0,
index: state.index,
},
],
{
/** used by connectors to prevent persisting these results */
__isArtificial: true,
}
);
}
|