forked from apollographql/fullstack-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcancelRequest.ts
54 lines (45 loc) · 1.71 KB
/
cancelRequest.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
import {
ApolloLink,
Observable
} from '@apollo/client';
const connections: { [key: string]: any } = {};
export const cancelRequestLink = new ApolloLink(
(operation, forward) =>
new Observable(observer => {
// Set x-CSRF token (not related to abort use case)
const context = operation.getContext();
/** Final touch to cleanup */
const connectionHandle = forward(operation).subscribe({
next: (...arg) => observer.next(...arg),
error: (...arg) => {
cleanUp();
observer.error(...arg);
},
complete: (...arg) => {
cleanUp();
observer.complete(...arg)
}
});
const cleanUp = () => {
connectionHandle?.unsubscribe();
delete connections[context.requestTrackerId];
}
if (context.requestTrackerId) {
const controller = new AbortController();
controller.signal.onabort = cleanUp;
operation.setContext({
...context,
fetchOptions: {
signal: controller.signal,
...context?.fetchOptions
},
});
if (connections[context.requestTrackerId]) {
// If a controller exists, that means this operation should be aborted.
connections[context.requestTrackerId]?.abort();
}
connections[context.requestTrackerId] = controller;
}
return connectionHandle;
})
);