-
Notifications
You must be signed in to change notification settings - Fork 530
/
Copy pathindex.ts
696 lines (594 loc) · 20.5 KB
/
index.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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
import type {
AlgoliaSearchHelper as Helper,
DerivedHelper,
PlainSearchParameters,
SearchParameters,
SearchResults,
AlgoliaSearchHelper,
} from 'algoliasearch-helper';
import algoliasearchHelper from 'algoliasearch-helper';
import type {
InstantSearch,
UiState,
IndexUiState,
Widget,
ScopedResult,
SearchClient,
IndexRenderState,
} from '../../types';
import {
checkIndexUiState,
createDocumentationMessageGenerator,
resolveSearchParameters,
mergeSearchParameters,
warning,
isIndexWidget,
createInitArgs,
createRenderArgs,
} from '../../lib/utils';
const withUsage = createDocumentationMessageGenerator({
name: 'index-widget',
});
export type IndexWidgetParams = {
indexName: string;
indexId?: string;
};
export type IndexInitOptions = {
instantSearchInstance: InstantSearch;
parent: IndexWidget | null;
uiState: UiState;
};
export type IndexRenderOptions = {
instantSearchInstance: InstantSearch;
};
type WidgetSearchParametersOptions = Parameters<
NonNullable<Widget['getWidgetSearchParameters']>
>[1];
type LocalWidgetSearchParametersOptions = WidgetSearchParametersOptions & {
initialSearchParameters: SearchParameters;
};
export type IndexWidgetDescription = {
$$type: 'ais.index';
$$widgetType: 'ais.index';
};
export type IndexWidget = Omit<
Widget<IndexWidgetDescription & { widgetParams: IndexWidgetParams }>,
'getWidgetUiState' | 'getWidgetState'
> & {
getIndexName(): string;
getIndexId(): string;
getHelper(): Helper | null;
getResults(): SearchResults | null;
getScopedResults(): ScopedResult[];
getParent(): IndexWidget | null;
getWidgets(): Array<Widget | IndexWidget>;
createURL(state: SearchParameters): string;
addWidgets(widgets: Array<Widget | IndexWidget>): IndexWidget;
removeWidgets(widgets: Array<Widget | IndexWidget>): IndexWidget;
init(options: IndexInitOptions): void;
render(options: IndexRenderOptions): void;
dispose(): void;
/**
* @deprecated
*/
getWidgetState(uiState: UiState): UiState;
getWidgetUiState<TUiState = UiState>(uiState: TUiState): TUiState;
getWidgetSearchParameters(
searchParameters: SearchParameters,
searchParametersOptions: { uiState: IndexUiState }
): SearchParameters;
refreshUiState(): void;
};
/**
* This is the same content as helper._change / setState, but allowing for extra
* UiState to be synchronized.
* see: https://github.com/algolia/algoliasearch-helper-js/blob/6b835ffd07742f2d6b314022cce6848f5cfecd4a/src/algoliasearch.helper.js#L1311-L1324
*/
function privateHelperSetState(
helper: AlgoliaSearchHelper,
{
state,
isPageReset,
_uiState,
}: {
state: SearchParameters;
isPageReset?: boolean;
_uiState?: IndexUiState;
}
) {
if (state !== helper.state) {
helper.state = state;
helper.emit('change', {
state: helper.state,
results: helper.lastResults,
isPageReset,
_uiState,
});
}
}
type WidgetUiStateOptions = Parameters<
NonNullable<Widget['getWidgetUiState']>
>[1];
function getLocalWidgetsUiState(
widgets: Array<Widget | IndexWidget>,
widgetStateOptions: WidgetUiStateOptions,
initialUiState: IndexUiState = {}
) {
return widgets.reduce((uiState, widget) => {
if (isIndexWidget(widget)) {
return uiState;
}
if (!widget.getWidgetUiState && !widget.getWidgetState) {
return uiState;
}
if (widget.getWidgetUiState) {
return widget.getWidgetUiState(uiState, widgetStateOptions);
}
return widget.getWidgetState!(uiState, widgetStateOptions);
}, initialUiState);
}
function getLocalWidgetsSearchParameters(
widgets: Array<Widget | IndexWidget>,
widgetSearchParametersOptions: LocalWidgetSearchParametersOptions
): SearchParameters {
const { initialSearchParameters, ...rest } = widgetSearchParametersOptions;
return widgets
.filter((widget) => !isIndexWidget(widget))
.reduce<SearchParameters>((state, widget) => {
if (!widget.getWidgetSearchParameters) {
return state;
}
return widget.getWidgetSearchParameters(state, rest);
}, initialSearchParameters);
}
function resetPageFromWidgets(widgets: Array<Widget | IndexWidget>): void {
const indexWidgets = widgets.filter(isIndexWidget);
if (indexWidgets.length === 0) {
return;
}
indexWidgets.forEach((widget) => {
const widgetHelper = widget.getHelper()!;
privateHelperSetState(widgetHelper, {
state: widgetHelper.state.resetPage(),
isPageReset: true,
});
resetPageFromWidgets(widget.getWidgets());
});
}
function resolveScopedResultsFromWidgets(
widgets: Array<Widget | IndexWidget>
): ScopedResult[] {
const indexWidgets = widgets.filter(isIndexWidget);
return indexWidgets.reduce<ScopedResult[]>((scopedResults, current) => {
return scopedResults.concat(
{
indexId: current.getIndexId(),
results: current.getResults()!,
helper: current.getHelper()!,
},
...resolveScopedResultsFromWidgets(current.getWidgets())
);
}, []);
}
const index = (widgetParams: IndexWidgetParams): IndexWidget => {
if (widgetParams === undefined || widgetParams.indexName === undefined) {
throw new Error(withUsage('The `indexName` option is required.'));
}
const { indexName, indexId = indexName } = widgetParams;
let localWidgets: Array<Widget | IndexWidget> = [];
let localUiState: IndexUiState = {};
let localInstantSearchInstance: InstantSearch | null = null;
let localParent: IndexWidget | null = null;
let helper: Helper | null = null;
let derivedHelper: DerivedHelper | null = null;
return {
$$type: 'ais.index',
$$widgetType: 'ais.index',
getIndexName() {
return indexName;
},
getIndexId() {
return indexId;
},
getHelper() {
return helper;
},
getResults() {
return derivedHelper && derivedHelper.lastResults;
},
getScopedResults() {
const widgetParent = this.getParent();
// If the widget is the root, we consider itself as the only sibling.
const widgetSiblings = widgetParent ? widgetParent.getWidgets() : [this];
return resolveScopedResultsFromWidgets(widgetSiblings);
},
getParent() {
return localParent;
},
createURL(nextState: SearchParameters) {
return localInstantSearchInstance!._createURL({
[indexId]: getLocalWidgetsUiState(localWidgets, {
searchParameters: nextState,
helper: helper!,
}),
});
},
getWidgets() {
return localWidgets;
},
addWidgets(widgets) {
if (!Array.isArray(widgets)) {
throw new Error(
withUsage('The `addWidgets` method expects an array of widgets.')
);
}
if (
widgets.some(
(widget) =>
typeof widget.init !== 'function' &&
typeof widget.render !== 'function'
)
) {
throw new Error(
withUsage(
'The widget definition expects a `render` and/or an `init` method.'
)
);
}
localWidgets = localWidgets.concat(widgets);
if (localInstantSearchInstance && Boolean(widgets.length)) {
privateHelperSetState(helper!, {
state: getLocalWidgetsSearchParameters(localWidgets, {
uiState: localUiState,
initialSearchParameters: helper!.state,
}),
_uiState: localUiState,
});
// We compute the render state before calling `init` in a separate loop
// to construct the whole render state object that is then passed to
// `init`.
widgets.forEach((widget) => {
if (widget.getRenderState) {
const renderState = widget.getRenderState(
localInstantSearchInstance!.renderState[this.getIndexId()] || {},
createInitArgs(
localInstantSearchInstance!,
this,
localInstantSearchInstance!._initialUiState
)
);
storeRenderState({
renderState,
instantSearchInstance: localInstantSearchInstance!,
parent: this,
});
}
});
widgets.forEach((widget) => {
if (widget.init) {
widget.init(
createInitArgs(
localInstantSearchInstance!,
this,
localInstantSearchInstance!._initialUiState
)
);
}
});
localInstantSearchInstance.scheduleSearch();
}
return this;
},
removeWidgets(widgets) {
if (!Array.isArray(widgets)) {
throw new Error(
withUsage('The `removeWidgets` method expects an array of widgets.')
);
}
if (widgets.some((widget) => typeof widget.dispose !== 'function')) {
throw new Error(
withUsage('The widget definition expects a `dispose` method.')
);
}
localWidgets = localWidgets.filter(
(widget) => widgets.indexOf(widget) === -1
);
if (localInstantSearchInstance && Boolean(widgets.length)) {
const nextState = widgets.reduce((state, widget) => {
// the `dispose` method exists at this point we already assert it
const next = widget.dispose!({
helper: helper!,
state,
parent: this,
});
return next || state;
}, helper!.state);
localUiState = getLocalWidgetsUiState(localWidgets, {
searchParameters: nextState,
helper: helper!,
});
helper!.setState(
getLocalWidgetsSearchParameters(localWidgets, {
uiState: localUiState,
initialSearchParameters: nextState,
})
);
if (localWidgets.length) {
localInstantSearchInstance.scheduleSearch();
}
}
return this;
},
init({ instantSearchInstance, parent, uiState }: IndexInitOptions) {
if (helper !== null) {
// helper is already initialized, therefore we do not need to set up
// any listeners
return;
}
localInstantSearchInstance = instantSearchInstance;
localParent = parent;
localUiState = uiState[indexId] || {};
// The `mainHelper` is already defined at this point. The instance is created
// inside InstantSearch at the `start` method, which occurs before the `init`
// step.
const mainHelper = instantSearchInstance.mainHelper!;
const parameters = getLocalWidgetsSearchParameters(localWidgets, {
uiState: localUiState,
initialSearchParameters: new algoliasearchHelper.SearchParameters({
index: indexName,
}),
});
// This Helper is only used for state management we do not care about the
// `searchClient`. Only the "main" Helper created at the `InstantSearch`
// level is aware of the client.
helper = algoliasearchHelper(
{} as SearchClient,
parameters.index,
parameters
);
// We forward the call to `search` to the "main" instance of the Helper
// which is responsible for managing the queries (it's the only one that is
// aware of the `searchClient`).
helper.search = () => {
if (instantSearchInstance.onStateChange) {
instantSearchInstance.onStateChange({
uiState: instantSearchInstance.mainIndex.getWidgetUiState({}),
setUiState: (nextState) =>
instantSearchInstance.setUiState(nextState, false),
});
// We don't trigger a search when controlled because it becomes the
// responsibility of `setUiState`.
return mainHelper;
}
return mainHelper.search();
};
helper.searchWithoutTriggeringOnStateChange = () => {
return mainHelper.search();
};
// We use the same pattern for the `searchForFacetValues`.
helper.searchForFacetValues = (
facetName,
facetValue,
maxFacetHits,
userState: PlainSearchParameters
) => {
const state = helper!.state.setQueryParameters(userState);
return mainHelper.searchForFacetValues(
facetName,
facetValue,
maxFacetHits,
state
);
};
derivedHelper = mainHelper.derive(() =>
mergeSearchParameters(...resolveSearchParameters(this))
);
const indexInitialResults =
instantSearchInstance._initialResults?.[this.getIndexId()];
if (indexInitialResults) {
// We restore the shape of the results provided to the instance to respect
// the helper's structure.
const results = new algoliasearchHelper.SearchResults(
new algoliasearchHelper.SearchParameters(indexInitialResults.state),
indexInitialResults.results
);
derivedHelper.lastResults = results;
helper.lastResults = results;
}
// Subscribe to the Helper state changes for the page before widgets
// are initialized. This behavior mimics the original one of the Helper.
// It makes sense to replicate it at the `init` step. We have another
// listener on `change` below, once `init` is done.
helper.on('change', ({ isPageReset }) => {
if (isPageReset) {
resetPageFromWidgets(localWidgets);
}
});
derivedHelper.on('search', () => {
// The index does not manage the "staleness" of the search. This is the
// responsibility of the main instance. It does not make sense to manage
// it at the index level because it's either: all of them or none of them
// that are stalled. The queries are performed into a single network request.
instantSearchInstance.scheduleStalledRender();
if (__DEV__) {
checkIndexUiState({ index: this, indexUiState: localUiState });
}
});
derivedHelper.on('result', ({ results }) => {
// The index does not render the results it schedules a new render
// to let all the other indices emit their own results. It allows us to
// run the render process in one pass.
instantSearchInstance.scheduleRender();
// the derived helper is the one which actually searches, but the helper
// which is exposed e.g. via instance.helper, doesn't search, and thus
// does not have access to lastResults, which it used to in pre-federated
// search behavior.
helper!.lastResults = results;
});
// We compute the render state before calling `init` in a separate loop
// to construct the whole render state object that is then passed to
// `init`.
localWidgets.forEach((widget) => {
if (widget.getRenderState) {
const renderState = widget.getRenderState(
instantSearchInstance.renderState[this.getIndexId()] || {},
createInitArgs(instantSearchInstance, this, uiState)
);
storeRenderState({
renderState,
instantSearchInstance,
parent: this,
});
}
});
localWidgets.forEach((widget) => {
warning(
// if it has NO getWidgetState or if it has getWidgetUiState, we don't warn
// aka we warn if there's _only_ getWidgetState
!widget.getWidgetState || Boolean(widget.getWidgetUiState),
'The `getWidgetState` method is renamed `getWidgetUiState` and will no longer exist under that name in InstantSearch.js 5.x. Please use `getWidgetUiState` instead.'
);
if (widget.init) {
widget.init(createInitArgs(instantSearchInstance, this, uiState));
}
});
// Subscribe to the Helper state changes for the `uiState` once widgets
// are initialized. Until the first render, state changes are part of the
// configuration step. This is mainly for backward compatibility with custom
// widgets. When the subscription happens before the `init` step, the (static)
// configuration of the widget is pushed in the URL. That's what we want to avoid.
// https://github.com/algolia/instantsearch.js/pull/994/commits/4a672ae3fd78809e213de0368549ef12e9dc9454
helper.on('change', (event) => {
const { state } = event;
const _uiState = (event as any)._uiState;
localUiState = getLocalWidgetsUiState(
localWidgets,
{
searchParameters: state,
helper: helper!,
},
_uiState || {}
);
// We don't trigger an internal change when controlled because it
// becomes the responsibility of `setUiState`.
if (!instantSearchInstance.onStateChange) {
instantSearchInstance.onInternalStateChange();
}
});
if (indexInitialResults) {
// If there are initial results, we're not notified of the next results
// because we don't trigger an initial search. We therefore need to directly
// schedule a render that will render the results injected on the helper.
instantSearchInstance.scheduleRender();
}
},
render({ instantSearchInstance }: IndexRenderOptions) {
if (!this.getResults()) {
return;
}
localWidgets.forEach((widget) => {
if (widget.getRenderState) {
const renderState = widget.getRenderState(
instantSearchInstance.renderState[this.getIndexId()] || {},
createRenderArgs(instantSearchInstance, this)
);
storeRenderState({
renderState,
instantSearchInstance,
parent: this,
});
}
});
localWidgets.forEach((widget) => {
// At this point, all the variables used below are set. Both `helper`
// and `derivedHelper` have been created at the `init` step. The attribute
// `lastResults` might be `null` though. It's possible that a stalled render
// happens before the result e.g with a dynamically added index the request might
// be delayed. The render is triggered for the complete tree but some parts do
// not have results yet.
if (widget.render) {
widget.render(createRenderArgs(instantSearchInstance, this));
}
});
},
dispose() {
localWidgets.forEach((widget) => {
if (widget.dispose) {
// The dispose function is always called once the instance is started
// (it's an effect of `removeWidgets`). The index is initialized and
// the Helper is available. We don't care about the return value of
// `dispose` because the index is removed. We can't call `removeWidgets`
// because we want to keep the widgets on the instance, to allow idempotent
// operations on `add` & `remove`.
widget.dispose({
helper: helper!,
state: helper!.state,
parent: this,
});
}
});
localInstantSearchInstance = null;
localParent = null;
helper!.removeAllListeners();
helper = null;
derivedHelper!.detach();
derivedHelper = null;
},
getWidgetUiState<TUiState = UiState>(uiState: TUiState) {
return localWidgets
.filter(isIndexWidget)
.reduce<TUiState>(
(previousUiState, innerIndex) =>
innerIndex.getWidgetUiState(previousUiState),
{
...uiState,
[this.getIndexId()]: localUiState,
}
);
},
getWidgetState(uiState: UiState) {
warning(
false,
'The `getWidgetState` method is renamed `getWidgetUiState` and will no longer exist under that name in InstantSearch.js 5.x. Please use `getWidgetUiState` instead.'
);
return this.getWidgetUiState(uiState);
},
getWidgetSearchParameters(searchParameters, { uiState }) {
return getLocalWidgetsSearchParameters(localWidgets, {
uiState,
initialSearchParameters: searchParameters,
});
},
refreshUiState() {
localUiState = getLocalWidgetsUiState(
localWidgets,
{
searchParameters: this.getHelper()!.state,
helper: this.getHelper()!,
},
localUiState
);
},
};
};
export default index;
function storeRenderState({
renderState,
instantSearchInstance,
parent,
}: {
renderState: IndexRenderState;
instantSearchInstance: InstantSearch;
parent?: IndexWidget;
}) {
const parentIndexName = parent
? parent.getIndexId()
: instantSearchInstance.mainIndex.getIndexId();
instantSearchInstance.renderState = {
...instantSearchInstance.renderState,
[parentIndexName]: {
...instantSearchInstance.renderState[parentIndexName],
...renderState,
},
};
}