-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathuseSubscription.ts
More file actions
422 lines (377 loc) · 13.2 KB
/
useSubscription.ts
File metadata and controls
422 lines (377 loc) · 13.2 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
import type { TypedDocumentNode } from "@graphql-typed-document-node/core";
import { equal } from "@wry/equality";
import type { DocumentNode } from "graphql";
import * as React from "react";
import type {
ApolloClient,
DefaultContext,
ErrorLike,
ErrorPolicy,
FetchPolicy,
OperationVariables,
} from "@apollo/client";
import type { MaybeMasked } from "@apollo/client/masking";
import type { DocumentationTypes as UtilityDocumentationTypes } from "@apollo/client/utilities/internal";
import type {
NoInfer,
VariablesOption,
} from "@apollo/client/utilities/internal";
import { invariant } from "@apollo/client/utilities/invariant";
import { useDeepMemo } from "./internal/useDeepMemo.js";
import { useIsomorphicLayoutEffect } from "./internal/useIsomorphicLayoutEffect.js";
import { useApolloClient } from "./useApolloClient.js";
import { useSyncExternalStore } from "./useSyncExternalStore.js";
export declare namespace useSubscription {
import _self = useSubscription;
export namespace Base {
export interface Options<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
> {
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#fetchPolicy:member} */
fetchPolicy?: FetchPolicy;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#errorPolicy:member} */
errorPolicy?: ErrorPolicy;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#shouldResubscribe:member} */
shouldResubscribe?:
| boolean
| ((options: Options<TData, TVariables>) => boolean);
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#client:member} */
client?: ApolloClient;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#skip:member} */
skip?: boolean;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#context:member} */
context?: DefaultContext;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#extensions:member} */
extensions?: Record<string, any>;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#onComplete:member} */
onComplete?: () => void;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#onData:member} */
onData?: (options: OnDataOptions<TData>) => any;
/** {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#onError:member} */
onError?: (error: ErrorLike) => void;
/**
* {@inheritDoc @apollo/client!SubscriptionOptionsDocumentation#ignoreResults:member}
* @defaultValue `false`
*/
ignoreResults?: boolean;
}
}
export type Options<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
> = Base.Options<TData, TVariables> & VariablesOption<TVariables>;
export namespace DocumentationTypes {
namespace useSubscription {
export interface Options<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
> extends Base.Options<TData, TVariables>,
UtilityDocumentationTypes.VariableOptions<TVariables> {}
}
}
export interface Result<TData = unknown> {
/** {@inheritDoc @apollo/client!SubscriptionResultDocumentation#loading:member} */
loading: boolean;
/** {@inheritDoc @apollo/client!SubscriptionResultDocumentation#data:member} */
data?: MaybeMasked<TData>;
/** {@inheritDoc @apollo/client!SubscriptionResultDocumentation#error:member} */
error?: ErrorLike;
/**
* A function that when called will disconnect and reconnect the connection
* to the subscription. If the subscription is deduplicated, this will
* restart the connection for all deduplicated subscriptions.
*/
restart: () => void;
}
export namespace DocumentationTypes {
namespace useSubscription {
export interface Result<TData = unknown> extends _self.Result<TData> {}
}
}
export namespace DocumentationTypes {
/** {@inheritDoc @apollo/client/react!useSubscription:function(1)} */
export function useSubscription<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
>(
options?: useSubscription.Options<TData, TVariables>
): useSubscription.Result<TData>;
}
export type OnDataResult<TData = unknown> = Omit<Result<TData>, "restart">;
export interface OnDataOptions<TData = unknown> {
client: ApolloClient;
data: OnDataResult<TData>;
}
export interface OnSubscriptionDataOptions<TData = unknown> {
client: ApolloClient;
subscriptionData: OnDataResult<TData>;
}
}
/**
* > Refer to the [Subscriptions](https://www.apollographql.com/docs/react/data/subscriptions/) section for a more in-depth overview of `useSubscription`.
*
* @example
*
* ```jsx
* const COMMENTS_SUBSCRIPTION = gql`
* subscription OnCommentAdded($repoFullName: String!) {
* commentAdded(repoFullName: $repoFullName) {
* id
* content
* }
* }
* `;
*
* function DontReadTheComments({ repoFullName }) {
* const {
* data: { commentAdded },
* loading,
* } = useSubscription(COMMENTS_SUBSCRIPTION, { variables: { repoFullName } });
* return <h4>New comment: {!loading && commentAdded.content}</h4>;
* }
* ```
*
* @remarks
*
* #### Consider using `onData` instead of `useEffect`
*
* If you want to react to incoming data, please use the `onData` option instead of `useEffect`.
* State updates you make inside a `useEffect` hook might cause additional rerenders, and `useEffect` is mostly meant for side effects of rendering, not as an event handler.
* State updates made in an event handler like `onData` might - depending on the React version - be batched and cause only a single rerender.
*
* Consider the following component:
*
* ```jsx
* export function Subscriptions() {
* const { data, error, loading } = useSubscription(query);
* const [accumulatedData, setAccumulatedData] = useState([]);
*
* useEffect(() => {
* setAccumulatedData((prev) => [...prev, data]);
* }, [data]);
*
* return (
* <>
* {loading && <p>Loading...</p>}
* {JSON.stringify(accumulatedData, undefined, 2)}
* </>
* );
* }
* ```
*
* Instead of using `useEffect` here, we can re-write this component to use the `onData` callback function accepted in `useSubscription`'s `options` object:
*
* ```jsx
* export function Subscriptions() {
* const [accumulatedData, setAccumulatedData] = useState([]);
* const { data, error, loading } = useSubscription(query, {
* onData({ data }) {
* setAccumulatedData((prev) => [...prev, data.data]);
* },
* });
*
* return (
* <>
* {loading && <p>Loading...</p>}
* {JSON.stringify(accumulatedData, undefined, 2)}
* </>
* );
* }
* ```
*
* > ⚠️ **Note:** The `useSubscription` option `onData` is available in Apollo Client >= 3.7. In previous versions, the equivalent option is named `onSubscriptionData`.
*
* Now, the first message will be added to the `accumulatedData` array since `onData` is called _before_ the component re-renders. React 18 automatic batching is still in effect and results in a single re-render, but with `onData` we can guarantee each message received after the component mounts is added to `accumulatedData`.
*
* @param subscription - A GraphQL subscription document parsed into an AST by `gql`.
* @param options - Options to control how the subscription is executed.
* @returns Query result object
*/
export function useSubscription<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
>(
subscription: DocumentNode | TypedDocumentNode<TData, TVariables>,
...[options = {} as useSubscription.Options<TData, TVariables>]: {} extends (
TVariables
) ?
[options?: useSubscription.Options<NoInfer<TData>, NoInfer<TVariables>>]
: [options: useSubscription.Options<NoInfer<TData>, NoInfer<TVariables>>]
): useSubscription.Result<TData> {
const client = useApolloClient(options.client);
const {
skip,
fetchPolicy,
errorPolicy,
shouldResubscribe,
context,
extensions,
ignoreResults,
} = options;
const variables = useDeepMemo(() => options.variables, [options.variables]);
const recreate = () =>
createSubscription(
client,
subscription,
variables,
fetchPolicy,
errorPolicy,
context,
extensions
);
let [observable, setObservable] = React.useState(
options.skip ? null : recreate
);
const recreateRef = React.useRef(recreate);
useIsomorphicLayoutEffect(() => {
recreateRef.current = recreate;
});
if (skip) {
if (observable) {
setObservable((observable = null));
}
} else if (
!observable ||
((client !== observable.__.client ||
subscription !== observable.__.query ||
fetchPolicy !== observable.__.fetchPolicy ||
errorPolicy !== observable.__.errorPolicy ||
!equal(variables, observable.__.variables)) &&
(typeof shouldResubscribe === "function" ?
!!shouldResubscribe(options!)
: shouldResubscribe) !== false)
) {
setObservable((observable = recreate()));
}
const optionsRef = React.useRef(options);
React.useEffect(() => {
optionsRef.current = options;
});
const fallbackLoading = !skip && !ignoreResults;
const fallbackResult = React.useMemo(
() => ({
loading: fallbackLoading,
error: void 0,
data: void 0,
}),
[fallbackLoading]
);
const ignoreResultsRef = React.useRef(ignoreResults);
useIsomorphicLayoutEffect(() => {
// We cannot reference `ignoreResults` directly in the effect below
// it would add a dependency to the `useEffect` deps array, which means the
// subscription would be recreated if `ignoreResults` changes
// As a result, on resubscription, the last result would be re-delivered,
// rendering the component one additional time, and re-triggering `onData`.
// The same applies to `fetchPolicy`, which results in a new `observable`
// being created. We cannot really avoid it in that case, but we can at least
// avoid it for `ignoreResults`.
ignoreResultsRef.current = ignoreResults;
});
const ret = useSyncExternalStore(
React.useCallback(
(update) => {
if (!observable) {
return () => {};
}
let subscriptionStopped = false;
const client = observable.__.client;
const subscription = observable.subscribe({
next(value) {
if (subscriptionStopped) {
return;
}
const result = {
loading: false,
data: value.data,
error: value.error,
};
observable.__.setResult(result);
if (!ignoreResultsRef.current) update();
if (result.error) {
optionsRef.current.onError?.(result.error);
} else if (optionsRef.current.onData) {
optionsRef.current.onData({
client,
data: result,
});
}
},
complete() {
observable.__.completed = true;
if (!subscriptionStopped && optionsRef.current.onComplete) {
optionsRef.current.onComplete();
}
},
});
return () => {
// immediately stop receiving subscription values, but do not unsubscribe
// until after a short delay in case another useSubscription hook is
// reusing the same underlying observable and is about to subscribe
subscriptionStopped = true;
setTimeout(() => subscription.unsubscribe());
};
},
[observable]
),
() =>
observable && !skip && !ignoreResults ?
observable.__.result
: fallbackResult,
() => fallbackResult
);
const restart = React.useCallback(() => {
invariant(
!optionsRef.current.skip,
"A subscription that is skipped cannot be restarted."
);
if (observable?.__.completed) {
setObservable(recreateRef.current());
} else {
observable?.restart();
}
}, [observable, setObservable, optionsRef, recreateRef]);
return React.useMemo(() => ({ ...ret, restart }), [ret, restart]);
}
type SubscriptionResult<TData> = Omit<useSubscription.Result<TData>, "restart">;
function createSubscription<
TData = unknown,
TVariables extends OperationVariables = OperationVariables,
>(
client: ApolloClient,
query: TypedDocumentNode<TData, TVariables>,
variables: TVariables | undefined,
fetchPolicy: FetchPolicy | undefined,
errorPolicy: ErrorPolicy | undefined,
context: DefaultContext | undefined,
extensions: Record<string, any> | undefined
) {
const options = {
query,
variables,
fetchPolicy,
errorPolicy,
context,
extensions,
} as ApolloClient.SubscribeOptions<TData, TVariables>;
const __ = {
...options,
client,
completed: false,
result: {
loading: true,
data: void 0,
error: void 0,
} as SubscriptionResult<TData>,
setResult(result: SubscriptionResult<TData>) {
__.result = result;
},
};
return Object.assign(client.subscribe(options), {
/**
* A tracking object to store details about the observable and the latest result of the subscription.
*/
__,
});
}