-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
writeToStore.ts
376 lines (329 loc) · 9.68 KB
/
writeToStore.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
import isArray = require('lodash.isarray');
import isNull = require('lodash.isnull');
import isUndefined = require('lodash.isundefined');
import isObject = require('lodash.isobject');
import assign = require('lodash.assign');
import {
getQueryDefinition,
getFragmentDefinition,
FragmentMap,
} from '../queries/getFromAST';
import {
storeKeyNameFromField,
resultKeyNameFromField,
isField,
isInlineFragment,
} from './storeUtils';
import {
OperationDefinition,
SelectionSet,
FragmentDefinition,
Field,
Document,
} from 'graphql';
import {
NormalizedCache,
StoreObject,
IdValue,
isIdValue,
} from './store';
import {
IdGetter,
} from './extensions';
import {
shouldInclude,
} from '../queries/directives';
import {
ApolloError,
} from '../errors';
// import {
// printAST,
// } from './debug';
/**
* Convert a nested GraphQL result into a normalized store, where each object from the schema
* appears exactly once.
* @param {Object} result Arbitrary nested JSON, returned from the GraphQL server
* @param {String} [fragment] The GraphQL fragment used to fetch the data in result
* @param {SelectionSet} [selectionSet] The parsed selection set for the subtree of the query this
* result represents
* @param {Object} [store] The store to merge into
* @return {Object} The resulting store
*/
export function writeFragmentToStore({
result,
fragment,
store = {} as NormalizedCache,
variables,
dataIdFromObject = null,
}: {
result: Object,
fragment: Document,
store?: NormalizedCache,
variables?: Object,
dataIdFromObject?: IdGetter,
}): NormalizedCache {
// Argument validation
if (!fragment) {
throw new Error('Must pass fragment.');
}
const parsedFragment: FragmentDefinition = getFragmentDefinition(fragment);
const selectionSet: SelectionSet = parsedFragment.selectionSet;
if (!result['id']) {
throw new Error('Result must have id when writing fragment to store.');
}
return writeSelectionSetToStore({
dataId: result['id'],
result,
selectionSet,
store,
variables,
dataIdFromObject,
});
}
export function writeQueryToStore({
result,
query,
store = {} as NormalizedCache,
variables,
dataIdFromObject = null,
}: {
result: Object,
query: Document,
store?: NormalizedCache,
variables?: Object,
dataIdFromObject?: IdGetter,
}): NormalizedCache {
const queryDefinition: OperationDefinition = getQueryDefinition(query);
return writeSelectionSetToStore({
dataId: 'ROOT_QUERY',
result,
selectionSet: queryDefinition.selectionSet,
store,
variables,
dataIdFromObject,
});
}
export function writeSelectionSetToStore({
result,
dataId,
selectionSet,
store = {} as NormalizedCache,
variables,
dataIdFromObject,
fragmentMap,
}: {
dataId: string,
result: any,
selectionSet: SelectionSet,
store?: NormalizedCache,
variables: Object,
dataIdFromObject: IdGetter,
fragmentMap?: FragmentMap,
}): NormalizedCache {
if (!fragmentMap) {
//we have an empty sym table if there's no sym table given
//to us for the fragments.
fragmentMap = {};
}
selectionSet.selections.forEach((selection) => {
if (isField(selection)) {
const resultFieldKey: string = resultKeyNameFromField(selection);
const value: any = result[resultFieldKey];
const included = shouldInclude(selection, variables);
if (isUndefined(value) && included) {
throw new Error(`Can't find field ${resultFieldKey} on result object ${dataId}.`);
}
if (!isUndefined(value) && !included) {
throw new Error(`Found extra field ${resultFieldKey} on result object ${dataId}.`);
}
if (!isUndefined(value)) {
writeFieldToStore({
dataId,
value,
variables,
store,
field: selection,
dataIdFromObject,
fragmentMap,
});
}
} else if (isInlineFragment(selection)) {
// XXX what to do if this tries to write the same fields? Also, type conditions...
writeSelectionSetToStore({
result,
selectionSet: selection.selectionSet,
store,
variables,
dataId,
dataIdFromObject,
fragmentMap,
});
} else {
//look up the fragment referred to in the selection
const fragment = fragmentMap[selection.name.value];
if (!fragment) {
throw new Error(`No fragment named ${selection.name.value}.`);
}
writeSelectionSetToStore({
result,
selectionSet: fragment.selectionSet,
store,
variables,
dataId,
dataIdFromObject,
fragmentMap,
});
//throw new Error('Non-inline fragments not supported.');
}
});
return store;
}
// Checks if the id given is an id that was generated by Apollo
// rather than by dataIdFromObject.
function isGeneratedId(id: string): boolean {
return (id[0] === '$');
}
function mergeWithGenerated(generatedKey: string, realKey: string, cache: NormalizedCache) {
const generated = cache[generatedKey];
const real = cache[realKey];
Object.keys(generated).forEach((key) => {
const value = generated[key];
const realValue = real[key];
if (isIdValue(value)
&& isGeneratedId(value.id)
&& isIdValue(realValue)) {
mergeWithGenerated(value.id, realValue.id, cache);
}
delete cache[generatedKey];
cache[realKey] = assign({}, generated, real) as StoreObject;
});
}
function writeFieldToStore({
field,
value,
variables,
store,
dataId,
dataIdFromObject,
fragmentMap,
}: {
field: Field,
value: any,
variables: {},
store: NormalizedCache,
dataId: string,
dataIdFromObject: IdGetter,
fragmentMap?: FragmentMap,
}) {
let storeValue;
const storeFieldName: string = storeKeyNameFromField(field, variables);
// specifies if we need to merge existing keys in the store
let shouldMerge = false;
// If we merge, this will be the generatedKey
let generatedKey: string;
// If it's a scalar that's not a JSON blob, just store it in the store
if ((!field.selectionSet || isNull(value)) && !isObject(value)) {
storeValue = value;
} else if ((!field.selectionSet || isNull(value)) && isObject(value)) {
// If it is a scalar that's a JSON blob, we have to "escape" it so it can't
// pretend to be an id
storeValue = {
type: 'json',
json: value,
};
} else if (isArray(value)) {
// this is an array with sub-objects
const thisIdList: Array<string> = [];
value.forEach((item, index) => {
if (isNull(item)) {
thisIdList.push(null);
} else {
let itemDataId = `${dataId}.${storeFieldName}.${index}`;
if (dataIdFromObject) {
const semanticId = dataIdFromObject(item);
if (semanticId) {
itemDataId = semanticId;
}
}
thisIdList.push(itemDataId);
writeSelectionSetToStore({
dataId: itemDataId,
result: item,
store,
selectionSet: field.selectionSet,
variables,
dataIdFromObject,
fragmentMap,
});
}
});
storeValue = thisIdList;
} else {
// It's an object
let valueDataId = `${dataId}.${storeFieldName}`;
let generated = true;
// We only prepend the '$' if the valueDataId isn't already a generated
// id.
if (!isGeneratedId(valueDataId)) {
valueDataId = '$' + valueDataId;
}
if (dataIdFromObject) {
const semanticId = dataIdFromObject(value);
// We throw an error if the first character of the id is '$. This is
// because we use that character to designate an Apollo-generated id
// and we use the distinction between user-desiginated and application-provided
// ids when managing overwrites.
if (semanticId && isGeneratedId(semanticId)) {
throw new Error('IDs returned by dataIdFromObject cannot begin with the "$" character.');
}
if (semanticId) {
valueDataId = semanticId;
generated = false;
}
}
writeSelectionSetToStore({
dataId: valueDataId,
result: value,
store,
selectionSet: field.selectionSet,
variables,
dataIdFromObject,
fragmentMap,
});
// We take the id and escape it (i.e. wrap it with an enclosing object).
// This allows us to distinguish IDs from normal scalars.
storeValue = {
type: 'id',
id: valueDataId,
generated,
};
// check if there was a generated id at the location where we're
// about to place this new id. If there was, we have to merge the
// data from that id with the data we're about to write in the store.
if (store[dataId] && store[dataId][storeFieldName] !== storeValue) {
const escapedId = store[dataId][storeFieldName] as IdValue;
// If there is already a real id in the store and the current id we
// are dealing with is generated, we throw an error.
if (isIdValue(storeValue) && storeValue.generated
&& isIdValue(escapedId) && !escapedId.generated) {
throw new ApolloError({
errorMessage: `Store error: the application attempted to write an object with no provided id` +
` but the store already contains an id of ${escapedId.id} for this object.`,
});
}
if (isIdValue(escapedId) && escapedId.generated) {
generatedKey = escapedId.id;
shouldMerge = true;
}
}
}
const newStoreObj = assign({}, store[dataId], {
[storeFieldName]: storeValue,
}) as StoreObject;
if (shouldMerge) {
mergeWithGenerated(generatedKey, (storeValue as IdValue).id, store);
}
if (!store[dataId] || storeValue !== store[dataId][storeFieldName]) {
store[dataId] = newStoreObj;
}
}