-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathsearch_controller.ts
489 lines (419 loc) · 14.8 KB
/
search_controller.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
import { debounce, DebouncedFunc } from './utils';
import { StateStore } from './store';
import type { Channel } from './channel';
import type { StreamChat } from './client';
import type {
ChannelFilters,
ChannelOptions,
ChannelSort,
DefaultGenerics,
ExtendableGenerics,
MessageFilters,
MessageResponse,
SearchMessageSort,
SearchOptions,
UserFilters,
UserOptions,
UserResponse,
UserSort,
} from './types';
export type SearchSourceType = 'channels' | 'users' | 'messages' | (string & {});
export type QueryReturnValue<T> = { items: T[]; next?: string };
export type DebounceOptions = {
debounceMs: number;
};
type DebouncedExecQueryFunction = DebouncedFunc<(searchString?: string) => Promise<void>>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export interface SearchSource<T = any> {
activate(): void;
deactivate(): void;
readonly hasNext: boolean;
readonly hasResults: boolean;
readonly initialState: SearchSourceState<T>;
readonly isActive: boolean;
readonly isLoading: boolean;
readonly items: T[] | undefined;
readonly lastQueryError: Error | undefined;
readonly next: string | undefined;
readonly offset: number | undefined;
resetState(): void;
search(text?: string): void;
searchDebounced: DebouncedExecQueryFunction;
readonly searchQuery: string;
setDebounceOptions(options: DebounceOptions): void;
readonly state: StateStore<SearchSourceState<T>>;
readonly type: SearchSourceType;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type SearchSourceState<T = any> = {
hasNext: boolean;
isActive: boolean;
isLoading: boolean;
items: T[] | undefined;
searchQuery: string;
lastQueryError?: Error;
next?: string;
offset?: number;
};
export type SearchSourceOptions = {
/** The number of milliseconds to debounce the search query. The default interval is 300ms. */
debounceMs?: number;
pageSize?: number;
};
const DEFAULT_SEARCH_SOURCE_OPTIONS: Required<SearchSourceOptions> = {
debounceMs: 300,
pageSize: 10,
} as const;
export abstract class BaseSearchSource<T> implements SearchSource<T> {
state: StateStore<SearchSourceState<T>>;
protected pageSize: number;
abstract readonly type: SearchSourceType;
searchDebounced!: DebouncedExecQueryFunction;
protected constructor(options?: SearchSourceOptions) {
const { debounceMs, pageSize } = { ...DEFAULT_SEARCH_SOURCE_OPTIONS, ...options };
this.pageSize = pageSize;
this.state = new StateStore<SearchSourceState<T>>(this.initialState);
this.setDebounceOptions({ debounceMs });
}
get lastQueryError() {
return this.state.getLatestValue().lastQueryError;
}
get hasNext() {
return this.state.getLatestValue().hasNext;
}
get hasResults() {
return Array.isArray(this.state.getLatestValue().items);
}
get isActive() {
return this.state.getLatestValue().isActive;
}
get isLoading() {
return this.state.getLatestValue().isLoading;
}
get initialState() {
return {
hasNext: true,
isActive: false,
isLoading: false,
items: undefined,
lastQueryError: undefined,
next: undefined,
offset: 0,
searchQuery: '',
};
}
get items() {
return this.state.getLatestValue().items;
}
get next() {
return this.state.getLatestValue().next;
}
get offset() {
return this.state.getLatestValue().offset;
}
get searchQuery() {
return this.state.getLatestValue().searchQuery;
}
protected abstract query(searchQuery: string): Promise<QueryReturnValue<T>>;
protected abstract filterQueryResults(items: T[]): T[] | Promise<T[]>;
setDebounceOptions = ({ debounceMs }: DebounceOptions) => {
this.searchDebounced = debounce(this.executeQuery.bind(this), debounceMs);
};
activate = () => {
if (this.isActive) return;
this.state.partialNext({ isActive: true });
};
deactivate = () => {
if (!this.isActive) return;
this.state.partialNext({ isActive: false });
};
async executeQuery(newSearchString?: string) {
const hasNewSearchQuery = typeof newSearchString !== 'undefined';
const searchString = newSearchString ?? this.searchQuery;
if (!this.isActive || this.isLoading || (!this.hasNext && !hasNewSearchQuery) || !searchString) return;
if (hasNewSearchQuery) {
this.state.next({
...this.initialState,
isActive: this.isActive,
isLoading: true,
searchQuery: newSearchString ?? '',
});
} else {
this.state.partialNext({ isLoading: true });
}
const stateUpdate: Partial<SearchSourceState<T>> = {};
try {
const results = await this.query(searchString);
if (!results) return;
const { items, next } = results;
if (next) {
stateUpdate.next = next;
stateUpdate.hasNext = !!next;
} else {
stateUpdate.offset = (this.offset ?? 0) + items.length;
stateUpdate.hasNext = items.length === this.pageSize;
}
stateUpdate.items = await this.filterQueryResults(items);
} catch (e) {
stateUpdate.lastQueryError = e as Error;
} finally {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
this.state.next(({ lastQueryError, ...current }: SearchSourceState<T>) => ({
...current,
...stateUpdate,
isLoading: false,
items: [...(current.items ?? []), ...(stateUpdate.items || [])],
}));
}
}
search = (searchQuery?: string) => {
this.searchDebounced(searchQuery);
};
resetState() {
this.state.next(this.initialState);
}
}
export class UserSearchSource<StreamChatGenerics extends ExtendableGenerics = DefaultGenerics> extends BaseSearchSource<
UserResponse<StreamChatGenerics>
> {
readonly type = 'users';
private client: StreamChat<StreamChatGenerics>;
filters: UserFilters<StreamChatGenerics> | undefined;
sort: UserSort<StreamChatGenerics> | undefined;
searchOptions: Omit<UserOptions, 'limit' | 'offset'> | undefined;
constructor(client: StreamChat<StreamChatGenerics>, options?: SearchSourceOptions) {
super(options);
this.client = client;
}
protected async query(searchQuery: string) {
const filters = {
$or: [{ id: { $autocomplete: searchQuery } }, { name: { $autocomplete: searchQuery } }],
...this.filters,
} as UserFilters<StreamChatGenerics>;
const sort = { id: 1, ...this.sort } as UserSort<StreamChatGenerics>;
const options = { ...this.searchOptions, limit: this.pageSize, offset: this.offset };
const { users } = await this.client.queryUsers(filters, sort, options);
return { items: users };
}
protected filterQueryResults(items: UserResponse<StreamChatGenerics>[]) {
return items.filter((u) => u.id !== this.client.user?.id);
}
}
export class ChannelSearchSource<
StreamChatGenerics extends ExtendableGenerics = DefaultGenerics
> extends BaseSearchSource<Channel<StreamChatGenerics>> {
readonly type = 'channels';
private client: StreamChat<StreamChatGenerics>;
filters: ChannelFilters<StreamChatGenerics> | undefined;
sort: ChannelSort<StreamChatGenerics> | undefined;
searchOptions: Omit<ChannelOptions, 'limit' | 'offset'> | undefined;
constructor(client: StreamChat<StreamChatGenerics>, options?: SearchSourceOptions) {
super(options);
this.client = client;
}
protected async query(searchQuery: string) {
const filters = {
members: { $in: [this.client.userID] },
name: { $autocomplete: searchQuery },
...this.filters,
} as ChannelFilters<StreamChatGenerics>;
const sort = this.sort ?? {};
const options = { ...this.searchOptions, limit: this.pageSize, offset: this.offset };
const items = await this.client.queryChannels(filters, sort, options);
return { items };
}
protected filterQueryResults(items: Channel<StreamChatGenerics>[]) {
return items;
}
}
export class MessageSearchSource<
StreamChatGenerics extends ExtendableGenerics = DefaultGenerics
> extends BaseSearchSource<MessageResponse<StreamChatGenerics>> {
readonly type = 'messages';
private client: StreamChat<StreamChatGenerics>;
messageSearchChannelFilters: ChannelFilters<StreamChatGenerics> | undefined;
messageSearchFilters: MessageFilters<StreamChatGenerics> | undefined;
messageSearchSort: SearchMessageSort<StreamChatGenerics> | undefined;
channelQueryFilters: ChannelFilters<StreamChatGenerics> | undefined;
channelQuerySort: ChannelSort<StreamChatGenerics> | undefined;
channelQueryOptions: Omit<ChannelOptions, 'limit' | 'offset'> | undefined;
constructor(client: StreamChat<StreamChatGenerics>, options?: SearchSourceOptions) {
super(options);
this.client = client;
}
protected async query(searchQuery: string) {
if (!this.client.userID) return { items: [] };
const channelFilters: ChannelFilters<StreamChatGenerics> = {
members: { $in: [this.client.userID] },
...this.messageSearchChannelFilters,
} as ChannelFilters<StreamChatGenerics>;
const messageFilters: MessageFilters<StreamChatGenerics> = {
text: searchQuery,
type: 'regular', // FIXME: type: 'reply' resp. do not filter by type and allow to jump to a message in a thread - missing support
...this.messageSearchFilters,
} as MessageFilters<StreamChatGenerics>;
const sort: SearchMessageSort<StreamChatGenerics> = {
created_at: -1,
...this.messageSearchSort,
};
const options = {
limit: this.pageSize,
next: this.next,
sort,
} as SearchOptions<StreamChatGenerics>;
const { next, results } = await this.client.search(channelFilters, messageFilters, options);
const items = results.map(({ message }) => message);
const cids = Array.from(
items.reduce((acc, message) => {
if (message.cid && !this.client.activeChannels[message.cid]) acc.add(message.cid);
return acc;
}, new Set<string>()), // keep the cids unique
);
const allChannelsLoadedLocally = cids.length === 0;
if (!allChannelsLoadedLocally) {
await this.client.queryChannels(
{
cid: { $in: cids },
...this.channelQueryFilters,
} as ChannelFilters<StreamChatGenerics>,
{
last_message_at: -1,
...this.channelQuerySort,
},
this.channelQueryOptions,
);
}
return { items, next };
}
protected filterQueryResults(items: MessageResponse<StreamChatGenerics>[]) {
return items;
}
}
export type DefaultSearchSources<StreamChatGenerics extends ExtendableGenerics = DefaultGenerics> = [
UserSearchSource<StreamChatGenerics>,
ChannelSearchSource<StreamChatGenerics>,
MessageSearchSource<StreamChatGenerics>,
];
export type SearchControllerState = {
isActive: boolean;
searchQuery: string;
sources: SearchSource[];
};
export type InternalSearchControllerState<StreamChatGenerics extends ExtendableGenerics = DefaultGenerics> = {
// FIXME: focusedMessage should live in a MessageListController class that does not exist yet.
// This state prop should be then removed
focusedMessage?: MessageResponse<StreamChatGenerics>;
};
export type SearchControllerConfig = {
// The controller will make sure there is always exactly one active source. Enabled by default.
keepSingleActiveSource: boolean;
};
export type SearchControllerOptions = {
config?: Partial<SearchControllerConfig>;
sources?: SearchSource[];
};
export class SearchController<StreamChatGenerics extends ExtendableGenerics = DefaultGenerics> {
/**
* Not intended for direct use by integrators, might be removed without notice resulting in
* broken integrations.
*/
_internalState: StateStore<InternalSearchControllerState<StreamChatGenerics>>;
state: StateStore<SearchControllerState>;
config: SearchControllerConfig;
constructor({ config, sources }: SearchControllerOptions = {}) {
this.state = new StateStore<SearchControllerState>({
isActive: false,
searchQuery: '',
sources: sources ?? [],
});
this._internalState = new StateStore<InternalSearchControllerState<StreamChatGenerics>>({});
this.config = { keepSingleActiveSource: true, ...config };
}
get hasNext() {
return this.sources.some((source) => source.hasNext);
}
get sources() {
return this.state.getLatestValue().sources;
}
get activeSources() {
return this.state.getLatestValue().sources.filter((s) => s.isActive);
}
get isActive() {
return this.state.getLatestValue().isActive;
}
get searchQuery() {
return this.state.getLatestValue().searchQuery;
}
get searchSourceTypes(): Array<SearchSource['type']> {
return this.sources.map((s) => s.type);
}
addSource = (source: SearchSource) => {
this.state.partialNext({
sources: [...this.sources, source],
});
};
getSource = (sourceType: SearchSource['type']) => this.sources.find((s) => s.type === sourceType);
removeSource = (sourceType: SearchSource['type']) => {
const newSources = this.sources.filter((s) => s.type !== sourceType);
if (newSources.length === this.sources.length) return;
this.state.partialNext({ sources: newSources });
};
activateSource = (sourceType: SearchSource['type']) => {
const source = this.getSource(sourceType);
if (!source || source.isActive) return;
if (this.config.keepSingleActiveSource) {
this.sources.forEach((s) => {
if (s.type !== sourceType) {
s.deactivate();
}
});
}
source.activate();
this.state.partialNext({ sources: [...this.sources] });
};
deactivateSource = (sourceType: SearchSource['type']) => {
const source = this.getSource(sourceType);
if (!source?.isActive) return;
if (this.activeSources.length === 1) return;
source.deactivate();
this.state.partialNext({ sources: [...this.sources] });
};
activate = () => {
if (!this.activeSources.length) {
const sourcesToActivate = this.config.keepSingleActiveSource ? this.sources.slice(0, 1) : this.sources;
sourcesToActivate.forEach((s) => s.activate());
}
if (this.isActive) return;
this.state.partialNext({ isActive: true });
};
search = async (searchQuery?: string) => {
const searchedSources = this.activeSources;
this.state.partialNext({
searchQuery,
});
await Promise.all(searchedSources.map((source) => source.search(searchQuery)));
};
cancelSearchQueries = () => {
this.activeSources.forEach((s) => s.searchDebounced.cancel());
};
clear = () => {
this.cancelSearchQueries();
this.sources.forEach((source) => source.state.next({ ...source.initialState, isActive: source.isActive }));
this.state.next((current) => ({
...current,
isActive: true,
queriesInProgress: [],
searchQuery: '',
}));
};
exit = () => {
this.cancelSearchQueries();
this.sources.forEach((source) => source.state.next({ ...source.initialState, isActive: source.isActive }));
this.state.next((current) => ({
...current,
isActive: false,
queriesInProgress: [],
searchQuery: '',
}));
};
}