-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
values.ts
77 lines (75 loc) · 2.29 KB
/
values.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
import type { TypeNode, ValueNode } from './ast';
import type { Maybe } from './types';
export function valueFromASTUntyped(
node: ValueNode,
variables?: Maybe<Record<string, any>>
): unknown {
switch (node.kind) {
case 'NullValue':
return null;
case 'IntValue':
return parseInt(node.value, 10);
case 'FloatValue':
return parseFloat(node.value);
case 'StringValue':
case 'EnumValue':
case 'BooleanValue':
return node.value;
case 'ListValue': {
const values: unknown[] = [];
for (let i = 0, l = node.values.length; i < l; i++)
values.push(valueFromASTUntyped(node.values[i], variables));
return values;
}
case 'ObjectValue': {
const obj = Object.create(null);
for (let i = 0, l = node.fields.length; i < l; i++) {
const field = node.fields[i];
obj[field.name.value] = valueFromASTUntyped(field.value, variables);
}
return obj;
}
case 'Variable':
return variables && variables[node.name.value];
}
}
export function valueFromTypeNode(
node: ValueNode,
type: TypeNode,
variables?: Maybe<Record<string, any>>
): unknown {
if (node.kind === 'Variable') {
const variableName = node.name.value;
return variables ? valueFromTypeNode(variables[variableName], type, variables) : undefined;
} else if (type.kind === 'NonNullType') {
return node.kind !== 'NullValue' ? valueFromTypeNode(node, type, variables) : undefined;
} else if (node.kind === 'NullValue') {
return null;
} else if (type.kind === 'ListType') {
if (node.kind === 'ListValue') {
const values: unknown[] = [];
for (let i = 0, l = node.values.length; i < l; i++) {
const value = node.values[i];
const coerced = valueFromTypeNode(value, type.type, variables);
if (coerced === undefined) {
return undefined;
} else {
values.push(coerced);
}
}
return values;
}
} else if (type.kind === 'NamedType') {
switch (type.name.value) {
case 'Int':
case 'Float':
case 'String':
case 'Bool':
return type.name.value + 'Value' === node.kind
? valueFromASTUntyped(node, variables)
: undefined;
default:
return valueFromASTUntyped(node, variables);
}
}
}