-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
ObservableQuery.ts
440 lines (370 loc) · 12.9 KB
/
ObservableQuery.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
import {
ModifiableWatchQueryOptions,
WatchQueryOptions,
FetchMoreQueryOptions,
SubscribeToMoreOptions,
} from './watchQueryOptions';
import { Observable, Observer, Subscription } from '../util/Observable';
import {
QueryScheduler,
} from '../scheduler/scheduler';
import {
ApolloError,
} from '../errors/ApolloError';
import {
QueryManager,
ApolloQueryResult,
FetchType,
} from './QueryManager';
import { tryFunctionOrLogError } from '../util/errorHandling';
import { NetworkStatus } from '../queries/store';
import { addFragmentsToDocument } from '../queries/getFromAST';
import assign = require('lodash.assign');
import isEqual = require('lodash.isequal');
export type ApolloCurrentResult = {
data: any;
loading: boolean;
networkStatus: NetworkStatus;
error?: ApolloError;
}
export interface FetchMoreOptions {
updateQuery: (previousQueryResult: Object, options: {
fetchMoreResult: Object,
queryVariables: Object,
}) => Object;
}
export interface UpdateQueryOptions {
variables: Object;
}
export class ObservableQuery extends Observable<ApolloQueryResult> {
public options: WatchQueryOptions;
public queryId: string;
/**
*
* The current value of the variables for this query. Can change.
*/
public variables: { [key: string]: any };
private isCurrentlyPolling: boolean;
private shouldSubscribe: boolean;
private scheduler: QueryScheduler;
private queryManager: QueryManager;
private observers: Observer<ApolloQueryResult>[];
private subscriptionHandles: Subscription[];
private lastResult: ApolloQueryResult;
private lastError: ApolloError;
constructor({
scheduler,
options,
shouldSubscribe = true,
}: {
scheduler: QueryScheduler,
options: WatchQueryOptions,
shouldSubscribe?: boolean,
}) {
const queryManager = scheduler.queryManager;
const queryId = queryManager.generateQueryId();
const subscriberFunction = (observer: Observer<ApolloQueryResult>) => {
return this.onSubscribe(observer);
};
super(subscriberFunction);
this.isCurrentlyPolling = false;
this.options = options;
this.variables = this.options.variables || {};
this.scheduler = scheduler;
this.queryManager = queryManager;
this.queryId = queryId;
this.shouldSubscribe = shouldSubscribe;
this.observers = [];
this.subscriptionHandles = [];
}
public result(): Promise<ApolloQueryResult> {
return new Promise((resolve, reject) => {
const subscription = this.subscribe({
next(result) {
resolve(result);
setTimeout(() => {
subscription.unsubscribe();
}, 0);
},
error(error) {
reject(error);
},
});
});
}
public currentResult(): ApolloCurrentResult {
const { data, partial } = this.queryManager.getCurrentQueryResult(this, true);
const queryStoreValue = this.queryManager.getApolloState().queries[this.queryId];
if (queryStoreValue && (queryStoreValue.graphQLErrors || queryStoreValue.networkError)) {
const error = new ApolloError({
graphQLErrors: queryStoreValue.graphQLErrors,
networkError: queryStoreValue.networkError,
});
return { data: {}, loading: false, networkStatus: queryStoreValue.networkStatus, error };
}
const queryLoading = !queryStoreValue || queryStoreValue.loading;
// We need to be careful about the loading state we show to the user, to try
// and be vaguely in line with what the user would have seen from .subscribe()
// but to still provide useful information synchronously when the query
// will not end up hitting the server.
// See more: https://github.com/apollostack/apollo-client/issues/707
// Basically: is there a query in flight right now (modolo the next tick)?
const loading = (this.options.forceFetch && queryLoading)
|| (partial && !this.options.noFetch);
// if there is nothing in the query store, it means this query hasn't fired yet. Therefore the
// network status is dependent on queryLoading.
// XXX querying the currentResult before having fired the query is kind of weird and makes our code a lot more complicated.
let networkStatus: NetworkStatus;
if (queryStoreValue) {
networkStatus = queryStoreValue.networkStatus;
} else {
networkStatus = loading ? NetworkStatus.loading : NetworkStatus.ready;
}
return { data, loading, networkStatus };
}
public refetch(variables?: any): Promise<ApolloQueryResult> {
this.variables = assign({}, this.variables, variables);
if (this.options.noFetch) {
throw new Error('noFetch option should not use query refetch.');
}
// Update the existing options with new variables
assign(this.options, {
variables: this.variables,
});
// Override forceFetch for this call only
const combinedOptions = assign({}, this.options, {
forceFetch: true,
});
return this.queryManager.fetchQuery(this.queryId, combinedOptions, FetchType.refetch)
.then(result => this.queryManager.transformResult(result));
}
public fetchMore(
fetchMoreOptions: FetchMoreQueryOptions & FetchMoreOptions
): Promise<ApolloQueryResult> {
return Promise.resolve()
.then(() => {
const qid = this.queryManager.generateQueryId();
let combinedOptions: any = null;
if (fetchMoreOptions.query) {
// fetch a new query
combinedOptions = fetchMoreOptions;
} else {
// fetch the same query with a possibly new variables
const variables = assign({}, this.variables, fetchMoreOptions.variables);
combinedOptions = assign({}, this.options, fetchMoreOptions, {
variables,
});
}
// We add the fragments to the document to pass only the document around internally.
const fullQuery = addFragmentsToDocument(combinedOptions.query, combinedOptions.fragments);
combinedOptions = assign({}, combinedOptions, {
query: fullQuery,
forceFetch: true,
}) as WatchQueryOptions;
return this.queryManager.fetchQuery(qid, combinedOptions);
})
.then((fetchMoreResult) => {
const reducer = fetchMoreOptions.updateQuery;
const mapFn = (previousResult: any, { variables }: {variables: any }) => {
// TODO REFACTOR: reached max recursion depth (figuratively) when renaming queryVariables.
// Continue renaming to variables further down when we have time.
const queryVariables = variables;
return reducer(
previousResult, {
fetchMoreResult,
queryVariables,
});
};
this.updateQuery(mapFn);
return fetchMoreResult;
});
}
// XXX the subscription variables are separate from the query variables.
// if you want to update subscription variables, right now you have to do that separately,
// and you can only do it by stopping the subscription and then subscribing again with new variables.
public subscribeToMore(
options: SubscribeToMoreOptions,
): () => void {
const observable = this.queryManager.startGraphQLSubscription({
document: options.document,
variables: options.variables,
});
const reducer = options.updateQuery;
const subscription = observable.subscribe({
next: (data) => {
const mapFn = (previousResult: Object, { variables }: { variables: Object }) => {
return reducer(
previousResult, {
subscriptionData: { data },
variables,
}
);
};
this.updateQuery(mapFn);
},
error: (err) => {
if (options.onError) {
options.onError(err);
} else {
console.error('Unhandled GraphQL subscription errror', err);
}
},
});
this.subscriptionHandles.push(subscription);
return () => {
const i = this.subscriptionHandles.indexOf(subscription);
if (i >= 0) {
this.subscriptionHandles.splice(i, 1);
subscription.unsubscribe();
}
};
}
public setOptions(opts: ModifiableWatchQueryOptions): Promise<ApolloQueryResult> {
const oldOptions = this.options;
this.options = assign({}, this.options, opts) as WatchQueryOptions;
if (opts.pollInterval) {
this.startPolling(opts.pollInterval);
} else if (opts.pollInterval === 0) {
this.stopPolling();
}
// If forceFetch went from false to true
if (!oldOptions.forceFetch && opts.forceFetch) {
return this.queryManager.fetchQuery(this.queryId, this.options)
.then(result => this.queryManager.transformResult(result));
}
return this.setVariables(this.options.variables);
}
/**
* Update the variables of this observable query, and fetch the new results
* if they've changed. If you want to force new results, use `refetch`.
*
* Note: if the variables have not changed, the promise will return the old
* results immediately, and the `next` callback will *not* fire.
*
* @param variables: The new set of variables. If there are missing variables,
* the previous values of those variables will be used.
*/
public setVariables(variables: any): Promise<ApolloQueryResult> {
const newVariables = assign({}, this.variables, variables);
if (isEqual(newVariables, this.variables)) {
return this.result();
} else {
this.variables = newVariables;
// Use the same options as before, but with new variables
return this.queryManager.fetchQuery(this.queryId, assign(this.options, {
variables: this.variables,
}) as WatchQueryOptions)
.then(result => this.queryManager.transformResult(result));
}
}
public updateQuery(
mapFn: (previousQueryResult: any, options: UpdateQueryOptions) => any
): void {
const {
previousResult,
variables,
document,
} = this.queryManager.getQueryWithPreviousResult(this.queryId);
const newResult = tryFunctionOrLogError(
() => mapFn(previousResult, { variables }));
if (newResult) {
this.queryManager.store.dispatch({
type: 'APOLLO_UPDATE_QUERY_RESULT',
newResult,
variables,
document,
});
}
}
public stopPolling() {
if (this.isCurrentlyPolling) {
this.scheduler.stopPollingQuery(this.queryId);
this.isCurrentlyPolling = false;
}
}
public startPolling(pollInterval: number) {
if (this.options.noFetch) {
throw new Error('noFetch option should not use query polling.');
}
if (this.isCurrentlyPolling) {
this.scheduler.stopPollingQuery(this.queryId);
this.isCurrentlyPolling = false;
}
this.options.pollInterval = pollInterval;
this.isCurrentlyPolling = true;
this.scheduler.startPollingQuery(this.options, this.queryId);
}
private onSubscribe(observer: Observer<ApolloQueryResult>) {
this.observers.push(observer);
// Deliver initial result
if (observer.next && this.lastResult) {
observer.next(this.lastResult);
}
if (observer.error && this.lastError) {
observer.error(this.lastError);
}
if (this.observers.length === 1) {
this.setUpQuery();
}
const retQuerySubscription = {
unsubscribe: () => {
this.observers = this.observers.filter((obs) => obs !== observer);
if (this.observers.length === 0) {
this.tearDownQuery();
}
},
};
return retQuerySubscription;
}
private setUpQuery() {
if (this.shouldSubscribe) {
this.queryManager.addObservableQuery(this.queryId, this);
}
if (!!this.options.pollInterval) {
if (this.options.noFetch) {
throw new Error('noFetch option should not use query polling.');
}
this.isCurrentlyPolling = true;
this.scheduler.startPollingQuery(
this.options,
this.queryId,
);
}
const observer: Observer<ApolloQueryResult> = {
next: (result: ApolloQueryResult) => {
this.observers.forEach((obs) => {
if (obs.next) {
obs.next(result);
}
});
this.lastResult = result;
},
error: (error: ApolloError) => {
this.observers.forEach((obs) => {
if (obs.error) {
obs.error(error);
} else {
console.error('Unhandled error', error.message, error.stack);
}
});
this.lastError = error;
},
};
this.queryManager.startQuery(
this.queryId,
this.options,
this.queryManager.queryListenerForObserver(this.queryId, this.options, observer)
);
}
private tearDownQuery() {
if (this.isCurrentlyPolling) {
this.scheduler.stopPollingQuery(this.queryId);
this.isCurrentlyPolling = false;
}
// stop all active GraphQL subscriptions
this.subscriptionHandles.forEach( sub => sub.unsubscribe() );
this.subscriptionHandles = [];
this.queryManager.stopQuery(this.queryId);
this.observers = [];
}
}