-
Notifications
You must be signed in to change notification settings - Fork 531
/
Copy pathconnectInfiniteHits.ts
501 lines (438 loc) · 13 KB
/
connectInfiniteHits.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
import {
escapeHits,
TAG_PLACEHOLDER,
checkRendering,
createDocumentationMessageGenerator,
isEqual,
addAbsolutePosition,
addQueryID,
noop,
createSendEventForHits,
createBindEventForHits,
walkIndex,
} from '../../lib/utils';
import type { SendEventForHits, BindEventForHits } from '../../lib/utils';
import type {
Connector,
TransformItems,
Hit,
WidgetRenderState,
BaseHit,
Renderer,
Unmounter,
UnknownWidgetParams,
IndexRenderState,
} from '../../types';
import type {
Banner,
AlgoliaSearchHelper as Helper,
PlainSearchParameters,
SearchParameters,
SearchResults,
} from 'algoliasearch-helper';
export type InfiniteHitsCachedHits<THit extends NonNullable<object>> = {
[page: number]: Array<Hit<THit>>;
};
type Read<THit extends NonNullable<object>> = ({
state,
}: {
state: PlainSearchParameters;
}) => InfiniteHitsCachedHits<THit> | null;
type Write<THit extends NonNullable<object>> = ({
state,
hits,
}: {
state: PlainSearchParameters;
hits: InfiniteHitsCachedHits<THit>;
}) => void;
export type InfiniteHitsCache<THit extends NonNullable<object> = BaseHit> = {
read: Read<THit>;
write: Write<THit>;
};
export type InfiniteHitsConnectorParams<
THit extends NonNullable<object> = BaseHit
> = {
/**
* Escapes HTML entities from hits string values.
*
* @default `true`
*/
escapeHTML?: boolean;
/**
* Enable the button to load previous results.
*
* @default `false`
*/
showPrevious?: boolean;
/**
* Receives the items, and is called before displaying them.
* Useful for mapping over the items to transform, and remove or reorder them.
*/
transformItems?: TransformItems<Hit<THit>>;
/**
* Reads and writes hits from/to cache.
* When user comes back to the search page after leaving for product page,
* this helps restore InfiniteHits and its scroll position.
*/
cache?: InfiniteHitsCache<THit>;
};
export type InfiniteHitsRenderState<
THit extends NonNullable<object> = BaseHit
> = {
/**
* Loads the previous results.
*/
showPrevious: () => void;
/**
* Loads the next page of hits.
*/
showMore: () => void;
/**
* Indicates whether the first page of hits has been reached.
*/
isFirstPage: boolean;
/**
* Indicates whether the last page of hits has been reached.
*/
isLastPage: boolean;
/**
* Send event to insights middleware
*/
sendEvent: SendEventForHits;
/**
* Returns a string of data-insights-event attribute for insights middleware
*/
bindEvent: BindEventForHits;
/**
* Hits for the current page
*/
currentPageHits: Array<Hit<THit>>;
/**
* Hits for current and cached pages
* @deprecated use `items` instead
*/
hits: Array<Hit<THit>>;
/**
* Hits for current and cached pages
*/
items: Array<Hit<THit>>;
/**
* The response from the Algolia API.
*/
results?: SearchResults<Hit<THit>> | null;
/**
* The banner to display above the hits.
*/
banner?: Banner;
};
const withUsage = createDocumentationMessageGenerator({
name: 'infinite-hits',
connector: true,
});
export type InfiniteHitsWidgetDescription<
THit extends NonNullable<object> = BaseHit
> = {
$$type: 'ais.infiniteHits';
renderState: InfiniteHitsRenderState<THit>;
indexRenderState: {
infiniteHits: WidgetRenderState<
InfiniteHitsRenderState<THit>,
InfiniteHitsConnectorParams<THit>
>;
};
indexUiState: {
page: number;
};
};
export type InfiniteHitsConnector<THit extends NonNullable<object> = BaseHit> =
Connector<
InfiniteHitsWidgetDescription<THit>,
InfiniteHitsConnectorParams<THit>
>;
function getStateWithoutPage(state: PlainSearchParameters) {
const { page, ...rest } = state || {};
return rest;
}
function normalizeState(state: PlainSearchParameters) {
const { clickAnalytics, userToken, ...rest } = state || {};
return rest;
}
function getInMemoryCache<
THit extends NonNullable<object>
>(): InfiniteHitsCache<THit> {
let cachedHits: InfiniteHitsCachedHits<THit> | null = null;
let cachedState: PlainSearchParameters | null = null;
return {
read({ state }) {
return isEqual(cachedState, getStateWithoutPage(state))
? cachedHits
: null;
},
write({ state, hits }) {
cachedState = getStateWithoutPage(state);
cachedHits = hits;
},
};
}
function extractHitsFromCachedHits<THit extends NonNullable<object>>(
cachedHits: InfiniteHitsCachedHits<THit>
) {
return Object.keys(cachedHits)
.map(Number)
.sort((a, b) => a - b)
.reduce((acc: Array<Hit<THit>>, page) => {
return acc.concat(cachedHits[page]);
}, []);
}
export default (function connectInfiniteHits<
TWidgetParams extends UnknownWidgetParams
>(
renderFn: Renderer<InfiniteHitsRenderState, TWidgetParams>,
unmountFn: Unmounter = noop
) {
checkRendering(renderFn, withUsage());
return <THit extends NonNullable<object> = BaseHit>(
widgetParams: TWidgetParams & InfiniteHitsConnectorParams<THit>
) => {
const {
// @MAJOR: this can default to false
escapeHTML = true,
transformItems = ((items) => items) as NonNullable<
InfiniteHitsConnectorParams<THit>['transformItems']
>,
cache = getInMemoryCache<THit>(),
} = widgetParams || {};
let showPrevious: () => void;
let showMore: () => void;
let sendEvent: SendEventForHits;
let bindEvent: BindEventForHits;
const getFirstReceivedPage = (
state: SearchParameters,
cachedHits: InfiniteHitsCachedHits<THit>
) => {
const { page = 0 } = state;
const pages = Object.keys(cachedHits).map(Number);
if (pages.length === 0) {
return page;
} else {
return Math.min(page, ...pages);
}
};
const getLastReceivedPage = (
state: SearchParameters,
cachedHits: InfiniteHitsCachedHits<THit>
) => {
const { page = 0 } = state;
const pages = Object.keys(cachedHits).map(Number);
if (pages.length === 0) {
return page;
} else {
return Math.max(page, ...pages);
}
};
const getShowPrevious =
(helper: Helper): (() => void) =>
() => {
// Using the helper's `overrideStateWithoutTriggeringChangeEvent` method
// avoid updating the browser URL when the user displays the previous page.
helper
.overrideStateWithoutTriggeringChangeEvent({
...helper.state,
page:
getFirstReceivedPage(
helper.state,
cache.read({ state: normalizeState(helper.state) }) || {}
) - 1,
})
.searchWithoutTriggeringOnStateChange();
};
const getShowMore =
(helper: Helper): (() => void) =>
() => {
helper
.setPage(
getLastReceivedPage(
helper.state,
cache.read({ state: normalizeState(helper.state) }) || {}
) + 1
)
.search();
};
return {
$$type: 'ais.infiniteHits',
init(initOptions) {
renderFn(
{
...this.getWidgetRenderState(initOptions),
instantSearchInstance: initOptions.instantSearchInstance,
},
true
);
},
render(renderOptions) {
const { instantSearchInstance } = renderOptions;
const widgetRenderState = this.getWidgetRenderState(renderOptions);
renderFn(
{
...widgetRenderState,
instantSearchInstance,
},
false
);
sendEvent('view:internal', widgetRenderState.currentPageHits);
},
getRenderState(
renderState,
renderOptions
// Type is explicitly redefined, to avoid having the TWidgetParams type in the definition
): IndexRenderState & InfiniteHitsWidgetDescription['indexRenderState'] {
return {
...renderState,
infiniteHits: this.getWidgetRenderState(renderOptions),
};
},
getWidgetRenderState({
results,
helper,
parent,
state: existingState,
instantSearchInstance,
}) {
let isFirstPage: boolean;
let currentPageHits: Array<Hit<THit>> = [];
/**
* We bail out of optimistic UI here, as the cache is based on search
* parameters, and we don't want to invalidate the cache when the search
* is loading.
*/
const state = parent.getPreviousState() || existingState;
const cachedHits = cache.read({ state: normalizeState(state) }) || {};
const banner = results?.renderingContent?.widgets?.banners?.[0];
if (!results) {
showPrevious = getShowPrevious(helper);
showMore = getShowMore(helper);
sendEvent = createSendEventForHits({
instantSearchInstance,
helper,
widgetType: this.$$type,
});
bindEvent = createBindEventForHits({
helper,
widgetType: this.$$type,
instantSearchInstance,
});
isFirstPage =
state.page === undefined ||
getFirstReceivedPage(state, cachedHits) === 0;
} else {
const { page = 0 } = state;
if (escapeHTML && results.hits.length > 0) {
results.hits = escapeHits(results.hits);
}
const hitsWithAbsolutePosition = addAbsolutePosition(
results.hits,
results.page,
results.hitsPerPage
);
const hitsWithAbsolutePositionAndQueryID = addQueryID(
hitsWithAbsolutePosition,
results.queryID
);
const transformedHits = transformItems(
hitsWithAbsolutePositionAndQueryID,
{ results }
);
/*
With dynamic widgets, facets are not included in the state before their relevant widgets are mounted. Until then, we need to bail out of writing this incomplete state representation in cache.
*/
let hasDynamicWidgets = false;
walkIndex(instantSearchInstance.mainIndex, (indexWidget) => {
if (
!hasDynamicWidgets &&
indexWidget
.getWidgets()
.some(({ $$type }) => $$type === 'ais.dynamicWidgets')
) {
hasDynamicWidgets = true;
}
});
const hasNoFacets =
!state.disjunctiveFacets?.length &&
!(state.facets || []).filter((f) => f !== '*').length &&
!state.hierarchicalFacets?.length;
if (
cachedHits[page] === undefined &&
!results.__isArtificial &&
instantSearchInstance.status === 'idle' &&
!(hasDynamicWidgets && hasNoFacets)
) {
cachedHits[page] = transformedHits;
cache.write({ state: normalizeState(state), hits: cachedHits });
}
currentPageHits = transformedHits;
isFirstPage = getFirstReceivedPage(state, cachedHits) === 0;
}
const items = extractHitsFromCachedHits(cachedHits);
const isLastPage = results
? results.nbPages <= getLastReceivedPage(state, cachedHits) + 1
: true;
return {
hits: items,
items,
currentPageHits,
sendEvent,
bindEvent,
banner,
results: results || undefined,
showPrevious,
showMore,
isFirstPage,
isLastPage,
widgetParams,
};
},
dispose({ state }) {
unmountFn();
const stateWithoutPage = state.setQueryParameter('page', undefined);
if (!escapeHTML) {
return stateWithoutPage;
}
return stateWithoutPage.setQueryParameters(
Object.keys(TAG_PLACEHOLDER).reduce(
(acc, key) => ({
...acc,
[key]: undefined,
}),
{}
)
);
},
getWidgetUiState(uiState, { searchParameters }) {
const page = searchParameters.page || 0;
if (!page) {
// return without adding `page` to uiState
// because we don't want `page=1` in the URL
return uiState;
}
return {
...uiState,
// The page in the UI state is incremented by one
// to expose the user value (not `0`).
page: page + 1,
};
},
getWidgetSearchParameters(searchParameters, { uiState }) {
let widgetSearchParameters = searchParameters;
if (escapeHTML) {
// @MAJOR: set this globally, not in the InfiniteHits widget to allow InfiniteHits to be conditionally used
widgetSearchParameters =
searchParameters.setQueryParameters(TAG_PLACEHOLDER);
}
// The page in the search parameters is decremented by one
// to get to the actual parameter value from the UI state.
const page = uiState.page ? uiState.page - 1 : 0;
return widgetSearchParameters.setQueryParameter('page', page);
},
};
};
} satisfies InfiniteHitsConnector);