-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
pagination.ts
286 lines (255 loc) · 9.58 KB
/
pagination.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
import { __rest } from "tslib";
import type { FieldPolicy, Reference } from "../../cache/index.js";
import { mergeDeep } from "../common/mergeDeep.js";
type KeyArgs = FieldPolicy<any>["keyArgs"];
// A very basic pagination field policy that always concatenates new
// results onto the existing array, without examining options.args.
export function concatPagination<T = Reference>(
keyArgs: KeyArgs = false
): FieldPolicy<T[]> {
return {
keyArgs,
merge(existing, incoming) {
return existing ? [...existing, ...incoming] : incoming;
},
};
}
// A basic field policy that uses options.args.{offset,limit} to splice
// the incoming data into the existing array. If your arguments are called
// something different (like args.{start,count}), feel free to copy/paste
// this implementation and make the appropriate changes.
export function offsetLimitPagination<T = Reference>(
keyArgs: KeyArgs = false
): FieldPolicy<T[]> {
return {
keyArgs,
merge(existing, incoming, { args }) {
const merged = existing ? existing.slice(0) : [];
if (incoming) {
if (args) {
// Assume an offset of 0 if args.offset omitted.
const { offset = 0 } = args;
for (let i = 0; i < incoming.length; ++i) {
merged[offset + i] = incoming[i];
}
} else {
// It's unusual (probably a mistake) for a paginated field not
// to receive any arguments, so you might prefer to throw an
// exception here, instead of recovering by appending incoming
// onto the existing array.
merged.push(...incoming);
}
}
return merged;
},
};
}
// Whether TRelayEdge<TNode> is a normalized Reference or a non-normalized
// object, it needs a .cursor property where the relayStylePagination
// merge function can store cursor strings taken from pageInfo. Storing an
// extra reference.cursor property should be safe, and is easier than
// attempting to update the cursor field of the normalized StoreObject
// that the reference refers to, or managing edge wrapper objects
// (something I attempted in #7023, but abandoned because of #7088).
export type TRelayEdge<TNode> =
| {
cursor?: string;
node: TNode;
}
| (Reference & { cursor?: string });
export type TRelayPageInfo = {
hasPreviousPage: boolean;
hasNextPage: boolean;
startCursor: string;
endCursor: string;
};
export type TExistingRelay<TNode> = Readonly<{
edges: TRelayEdge<TNode>[];
pageInfo: TRelayPageInfo;
}>;
export type TIncomingRelay<TNode> = {
edges?: TRelayEdge<TNode>[];
pageInfo?: TRelayPageInfo;
};
export type RelayFieldPolicy<TNode> = FieldPolicy<
TExistingRelay<TNode> | null,
TIncomingRelay<TNode> | null,
TIncomingRelay<TNode> | null
>;
// As proof of the flexibility of field policies, this function generates
// one that handles Relay-style pagination, without Apollo Client knowing
// anything about connections, edges, cursors, or pageInfo objects.
export function relayStylePagination<TNode extends Reference = Reference>(
keyArgs: KeyArgs = false
): RelayFieldPolicy<TNode> {
return {
keyArgs,
read(existing, { canRead, readField }) {
if (!existing) return existing;
const edges: TRelayEdge<TNode>[] = [];
let firstEdgeCursor = "";
let lastEdgeCursor = "";
existing.edges.forEach((edge) => {
// Edges themselves could be Reference objects, so it's important
// to use readField to access the edge.edge.node property.
if (canRead(readField("node", edge))) {
edges.push(edge);
if (edge.cursor) {
firstEdgeCursor = firstEdgeCursor || edge.cursor || "";
lastEdgeCursor = edge.cursor || lastEdgeCursor;
}
}
});
if (edges.length > 1 && firstEdgeCursor === lastEdgeCursor) {
firstEdgeCursor = "";
}
const { startCursor, endCursor } = existing.pageInfo || {};
return {
// Some implementations return additional Connection fields, such
// as existing.totalCount. These fields are saved by the merge
// function, so the read function should also preserve them.
...getExtras(existing),
edges,
pageInfo: {
...existing.pageInfo,
// If existing.pageInfo.{start,end}Cursor are undefined or "", default
// to firstEdgeCursor and/or lastEdgeCursor.
startCursor: startCursor || firstEdgeCursor,
endCursor: endCursor || lastEdgeCursor,
},
};
},
merge(existing, incoming, { args, isReference, readField }) {
if (!existing) {
existing = makeEmptyData();
}
if (!incoming) {
return existing;
}
const incomingEdges =
incoming.edges ?
incoming.edges.map((edge) => {
if (isReference((edge = { ...edge }))) {
// In case edge is a Reference, we read out its cursor field and
// store it as an extra property of the Reference object.
edge.cursor = readField<string>("cursor", edge);
}
return edge;
})
: [];
if (incoming.pageInfo) {
const { pageInfo } = incoming;
const { startCursor, endCursor } = pageInfo;
const firstEdge = incomingEdges[0];
const lastEdge = incomingEdges[incomingEdges.length - 1];
// In case we did not request the cursor field for edges in this
// query, we can still infer cursors from pageInfo.
if (firstEdge && startCursor) {
firstEdge.cursor = startCursor;
}
if (lastEdge && endCursor) {
lastEdge.cursor = endCursor;
}
// Cursors can also come from edges, so we default
// pageInfo.{start,end}Cursor to {first,last}Edge.cursor.
const firstCursor = firstEdge && firstEdge.cursor;
if (firstCursor && !startCursor) {
incoming = mergeDeep(incoming, {
pageInfo: {
startCursor: firstCursor,
},
});
}
const lastCursor = lastEdge && lastEdge.cursor;
if (lastCursor && !endCursor) {
incoming = mergeDeep(incoming, {
pageInfo: {
endCursor: lastCursor,
},
});
}
}
let prefix = existing.edges;
let suffix: typeof prefix = [];
if (args && args.after) {
// This comparison does not need to use readField("cursor", edge),
// because we stored the cursor field of any Reference edges as an
// extra property of the Reference object.
const index = prefix.findIndex((edge) => edge.cursor === args.after);
if (index >= 0) {
prefix = prefix.slice(0, index + 1);
// suffix = []; // already true
}
} else if (args && args.before) {
const index = prefix.findIndex((edge) => edge.cursor === args.before);
suffix = index < 0 ? prefix : prefix.slice(index);
prefix = [];
} else if (incoming.edges) {
// If we have neither args.after nor args.before, the incoming
// edges cannot be spliced into the existing edges, so they must
// replace the existing edges. See #6592 for a motivating example.
prefix = [];
}
const edges = [...prefix, ...incomingEdges, ...suffix];
const pageInfo: TRelayPageInfo = {
// The ordering of these two ...spreads may be surprising, but it
// makes sense because we want to combine PageInfo properties with a
// preference for existing values, *unless* the existing values are
// overridden by the logic below, which is permitted only when the
// incoming page falls at the beginning or end of the data.
...incoming.pageInfo,
...existing.pageInfo,
};
if (incoming.pageInfo) {
const {
hasPreviousPage,
hasNextPage,
startCursor,
endCursor,
...extras
} = incoming.pageInfo;
// If incoming.pageInfo had any extra non-standard properties,
// assume they should take precedence over any existing properties
// of the same name, regardless of where this page falls with
// respect to the existing data.
Object.assign(pageInfo, extras);
// Keep existing.pageInfo.has{Previous,Next}Page unless the
// placement of the incoming edges means incoming.hasPreviousPage
// or incoming.hasNextPage should become the new values for those
// properties in existing.pageInfo. Note that these updates are
// only permitted when the beginning or end of the incoming page
// coincides with the beginning or end of the existing data, as
// determined using prefix.length and suffix.length.
if (!prefix.length) {
if (void 0 !== hasPreviousPage)
pageInfo.hasPreviousPage = hasPreviousPage;
if (void 0 !== startCursor) pageInfo.startCursor = startCursor;
}
if (!suffix.length) {
if (void 0 !== hasNextPage) pageInfo.hasNextPage = hasNextPage;
if (void 0 !== endCursor) pageInfo.endCursor = endCursor;
}
}
return {
...getExtras(existing),
...getExtras(incoming),
edges,
pageInfo,
};
},
};
}
// Returns any unrecognized properties of the given object.
const getExtras = (obj: Record<string, any>) => __rest(obj, notExtras);
const notExtras = ["edges", "pageInfo"];
function makeEmptyData(): TExistingRelay<any> {
return {
edges: [],
pageInfo: {
hasPreviousPage: false,
hasNextPage: true,
startCursor: "",
endCursor: "",
},
};
}