-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathFetchResolver.ts
More file actions
233 lines (219 loc) · 7.31 KB
/
Copy pathFetchResolver.ts
File metadata and controls
233 lines (219 loc) · 7.31 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
import {
__internal,
Disposable,
FetchPolicy,
Subscription,
OperationDescriptor,
IEnvironment,
Snapshot,
RenderPolicy,
GraphQLResponse,
} from 'relay-runtime';
import { isNetworkPolicy, isStorePolicy } from './Utils';
const { fetchQuery } = __internal;
const DATA_RETENTION_TIMEOUT = 30 * 1000;
export type Fetcher = {
fetch: (
environment: IEnvironment,
operation: OperationDescriptor,
fetchPolicy: FetchPolicy | null | undefined,
onComplete: (_e: Error | null) => void,
onNext: (
operation: OperationDescriptor,
snapshot: Snapshot,
response?: GraphQLResponse,
fromStore?: boolean,
onlyStore?: boolean,
) => void,
onResponse?: (response: GraphQLResponse | null) => void,
renderPolicy?: RenderPolicy,
) => Disposable;
getData: () => {
isLoading: boolean;
error?: Error | null;
};
dispose: () => void;
checkAndSuspense: (suspense: boolean, useLazy?: boolean) => Promise<any> | Error | null;
};
export function fetchResolver({
setLoading,
doRetain = true,
disposeTemporary,
}: {
doRetain?: boolean;
setLoading?: (loading: boolean) => void;
disposeTemporary?: () => void;
}): Fetcher {
let _refetchSubscription: Subscription | null = null;
let disposable: Disposable | null = null;
let releaseQueryTimeout;
let isLoading = false;
let query;
let promise: Promise<any>;
let error: Error | null = null;
let env;
const updateLoading = (loading: boolean): void => {
isLoading = loading;
setLoading && setLoading(isLoading);
};
const lookupInStore = (
environment: IEnvironment,
operation,
fetchPolicy,
renderPolicy: RenderPolicy,
): { snapshot: Snapshot | null; full: boolean } => {
if (isStorePolicy(fetchPolicy)) {
const check = environment.check(operation);
const queryStatus = check.status;
const hasFullQuery = queryStatus === 'available';
const canPartialRender = hasFullQuery || (renderPolicy === 'partial' && queryStatus !== 'stale');
if (canPartialRender) {
return { snapshot: environment.lookup(operation.fragment), full: hasFullQuery };
}
}
return { snapshot: null, full: false };
};
const dispose = (): void => {
clearTemporaryRetain();
disposable && disposable.dispose();
disposeRequest();
disposable = null;
env = null;
query = null;
};
const clearTemporaryRetain = (): void => {
clearTimeout(releaseQueryTimeout);
releaseQueryTimeout = null;
};
const temporaryRetain = (): void => {
const localReleaseTemporaryRetain = (): void => {
clearTemporaryRetain();
dispose();
disposeTemporary && disposeTemporary();
};
releaseQueryTimeout = setTimeout(localReleaseTemporaryRetain, DATA_RETENTION_TIMEOUT);
};
const disposeRequest = (): void => {
_refetchSubscription && _refetchSubscription.unsubscribe();
error = null;
};
const fetch = (
environment: IEnvironment,
operation: OperationDescriptor,
fetchPolicy: FetchPolicy = 'network-only',
onComplete = (_e: Error | null): void => undefined,
onNext: (
operation: OperationDescriptor,
snapshot: Snapshot,
response?: GraphQLResponse,
fromStore?: boolean,
onlyStore?: boolean,
) => void,
onResponse?: (response: GraphQLResponse | null) => void,
renderPolicy?: RenderPolicy,
): Disposable => {
if (env != environment || query.request.identifier !== operation.request.identifier) {
dispose();
if (doRetain) {
disposable = environment.retain(operation);
}
}
env = environment;
query = operation;
disposeRequest();
const { snapshot, full } = lookupInStore(environment, operation, fetchPolicy, renderPolicy);
const isNetwork = isNetworkPolicy(fetchPolicy, full);
if (snapshot != null) {
const onlyStore = !isNetwork;
onNext(operation, snapshot, null, true, onlyStore);
if (onlyStore) {
onComplete(null);
}
}
// Cancel any previously running refetch.
_refetchSubscription && _refetchSubscription.unsubscribe();
if (isNetwork) {
let resolveNetworkPromise = (): void => {};
// Declare refetchSubscription before assigning it in .start(), since
// synchronous completion may call callbacks .subscribe() returns.
let refetchSubscription: Subscription;
const cleanup = (): void => {
if (_refetchSubscription === refetchSubscription) {
_refetchSubscription = null;
}
isLoading = false;
promise = null;
};
fetchQuery(environment, operation).subscribe({
unsubscribe: (): void => {
cleanup();
},
complete: (): void => {
resolveNetworkPromise();
updateLoading(false);
cleanup();
onComplete(null);
},
error: (e: Error): void => {
error = e;
resolveNetworkPromise();
updateLoading(false);
cleanup();
onComplete(e);
},
next: (response: GraphQLResponse) => {
const store = environment.lookup(operation.fragment);
promise = null;
operation.request.cacheConfig?.poll && updateLoading(false);
resolveNetworkPromise();
onResponse && onResponse(response);
onNext(operation, store, response);
},
start: (subscription) => {
refetchSubscription = subscription;
_refetchSubscription = refetchSubscription;
updateLoading(true);
},
});
if (!snapshot) {
promise = new Promise((resolve: any) => {
resolveNetworkPromise = resolve;
});
}
return {
dispose: (): void => {
refetchSubscription && refetchSubscription.unsubscribe();
},
};
}
return {
dispose: (): void => {},
};
};
const checkAndSuspense = (suspense, useLazy): Promise<any> | Error | null => {
clearTemporaryRetain();
const toThrow = promise || error;
if (suspense && toThrow) {
if (promise && useLazy) {
temporaryRetain();
}
throw toThrow;
}
return toThrow;
};
const getData = (): {
isLoading: boolean;
error?: Error | null;
} => {
return {
isLoading,
error,
};
};
return {
fetch,
getData,
dispose,
checkAndSuspense,
};
}