-
-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathBaseDataService.ts
More file actions
475 lines (416 loc) · 12.9 KB
/
Copy pathBaseDataService.ts
File metadata and controls
475 lines (416 loc) · 12.9 KB
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
import {
Messenger,
ActionConstraint,
EventConstraint,
MessengerActions,
MessengerEvents,
} from '@metamask/messenger';
import type {
StorageServiceGetItemAction,
StorageServiceRemoveItemAction,
StorageServiceSetItemAction,
} from '@metamask/storage-service';
import { Duration, inMilliseconds } from '@metamask/utils';
import type { Json } from '@metamask/utils';
import {
DefaultOptions,
DehydratedState,
FetchInfiniteQueryOptions,
FetchQueryOptions,
InfiniteData,
InvalidateOptions,
InvalidateQueryFilters,
OmitKeyof,
QueryClient,
QueryClientConfig,
WithRequired,
dehydrate,
hydrate,
} from '@tanstack/query-core';
import deepEqual from 'fast-deep-equal';
import { debounce, DebouncedFunc } from 'lodash';
import {
createServicePolicy,
CreateServicePolicyOptions,
ServicePolicy,
} from './createServicePolicy';
// Data service queries use the following format: ['ServiceActionName', ...params]
export type QueryKey = [string, ...Json[]];
export type DataServiceGranularCacheUpdatedPayload =
| { type: 'added' | 'updated'; state: DehydratedState }
| {
type: 'removed';
state: null;
};
export type DataServiceCacheUpdatedPayload =
DataServiceGranularCacheUpdatedPayload & {
hash: string;
};
type CacheUpdatedType = DataServiceCacheUpdatedPayload['type'];
export type DataServiceInvalidateQueriesAction<ServiceName extends string> = {
type: `${ServiceName}:invalidateQueries`;
handler: (
filters?: InvalidateQueryFilters<Json>,
options?: InvalidateOptions,
) => Promise<void>;
};
type DataServiceActions<ServiceName extends string> =
DataServiceInvalidateQueriesAction<ServiceName>;
type DataServiceAllowedActions =
| StorageServiceGetItemAction
| StorageServiceSetItemAction
| StorageServiceRemoveItemAction;
export type DataServiceCacheUpdatedEvent<ServiceName extends string> = {
type: `${ServiceName}:cacheUpdated`;
payload: [DataServiceCacheUpdatedPayload];
};
export type DataServiceGranularCacheUpdatedEvent<ServiceName extends string> = {
type: `${ServiceName}:cacheUpdated:${string}`;
payload: [DataServiceGranularCacheUpdatedPayload];
};
type DataServiceEvents<ServiceName extends string> =
| DataServiceCacheUpdatedEvent<ServiceName>
| DataServiceGranularCacheUpdatedEvent<ServiceName>;
// Defaults to apply to all data service queries if no default option specified
const QUERY_CLIENT_DEFAULTS: DefaultOptions = {
queries: {
retry: false,
staleTime: inMilliseconds(1, Duration.Minute),
},
};
export const STORAGE_SERVICE_KEY = 'cache';
/**
* Options for persistence configuration.
*/
export type PersistenceConfiguration = {
/**
* The maximum age before the cache is treated as expired in milliseconds.
* This is relevant for rehydrating the state during initialization,
* if the cached state is too old it will be discarded.
*/
maxAge: number;
/**
* The number of milliseconds to wait before triggering persistence following a cache update.
*/
writeDelay?: number;
/**
* The maximum number of milliseconds to wait between persistence writes.
*/
maxWriteDelay?: number;
};
type PersistedCache = {
state: DehydratedState;
timestamp: number;
};
export class BaseDataService<
ServiceName extends string,
ServiceMessenger extends Messenger<
ServiceName,
ActionConstraint,
EventConstraint,
// Use `any` to allow any parent to be set. `any` is harmless in a type constraint anyway,
// it's the one totally safe place to use it.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
any
>,
> {
public readonly name: ServiceName;
readonly #messenger: Messenger<
ServiceName,
DataServiceActions<ServiceName>,
DataServiceEvents<ServiceName>
>;
readonly #externalMessenger: Messenger<
ServiceName,
DataServiceAllowedActions
>;
protected messenger: ServiceMessenger;
readonly #policy: ServicePolicy;
readonly #queryClient: QueryClient;
readonly #queryCacheUnsubscribe: () => void;
readonly #debouncedPersist?: DebouncedFunc<() => void>;
readonly #persistenceConfig?: PersistenceConfiguration;
constructor({
name,
messenger,
queryClientConfig = {},
policyOptions,
persistenceConfig,
}: {
name: ServiceName;
messenger: DataServiceActions<ServiceName>['type'] extends
| MessengerActions<ServiceMessenger>['type']
| DataServiceAllowedActions['type']
? DataServiceEvents<ServiceName>['type'] extends MessengerEvents<ServiceMessenger>['type']
? ServiceMessenger
: never
: never;
queryClientConfig?: QueryClientConfig;
policyOptions?: CreateServicePolicyOptions;
persistenceConfig?: PersistenceConfiguration;
}) {
this.name = name;
// We store two narrowly-typed messengers alongside the generic public one:
// - #messenger handles the service's own action registration and event publishing
// - #externalMessenger handles calls to external actions
// Splitting them avoids TypeScript issues with mixing template-literals with regular strings
this.#messenger = messenger as unknown as Messenger<
ServiceName,
DataServiceActions<ServiceName>,
DataServiceEvents<ServiceName>
>;
this.#externalMessenger = messenger as unknown as Messenger<
ServiceName,
DataServiceAllowedActions
>;
this.messenger = messenger;
this.#queryClient = new QueryClient({
...queryClientConfig,
defaultOptions: {
queries: {
...QUERY_CLIENT_DEFAULTS.queries,
...queryClientConfig.defaultOptions?.queries,
},
mutations: queryClientConfig.defaultOptions?.mutations,
},
});
this.#persistenceConfig = persistenceConfig;
this.#policy = createServicePolicy(policyOptions);
this.#debouncedPersist =
this.#persistenceConfig &&
debounce(
() => {
this.#persistCache().catch(
/* istanbul ignore next */
(error) => this.#messenger.captureException?.(error),
);
},
this.#persistenceConfig.writeDelay ??
inMilliseconds(10, Duration.Second),
{
maxWait:
this.#persistenceConfig.maxWriteDelay ??
inMilliseconds(1, Duration.Minute),
},
);
this.#queryCacheUnsubscribe = this.#queryClient
.getQueryCache()
.subscribe((event) => {
if (['added', 'updated', 'removed'].includes(event.type)) {
this.#publishCacheUpdate(
event.query.queryHash,
event.type as CacheUpdatedType,
);
this.#debouncedPersist?.();
}
});
this.#messenger.registerActionHandler(
`${this.name}:invalidateQueries`,
this.invalidateQueries.bind(this),
);
}
/**
* Fetch a query.
*
* @param options - The options defining the query. Keep in mind that `queryKey` and `queryFn` are required when using data services.
* Additionally `retry` and `retryDelay` are not available, retries can be customized using the `servicePolicyOptions`.
* @returns The query results.
*/
protected async fetchQuery<
TQueryFnData extends Json,
TError = unknown,
TData = TQueryFnData,
TQueryKey extends QueryKey = QueryKey,
>(
options: WithRequired<
OmitKeyof<
FetchQueryOptions<TQueryFnData, TError, TData, TQueryKey>,
'retry' | 'retryDelay'
>,
'queryKey' | 'queryFn'
>,
): Promise<TData> {
return this.#queryClient.fetchQuery({
...options,
queryFn: (context) =>
this.#policy.execute(() => options.queryFn(context)),
});
}
/**
* Fetch a paginated query.
*
* @param options - The options defining the query. Keep in mind that `queryKey` and `queryFn` are required when using data services.
* Additionally `retry` and `retryDelay` are not available, retries can be customized using the `servicePolicyOptions`.
* @param pageParam - An optional page parameter.
* @returns The query result, exclusively the requested page is returned.
*/
protected async fetchInfiniteQuery<
TQueryFnData extends Json,
TError = unknown,
TData extends TQueryFnData = TQueryFnData,
TQueryKey extends QueryKey = QueryKey,
TPageParam extends Json = Json,
>(
options: WithRequired<
OmitKeyof<
FetchInfiniteQueryOptions<TQueryFnData, TError, TData, TQueryKey>,
'retry' | 'retryDelay'
>,
'queryKey' | 'queryFn'
>,
pageParam?: TPageParam,
): Promise<TData> {
const cache = this.#queryClient.getQueryCache();
const query = cache.find<TQueryFnData, TError, InfiniteData<TData>>({
queryKey: options.queryKey,
});
if (!query?.state.data || pageParam === undefined) {
const result = await this.#queryClient.fetchInfiniteQuery({
...options,
queryFn: (context) =>
this.#policy.execute(() =>
options.queryFn({
...context,
pageParam: context.pageParam ?? pageParam,
}),
),
});
return result.pages[0];
}
const { pages } = query.state.data;
const previous = options.getPreviousPageParam?.(pages[0], pages);
const direction = deepEqual(pageParam, previous) ? 'backward' : 'forward';
const result = await query.fetch(undefined, {
meta: {
fetchMore: {
direction,
pageParam,
},
},
});
const pageIndex = result.pageParams.findIndex((param) =>
deepEqual(param, pageParam),
);
return result.pages[pageIndex];
}
/**
* Invalidate queries serviced by this data service.
*
* @param filters - Optional filter for selecting specific queries.
* @param options - Additional optional options for query invalidations.
* @returns Nothing.
*/
async invalidateQueries<TPageData extends Json>(
filters?: InvalidateQueryFilters<TPageData>,
options?: InvalidateOptions,
): Promise<void> {
return this.#queryClient.invalidateQueries(filters, options);
}
/**
* Initialize the service, rehydrating the cache with persisted data if possible.
*/
init(): void {
this.#loadCache().catch(
/* istanbul ignore next */
(error) => this.#messenger.captureException?.(error),
);
}
/**
* Prepares the service for garbage collection. This should be extended
* by any subclasses to clean up any additional connections or events.
*/
destroy(): void {
this.#debouncedPersist?.cancel();
this.#queryCacheUnsubscribe();
this.#queryClient.clear();
this.messenger.clearSubscriptions();
this.messenger.clearActions();
}
/**
* Publish `cacheUpdated` events when a given query changes.
*
* @param hash The hash of the query.
* @param type The type of cache update.
*/
#publishCacheUpdate(hash: string, type: CacheUpdatedType): void {
const state =
type === 'added' || type === 'updated'
? dehydrate(this.#queryClient, {
shouldDehydrateQuery: (query) => query.queryHash === hash,
})
: null;
this.#messenger.publish(
`${this.name}:cacheUpdated` as const,
{
type,
hash,
state,
} as DataServiceCacheUpdatedPayload,
);
this.#messenger.publish(
`${this.name}:cacheUpdated:${hash}` as const,
{
type,
state,
} as DataServiceGranularCacheUpdatedPayload,
);
}
/**
* Persist the query client cache using the StorageService, if the cache is not empty.
*
* @returns Nothing.
*/
async #persistCache(): Promise<void> {
const state = dehydrate(this.#queryClient, {
// This is the default, but we specify it to be explicit.
shouldDehydrateQuery: (query) => query.state.status === 'success',
});
if (state.queries.length === 0 && state.mutations.length === 0) {
await this.#externalMessenger.call(
'StorageService:removeItem',
this.name,
STORAGE_SERVICE_KEY,
);
return;
}
const cache: PersistedCache = {
timestamp: Date.now(),
state,
};
await this.#externalMessenger.call(
'StorageService:setItem',
this.name,
STORAGE_SERVICE_KEY,
cache as unknown as Json,
);
}
/**
* Load the query client cache from the StorageService, if persistence is configured
* and the persisted cache is not expired.
*
* @returns Nothing.
*/
async #loadCache(): Promise<void> {
if (!this.#persistenceConfig) {
return;
}
const { result: untypedCache } = await this.#externalMessenger.call(
'StorageService:getItem',
this.name,
STORAGE_SERVICE_KEY,
);
if (!untypedCache) {
return;
}
const cache = untypedCache as unknown as PersistedCache;
if (Date.now() - cache.timestamp >= this.#persistenceConfig.maxAge) {
await this.#externalMessenger.call(
'StorageService:removeItem',
this.name,
STORAGE_SERVICE_KEY,
);
return;
}
hydrate(this.#queryClient, cache.state);
}
}