-
Notifications
You must be signed in to change notification settings - Fork 529
/
index.ts
512 lines (437 loc) · 15.7 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
import algoliasearchHelper, {
AlgoliaSearchHelper as Helper,
DerivedHelper,
PlainSearchParameters,
SearchParameters,
SearchResults,
} from 'algoliasearch-helper';
import {
InstantSearch,
UiState,
IndexUiState,
Widget,
InitOptions,
RenderOptions,
WidgetStateOptions,
WidgetSearchParametersOptions,
ScopedResult,
Client,
} from '../../types';
import {
checkIndexUiState,
createDocumentationMessageGenerator,
resolveSearchParameters,
mergeSearchParameters,
} from '../../lib/utils';
const withUsage = createDocumentationMessageGenerator({
name: 'index-widget',
});
type IndexProps = {
indexName: string;
indexId?: string;
};
type IndexInitOptions = Pick<
InitOptions,
'instantSearchInstance' | 'parent' | 'uiState'
>;
type IndexRenderOptions = Pick<RenderOptions, 'instantSearchInstance'>;
type LocalWidgetSearchParametersOptions = WidgetSearchParametersOptions & {
initialSearchParameters: SearchParameters;
};
export type Index = Widget & {
getIndexName(): string;
getIndexId(): string;
getHelper(): Helper | null;
getResults(): SearchResults | null;
getParent(): Index | null;
getWidgets(): Widget[];
addWidgets(widgets: Widget[]): Index;
removeWidgets(widgets: Widget[]): Index;
init(options: IndexInitOptions): void;
render(options: IndexRenderOptions): void;
dispose(): void;
getWidgetState(uiState: UiState): UiState;
getWidgetSearchParameters(
searchParameters: SearchParameters,
searchParametersOptions: { uiState: IndexUiState }
): SearchParameters;
refreshUiState(): void;
};
export function isIndexWidget(widget: Widget): widget is Index {
return widget.$$type === 'ais.index';
}
function getLocalWidgetsState(
widgets: Widget[],
widgetStateOptions: WidgetStateOptions,
initialUiState: IndexUiState = {}
): IndexUiState {
return widgets
.filter(widget => !isIndexWidget(widget))
.reduce<IndexUiState>((uiState, widget) => {
if (!widget.getWidgetState) {
return uiState;
}
return widget.getWidgetState(uiState, widgetStateOptions);
}, initialUiState);
}
function getLocalWidgetsSearchParameters(
widgets: Widget[],
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: Widget[]): void {
const indexWidgets = widgets.filter(isIndexWidget);
if (indexWidgets.length === 0) {
return;
}
indexWidgets.forEach(widget => {
const widgetHelper = widget.getHelper()!;
// @ts-ignore remove once resetPage is a helper method
widgetHelper._change({
// @ts-ignore @TODO: remove "ts-ignore" once `resetPage()` is typed in the helper
state: widgetHelper.state.resetPage(),
isPageReset: true,
});
resetPageFromWidgets(widget.getWidgets());
});
}
function resolveScopedResultsFromWidgets(widgets: Widget[]): 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())
);
}, []);
}
function resolveScopedResultsFromIndex(widget: Index): ScopedResult[] {
const widgetParent = widget.getParent();
// If the widget is the root, we consider itself as the only sibling.
const widgetSiblings = widgetParent ? widgetParent.getWidgets() : [widget];
return resolveScopedResultsFromWidgets(widgetSiblings);
}
const index = (props: IndexProps): Index => {
if (props === undefined || props.indexName === undefined) {
throw new Error(withUsage('The `indexName` option is required.'));
}
const { indexName, indexId = indexName } = props;
let localWidgets: Widget[] = [];
let localUiState: IndexUiState = {};
let localInstantSearchInstance: InstantSearch | null = null;
let localParent: Index | null = null;
let helper: Helper | null = null;
let derivedHelper: DerivedHelper | null = null;
const createURL = (nextState: SearchParameters) =>
localInstantSearchInstance!._createURL!({
[indexId]: getLocalWidgetsState(localWidgets, {
searchParameters: nextState,
helper: helper!,
}),
});
return {
$$type: 'ais.index',
getIndexName() {
return indexName;
},
getIndexId() {
return indexId;
},
getHelper() {
return helper;
},
getResults() {
return derivedHelper && derivedHelper.lastResults;
},
getParent() {
return localParent;
},
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)) {
helper!.setState(
getLocalWidgetsSearchParameters(localWidgets, {
uiState: localUiState,
initialSearchParameters: helper!.state,
})
);
widgets.forEach(widget => {
if (localInstantSearchInstance && widget.init) {
widget.init({
helper: helper!,
parent: this,
// Only index widget uses this key. This means that the initial value
// is sufficient, since that index didn't yet exist. If we see wrong
// behavior with this, use mainIndex.getWidgetState()
uiState: localInstantSearchInstance._initialUiState,
instantSearchInstance: localInstantSearchInstance,
state: helper!.state,
templatesConfig: localInstantSearchInstance.templatesConfig,
createURL,
});
}
});
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 });
return next || state;
}, helper!.state);
localUiState = getLocalWidgetsState(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) {
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 Client, 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.getWidgetState({}),
setUiState: instantSearchInstance.setUiState.bind(
instantSearchInstance
),
});
// We don't trigger a search when controlled because it becomes the
// responsibility of `setUiState`.
return mainHelper;
}
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))
);
// 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;
});
localWidgets.forEach(widget => {
if (widget.init) {
widget.init({
uiState,
helper: helper!,
parent: this,
instantSearchInstance,
state: helper!.state,
templatesConfig: instantSearchInstance.templatesConfig,
createURL,
});
}
});
// 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', ({ state, isPageReset }) => {
if (isPageReset) {
localUiState.page = undefined;
}
localUiState = getLocalWidgetsState(
localWidgets,
{
searchParameters: state,
helper: helper!,
},
localUiState
);
// We don't trigger an internal change when controlled because it
// becomes the responsibility of `setUiState`.
if (!instantSearchInstance.onStateChange) {
instantSearchInstance.onInternalStateChange();
}
});
},
render({ instantSearchInstance }: IndexRenderOptions) {
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 && derivedHelper!.lastResults) {
widget.render({
helper: helper!,
instantSearchInstance,
results: derivedHelper!.lastResults,
scopedResults: resolveScopedResultsFromIndex(this),
state: derivedHelper!.lastResults._state,
templatesConfig: instantSearchInstance.templatesConfig,
createURL,
searchMetadata: {
isSearchStalled: instantSearchInstance._isSearchStalled,
},
});
}
});
},
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 });
}
});
localInstantSearchInstance = null;
localParent = null;
helper!.removeAllListeners();
helper = null;
derivedHelper!.detach();
derivedHelper = null;
},
getWidgetState(uiState: UiState) {
return localWidgets
.filter(isIndexWidget)
.reduce<UiState>(
(previousUiState, innerIndex) =>
innerIndex.getWidgetState(previousUiState),
{
...uiState,
[this.getIndexId()]: localUiState,
}
);
},
getWidgetSearchParameters(searchParameters, { uiState }) {
return getLocalWidgetsSearchParameters(localWidgets, {
uiState,
initialSearchParameters: searchParameters,
});
},
refreshUiState() {
localUiState = getLocalWidgetsState(localWidgets, {
searchParameters: this.getHelper()!.state,
helper: this.getHelper()!,
});
},
};
};
export default index;